/* ==========================================================================
   MG DATING - CORE STYLESHEET
   Brand Colors: Primary Yellow #FFE600 / #FEE33C, Dark Charcoal #1E1E1E
   ========================================================================== */

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

:root {
  --mg-primary-yellow: #FFE600;
  --mg-primary-yellow-light: #FFF8C5;
  --mg-primary-yellow-dark: #E6CE00;
  --mg-charcoal: #1E1E1E;
  --mg-charcoal-subtle: #2B2B2B;
  --mg-gray-dark: #4A4A4A;
  --mg-gray-medium: #767676;
  --mg-gray-light: #EFEFEF;
  --mg-gray-bg: #F7F7F6;
  --mg-white: #FFFFFF;
  --mg-border-radius-sm: 8px;
  --mg-border-radius-md: 16px;
  --mg-border-radius-lg: 24px;
  --mg-border-radius-xl: 32px;
  --mg-border-radius-pill: 9999px;
  --mg-font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mg-transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --mg-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --mg-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --mg-shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--mg-font-family);
  color: var(--mg-charcoal);
  background-color: var(--mg-white);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--mg-transition);
}

ul, ol {
  list-style: none;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

/* ==========================================================================
   CONTAINER & LAYOUT UTILITIES
   ========================================================================== */
.mg-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.mg-container-sm {
  max-width: 960px;
}

.mg-container-lg {
  max-width: 1440px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.mg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--mg-border-radius-pill);
  transition: var(--mg-transition);
  text-align: center;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.mg-btn-dark {
  background-color: var(--mg-charcoal);
  color: var(--mg-white);
}

.mg-btn-dark:hover {
  background-color: #000000;
  transform: translateY(-2px);
  box-shadow: var(--mg-shadow-md);
}

.mg-btn-yellow {
  background-color: var(--mg-primary-yellow);
  color: var(--mg-charcoal);
}

.mg-btn-yellow:hover {
  background-color: var(--mg-primary-yellow-dark);
  transform: translateY(-2px);
}

.mg-btn-white {
  background-color: var(--mg-white);
  color: var(--mg-charcoal);
  border: 1px solid var(--mg-gray-light);
}

.mg-btn-white:hover {
  background-color: var(--mg-gray-bg);
  transform: translateY(-2px);
}

.mg-btn-sm {
  padding: 8px 18px;
  font-size: 0.875rem;
}

.mg-btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* App Store Download Badges */
.mg-app-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.mg-app-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--mg-charcoal);
  color: var(--mg-white);
  padding: 12px 24px;
  border-radius: var(--mg-border-radius-md);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: var(--mg-transition);
  box-shadow: var(--mg-shadow-sm);
}

.mg-app-badge-btn:hover {
  background-color: #000000;
  transform: translateY(-3px);
  box-shadow: var(--mg-shadow-md);
}

.mg-app-badge-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.mg-app-badge-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}

.mg-app-badge-text small {
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.mg-app-badge-text span {
  font-size: 1.0625rem;
  font-weight: 800;
}

/* ==========================================================================
   GLOBAL HEADER COMPONENT (<app-header>)
   Original clean logo dimensions
   ========================================================================== */
.mg-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: transparent;
  padding: 14px 24px;
  height: 76px;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.mg-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.mg-header-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.mg-header-logo {
  display: flex;
  align-items: center;
  z-index: 1002;
}

.mg-header-logo img {
  height: 170px;
  width: auto;
  object-fit: contain;
  display: block;
}

.mg-header-nav-pill {
  background-color: var(--mg-white);
  padding: 6px 8px;
  border-radius: var(--mg-border-radius-pill);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 1002;
}

.mg-nav-item {
  position: relative;
}

.mg-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--mg-charcoal);
  border-radius: var(--mg-border-radius-pill);
  transition: var(--mg-transition);
}

.mg-nav-link:hover,
.mg-nav-link.is-active {
  background-color: var(--mg-primary-yellow-light);
  color: var(--mg-charcoal);
}

.mg-nav-link.has-modal-open {
  background-color: var(--mg-primary-yellow);
}

.mg-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1002;
}

.mg-lang-btn {
  background-color: var(--mg-white);
  padding: 10px 14px;
  border-radius: var(--mg-border-radius-pill);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--mg-charcoal);
  transition: var(--mg-transition);
}

.mg-lang-btn:hover {
  background-color: var(--mg-gray-bg);
}

.mg-hamburger-btn {
  display: none;
  background-color: var(--mg-white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  align-items: center;
  justify-content: center;
}

/* Mega Menu Modals (Side-by-Side: Title on Left, Grid on Right) */
.mg-mega-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mg-mega-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mg-mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: min(960px, 94vw);
  background-color: var(--mg-white);
  border-radius: var(--mg-border-radius-lg);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  padding: 44px 48px;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s;
}

.mg-mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mg-mega-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: transparent;
  color: var(--mg-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--mg-transition);
  cursor: pointer;
}

.mg-mega-close:hover {
  background-color: var(--mg-gray-bg);
  transform: scale(1.1);
}

.mg-mega-layout {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 48px;
  align-items: start;
}

.mg-mega-left {
  padding-right: 20px;
}

.mg-mega-left h3 {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

.mg-mega-left h3 a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mg-charcoal);
}

.mg-mega-left h3 a:hover {
  color: #c49d00;
}

.mg-mega-left p {
  font-size: 1rem;
  color: var(--mg-gray-dark);
  line-height: 1.5;
}

.mg-mega-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 36px;
}

.mg-mega-item {
  display: block;
  transition: var(--mg-transition);
}

.mg-mega-item h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  color: var(--mg-charcoal);
  transition: var(--mg-transition);
}

.mg-mega-item:hover h4 {
  color: #c49d00;
}

.mg-mega-item p {
  font-size: 0.875rem;
  color: var(--mg-gray-medium);
  line-height: 1.45;
}

/* Mobile Navigation Drawer */
.mg-mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 85vw);
  height: 100vh;
  background-color: var(--mg-white);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
  z-index: 1005;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mg-mobile-drawer.is-open {
  right: 0;
}

.mg-mobile-drawer-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--mg-gray-light);
}

.mg-mobile-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--mg-charcoal);
  cursor: pointer;
}

.mg-mobile-close:hover {
  background-color: var(--mg-gray-bg);
}

.mg-mobile-drawer-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mg-mobile-nav-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mg-mobile-nav-heading {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--mg-charcoal);
}

.mg-mobile-subnav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 14px;
  border-left: 2px solid var(--mg-primary-yellow);
  margin-top: 4px;
}

.mg-mobile-subnav a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--mg-gray-dark);
}

.mg-mobile-subnav a:hover {
  color: #c49d00;
}

@media (max-width: 900px) {
  .mg-header-nav-pill {
    display: none;
  }

  .mg-hamburger-btn {
    display: flex;
  }
}

/* ==========================================================================
   HERO SECTION - 3D CASCADING PERSPECTIVE SLIDER (Clean, Automatic)
   ========================================================================== */
.mg-hero {
  position: relative;
  background-color: var(--mg-primary-yellow);
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px 24px 60px;
}

.mg-hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(4.5rem, 16vw, 17rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(30, 30, 30, 0.88);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: 1;
}

.mg-hero-slider-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 940px;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mg-hero-track {
  position: relative;
  width: 780px;
  height: 530px;
}

.mg-hero-card {
  position: absolute;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  transition: all 0.75s cubic-bezier(0.25, 1, 0.35, 1);
  cursor: pointer;
  background-color: var(--mg-charcoal);
  user-select: none;
}

.mg-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.mg-hero-card-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  color: var(--mg-white);
  font-size: 1.25rem;
  font-weight: 700;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.75);
}

/* Position 1: Front / Left - LARGEST */
.mg-hero-card.pos-1 {
  left: 30px;
  top: 10px;
  width: 350px;
  height: 510px;
  z-index: 10;
  transform: scale(1) rotate(-3deg);
  opacity: 1;
  box-shadow: 0 32px 75px rgba(0, 0, 0, 0.3);
}

/* Position 2: Middle / Center-Right - MEDIUM */
.mg-hero-card.pos-2 {
  left: 270px;
  top: 45px;
  width: 295px;
  height: 445px;
  z-index: 5;
  transform: scale(0.92) rotate(4deg);
  opacity: 0.96;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
}

/* Position 3: Back / Right - SMALLEST */
.mg-hero-card.pos-3 {
  left: 480px;
  top: 80px;
  width: 245px;
  height: 380px;
  z-index: 2;
  transform: scale(0.84) rotate(8deg);
  opacity: 0.92;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.mg-hero-card.pos-1:hover {
  transform: scale(1.02) rotate(-2deg);
}

.mg-hero-card.pos-2:hover {
  transform: scale(0.95) rotate(3deg);
  z-index: 9;
}

.mg-hero-card.pos-3:hover {
  transform: scale(0.88) rotate(7deg);
  z-index: 9;
}

/* ==========================================================================
   STACKED CARDS SECTION (3 CATEGORIES)
   ========================================================================== */
.mg-stacked-section {
  padding: 100px 0;
  background-color: var(--mg-white);
}

.mg-stacked-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.mg-stacked-copy h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.mg-stacked-copy p {
  font-size: 1.125rem;
  color: var(--mg-gray-dark);
  margin-bottom: 36px;
  line-height: 1.6;
}

.mg-stacked-cards-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 480px;
}

.mg-stacked-card-item {
  position: absolute;
  width: 250px;
  height: 400px;
  border-radius: var(--mg-border-radius-xl);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  background-color: var(--mg-gray-light);
  transition: var(--mg-transition);
}

.mg-stacked-card-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mg-stacked-card-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--mg-primary-yellow);
  color: var(--mg-charcoal);
  font-weight: 800;
  font-size: 0.875rem;
  padding: 12px 8px;
  border-radius: var(--mg-border-radius-pill);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mg-stacked-card-1 {
  left: 0;
  z-index: 3;
}

.mg-stacked-card-2 {
  left: 170px;
  z-index: 2;
  transform: scale(0.95);
}

.mg-stacked-card-3 {
  left: 330px;
  z-index: 1;
  transform: scale(0.9);
}

.mg-stacked-card-item:hover {
  transform: translateY(-10px) scale(1.02);
  z-index: 10;
}

/* ==========================================================================
   MEMBER CIRCLE / COMMUNITY SECTION
   ========================================================================== */
.mg-member-section {
  padding: 40px 0 100px;
}

.mg-member-card {
  background-color: var(--mg-gray-bg);
  border-radius: var(--mg-border-radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  box-shadow: var(--mg-shadow-md);
}

.mg-member-img-wrap {
  position: relative;
  height: 100%;
  min-height: 480px;
}

.mg-member-img-wrap img.main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mg-member-badge-stamp {
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 160px;
  height: 160px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
  animation: rotateStamp 20s linear infinite;
}

@keyframes rotateStamp {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.mg-member-content {
  padding: 60px 50px;
}

.mg-member-content h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.mg-member-content p {
  font-size: 1.0625rem;
  color: var(--mg-gray-dark);
  line-height: 1.6;
  margin-bottom: 32px;
}

/* ==========================================================================
   2-UP FEATURE CARDS (MG DATING & MG FRIENDS)
   ========================================================================== */
.mg-features-2up {
  padding: 40px 0 100px;
}

.mg-2up-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.mg-2up-card {
  background-color: var(--mg-primary-yellow);
  border-radius: var(--mg-border-radius-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 540px;
  transition: var(--mg-transition);
}

.mg-2up-card-light {
  background-color: #FFF275;
}

.mg-2up-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--mg-shadow-lg);
}

.mg-2up-img-wrap {
  width: 100%;
  height: 280px;
  border-radius: var(--mg-border-radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  background-color: var(--mg-white);
}

.mg-2up-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.mg-2up-body h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.mg-2up-body p {
  font-size: 1.0625rem;
  color: var(--mg-charcoal);
  margin-bottom: 24px;
  line-height: 1.5;
}

.mg-2up-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mg-2up-link:hover {
  opacity: 0.75;
}

/* ==========================================================================
   LOVE STORIES / TESTIMONIAL CAROUSEL SECTION
   ========================================================================== */
.mg-stories-section {
  padding: 40px 0 100px;
}

.mg-stories-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
  background-color: var(--mg-gray-bg);
  border-radius: var(--mg-border-radius-xl);
  overflow: hidden;
  padding: 60px;
}

.mg-stories-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mg-quote-mark {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--mg-charcoal);
  margin-bottom: 10px;
}

.mg-stories-copy blockquote {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.mg-stories-author {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--mg-gray-medium);
  margin-bottom: 36px;
}

.mg-stories-img-wrap {
  width: 100%;
  height: 480px;
  border-radius: var(--mg-border-radius-lg);
  overflow: hidden;
  box-shadow: var(--mg-shadow-md);
}

.mg-stories-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   GET THE APP BANNER (Without QR / Clean App Badges)
   ========================================================================== */
.mg-getapp-section {
  padding: 20px 0 100px;
}

.mg-getapp-banner {
  background-color: var(--mg-primary-yellow);
  border-radius: var(--mg-border-radius-xl);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
  overflow: hidden;
  box-shadow: var(--mg-shadow-md);
}

.mg-getapp-content h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.mg-getapp-content p {
  font-size: 1.125rem;
  margin-bottom: 32px;
}

.mg-getapp-mockups {
  display: flex;
  justify-content: center;
}

.mg-getapp-mockups img {
  max-height: 440px;
  width: auto;
  object-fit: contain;
}

/* ==========================================================================
   GLOBAL FOOTER COMPONENT (<app-footer>)
   Position: Logo strictly level aligned to the top with "Our apps", "Company", "Legal"
   ========================================================================== */
.mg-footer {
  background-color: var(--mg-white);
  padding: 80px 0 50px;
  border-top: 1px solid var(--mg-gray-light);
}

.mg-footer-upper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 60px;
}

.mg-footer-logo-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: -40px;
  padding: 0;
}

.mg-footer-logo {
  display: block;
  margin: 0;
  padding: 0;
}

.mg-footer-logo img {
  height: 170px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-top: -30px;
}

.mg-footer-links-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  align-items: flex-start;
}

.mg-footer-col {
  display: flex;
  flex-direction: column;
}

.mg-footer-col h4 {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--mg-gray-medium);
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.2;
}

.mg-footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mg-footer-col ul li a {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--mg-charcoal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1.3;
}

.mg-footer-col ul li a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Diagonal up-right arrow icon */
.mg-arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 2px;
  transform: translateY(-1px);
}

.mg-footer-lower {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 36px;
  flex-wrap: wrap;
  gap: 24px;
}

.mg-footer-app-box {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background-color: var(--mg-primary-yellow);
  padding: 16px 24px;
  border-radius: var(--mg-border-radius-lg);
  box-shadow: var(--mg-shadow-sm);
  transition: var(--mg-transition);
}

.mg-footer-app-box:hover {
  transform: translateY(-2px);
  box-shadow: var(--mg-shadow-md);
}

.mg-footer-app-box img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: white;
  padding: 2px;
}

.mg-footer-app-box span {
  font-weight: 800;
  font-size: 1rem;
  color: var(--mg-charcoal);
  line-height: 1.3;
}

.mg-footer-lower-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.mg-footer-social-list {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mg-footer-social-list a {
  color: var(--mg-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--mg-transition);
}

.mg-footer-social-list a:hover {
  color: #000;
  transform: scale(1.2);
}

.mg-footer-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background-color: var(--mg-white);
  border: 1.5px solid var(--mg-charcoal);
  border-radius: var(--mg-border-radius-pill);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--mg-charcoal);
  transition: var(--mg-transition);
}

.mg-footer-lang-btn:hover {
  background-color: var(--mg-gray-bg);
}

.mg-copyright-row {
  margin-top: 36px;
  text-align: center;
  font-size: 0.875rem;
  color: var(--mg-gray-medium);
}

/* ==========================================================================
   SUBPAGES STYLES
   ========================================================================== */
.mg-subpage-hero {
  background-color: var(--mg-primary-yellow);
  padding: 80px 0;
  text-align: center;
}

.mg-subpage-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.mg-subpage-hero p {
  font-size: 1.25rem;
  color: var(--mg-charcoal);
  max-width: 680px;
  margin: 0 auto;
}

.mg-subpage-content {
  padding: 80px 0;
}

.mg-article-body {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--mg-gray-dark);
}

.mg-article-body h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--mg-charcoal);
  margin: 40px 0 16px;
}

.mg-article-body h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--mg-charcoal);
  margin: 28px 0 12px;
}

.mg-article-body p {
  margin-bottom: 20px;
}

.mg-article-body ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 24px;
}

.mg-article-body ul li {
  margin-bottom: 8px;
}

.mg-contact-card {
  background-color: var(--mg-gray-bg);
  padding: 36px;
  border-radius: var(--mg-border-radius-lg);
  margin-top: 30px;
  border-left: 4px solid var(--mg-primary-yellow);
}

.mg-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.mg-contact-item {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--mg-gray-light);
}

.mg-contact-item h4 {
  font-size: 1rem;
  color: var(--mg-gray-medium);
  margin-bottom: 8px;
}

.mg-contact-item p {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--mg-charcoal);
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLET & MOBILE)
   ========================================================================== */
@media (max-width: 1024px) {
  .mg-header-nav-pill {
    display: none;
  }

  .mg-hamburger-btn {
    display: inline-flex;
  }

  .mg-hero-track {
    width: 100%;
    max-width: 600px;
  }

  .mg-hero-card.pos-1 {
    left: 10px;
    width: 280px;
    height: 430px;
  }

  .mg-hero-card.pos-2 {
    left: 180px;
    width: 240px;
    height: 380px;
  }

  .mg-hero-card.pos-3 {
    left: 330px;
    width: 200px;
    height: 320px;
  }

  .mg-stacked-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mg-stacked-cards-wrap {
    justify-content: center;
    height: 440px;
  }

  .mg-member-card {
    grid-template-columns: 1fr;
  }

  .mg-2up-grid {
    grid-template-columns: 1fr;
  }

  .mg-stories-card {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .mg-getapp-banner {
    grid-template-columns: 1fr;
    padding: 40px;
    text-align: center;
  }

  .mg-app-badges {
    justify-content: center;
  }

  .mg-footer-upper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mg-footer-links-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mg-hero-watermark {
    font-size: clamp(3rem, 16vw, 7rem);
  }

  .mg-hero-slider-wrap {
    height: 440px;
  }

  .mg-hero-track {
    width: 100%;
    height: 400px;
  }

  .mg-hero-card.pos-1 {
    left: 0;
    width: 220px;
    height: 350px;
  }

  .mg-hero-card.pos-2 {
    left: 110px;
    width: 190px;
    height: 310px;
  }

  .mg-hero-card.pos-3 {
    left: 200px;
    width: 160px;
    height: 270px;
  }

  .mg-stacked-cards-wrap {
    height: 360px;
  }

  .mg-stacked-card-item {
    width: 180px;
    height: 300px;
  }

  .mg-stacked-card-1 { left: 0; }
  .mg-stacked-card-2 { left: 90px; }
  .mg-stacked-card-3 { left: 180px; }

  .mg-footer-links-nav {
    grid-template-columns: 1fr;
  }

  .mg-footer-lower {
    flex-direction: column;
    align-items: flex-start;
  }

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

/* ==========================================================================
   DATE LANDING PAGE STYLES (/date)
   ========================================================================== */
.mg-date-hero {
  position: relative;
  min-height: 600px;
  background: url('/assets/images/date-hero-landscape.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px;
}

.mg-date-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.65));
  z-index: 1;
}

.mg-date-hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  color: var(--mg-white);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mg-date-hero-content h1 {
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--mg-white);
}

.mg-date-hero-content p {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.95);
}

.mg-date-features-section {
  background-color: var(--mg-primary-yellow);
  padding: 100px 0;
}

.mg-date-section-title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
}

.mg-date-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mg-date-feature-card {
  background-color: var(--mg-white);
  border-radius: 28px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--mg-transition);
  box-shadow: var(--mg-shadow-sm);
  color: var(--mg-charcoal);
}

.mg-date-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--mg-shadow-lg);
}

.mg-date-feature-icon {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.mg-date-feature-icon img,
.mg-date-feature-icon svg {
  width: auto;
  height: 130px;
  max-width: 100%;
  max-height: 130px;
  object-fit: contain;
  display: block;
}

.mg-date-feature-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--mg-charcoal);
}

.mg-date-feature-card p {
  font-size: 1rem;
  color: var(--mg-gray-dark);
  line-height: 1.55;
}

.mg-date-card-wide {
  grid-column: 1 / -1;
  background-color: var(--mg-white);
  border-radius: 28px;
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
  gap: 48px;
  text-align: left;
  transition: var(--mg-transition);
  box-shadow: var(--mg-shadow-sm);
}

.mg-date-card-wide:hover {
  transform: translateY(-6px);
  box-shadow: var(--mg-shadow-md);
}

.mg-date-card-wide .mg-date-feature-icon {
  margin-bottom: 0;
  height: auto;
}

.mg-date-card-wide .mg-date-feature-icon img {
  max-height: 150px;
}

.mg-date-card-wide h3 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 8px;
}

/* Date Blog / News Section */
.mg-date-blog-section {
  background-color: var(--mg-white);
  padding: 100px 0;
}

.mg-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.mg-blog-card {
  background-color: var(--mg-gray-bg);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--mg-transition);
}

.mg-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--mg-shadow-md);
}

.mg-blog-img-wrap {
  height: 240px;
  width: 100%;
  overflow: hidden;
}

.mg-blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.mg-blog-card:hover .mg-blog-img-wrap img {
  transform: scale(1.05);
}

.mg-blog-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.mg-blog-body h4 {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 20px;
  color: var(--mg-charcoal);
}

.mg-blog-date {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--mg-gray-medium);
}

/* ==========================================================================
   FEATURE SUBPAGES UNIVERSAL COMPONENT STYLES
   ========================================================================== */
.mg-feature-hero {
  background-color: var(--mg-white);
  padding: 60px 0 80px;
}

.mg-feature-hero-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 40px;
}

.mg-feature-hero-header h1 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.mg-feature-hero-header p {
  font-size: 1.125rem;
  color: var(--mg-gray-dark);
  line-height: 1.6;
}

.mg-feature-hero-media {
  max-width: 1140px;
  margin: 0 auto;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--mg-shadow-md);
}

.mg-feature-hero-media img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

/* Alternating Feature Split Section */
.mg-split-section {
  padding: 90px 0;
}

.mg-bg-yellow {
  background-color: var(--mg-primary-yellow);
}

.mg-bg-white {
  background-color: var(--mg-white);
}

.mg-bg-gray {
  background-color: var(--mg-gray-bg);
}

.mg-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mg-split-grid.reverse {
  direction: rtl;
}

.mg-split-grid.reverse > * {
  direction: ltr;
}

.mg-split-copy h2 {
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.mg-split-copy p {
  font-size: 1.125rem;
  color: var(--mg-charcoal);
  line-height: 1.65;
  margin-bottom: 28px;
}

.mg-split-copy ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 28px;
}

.mg-split-copy ul li {
  font-size: 1.0625rem;
  margin-bottom: 10px;
  color: var(--mg-charcoal);
}

.mg-split-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mg-split-media img {
  max-height: 480px;
  width: auto;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* 3 Benefit Cards Component */
.mg-benefit-section {
  background-color: var(--mg-primary-yellow);
  padding: 100px 0;
}

.mg-benefit-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.mg-benefit-header h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.mg-benefit-header p {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--mg-charcoal);
}

.mg-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mg-benefit-card {
  background-color: var(--mg-white);
  border-radius: 28px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--mg-shadow-sm);
  transition: var(--mg-transition);
}

.mg-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--mg-shadow-md);
}

.mg-benefit-icon {
  width: 100%;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.mg-benefit-icon img,
.mg-benefit-icon svg {
  width: auto;
  height: 110px;
  max-width: 100%;
  max-height: 110px;
  object-fit: contain;
  display: block;
}

.mg-benefit-card h3 {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.mg-benefit-card p {
  font-size: 1rem;
  color: var(--mg-gray-dark);
  line-height: 1.55;
}

/* 3 Photos Grid (SuperSwipe) */
.mg-photos-3up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mg-photo-card {
  border-radius: 28px;
  overflow: hidden;
  height: 440px;
  box-shadow: var(--mg-shadow-md);
  transition: var(--mg-transition);
}

.mg-photo-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--mg-shadow-lg);
}

.mg-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Universal FAQ Accordion Component */
.mg-faq-section {
  background-color: var(--mg-white);
  padding: 100px 0;
}

.mg-faq-container {
  max-width: 920px;
  margin: 0 auto;
}

.mg-faq-title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

.mg-faq-list {
  display: flex;
  flex-direction: column;
}

.mg-faq-item {
  border-bottom: 1.5px solid var(--mg-charcoal);
  padding: 24px 0;
  cursor: pointer;
  user-select: none;
}

.mg-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--mg-charcoal);
  transition: var(--mg-transition);
}

.mg-faq-icon {
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.3s ease;
}

.mg-faq-item.is-open .mg-faq-icon {
  transform: rotate(45deg);
}

.mg-faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
  font-size: 1.0625rem;
  color: var(--mg-gray-dark);
  line-height: 1.65;
}

.mg-faq-item.is-open .mg-faq-answer {
  max-height: 350px;
  opacity: 1;
  padding-top: 16px;
}

/* Universal Feature Download CTA Banner */
.mg-feature-cta {
  background-color: var(--mg-primary-yellow);
  padding: 90px 24px;
  text-align: center;
}

.mg-feature-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mg-feature-cta-inner h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

@media (max-width: 1024px) {
  .mg-date-features-grid,
  .mg-blog-grid,
  .mg-benefit-grid,
  .mg-photos-3up {
    grid-template-columns: repeat(2, 1fr);
  }

  .mg-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mg-date-card-wide {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .mg-date-features-grid,
  .mg-blog-grid,
  .mg-benefit-grid,
  .mg-photos-3up {
    grid-template-columns: 1fr;
  }

  .mg-date-card-wide {
    padding: 32px 24px;
  }

  .mg-faq-question {
    font-size: 1.125rem;
  }
}

/* ==========================================================================
   BFF & STORIES STYLES (BFF, Ambassadors, Stories, Seasonal, Friendship Hub)
   ========================================================================== */

/* BFF Hero */
.mg-bff-hero {
  background-color: var(--mg-primary-yellow);
  padding: 80px 24px 60px;
  text-align: center;
}

.mg-bff-hero-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mg-bff-hero-badge {
  margin-bottom: 20px;
}

.mg-bff-hero-badge img {
  height: 90px;
  width: auto;
  object-fit: contain;
}

.mg-bff-hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--mg-charcoal);
  margin-bottom: 8px;
}

.mg-bff-hero-subtitle {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 800;
  color: var(--mg-charcoal);
  margin-bottom: 32px;
}

.mg-bff-app-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* BFF Split Section */
.mg-bff-split-section {
  padding: 80px 0;
  background-color: var(--mg-white);
}

.mg-bff-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.mg-bff-split-media img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
}

.mg-bff-split-copy h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}

.mg-bff-split-copy p {
  font-size: 1.125rem;
  color: var(--mg-gray-dark);
  line-height: 1.6;
  margin-bottom: 32px;
}

/* BFF 2-Up Cards Grid */
.mg-bff-cards-section {
  padding: 60px 0 80px;
  background-color: #FBF9F4;
}

.mg-bff-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.mg-bff-feature-card {
  background-color: var(--mg-white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--mg-shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--mg-transition);
}

.mg-bff-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--mg-shadow-md);
}

.mg-bff-card-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.mg-bff-card-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.mg-bff-card-body h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.mg-bff-card-body p {
  font-size: 1rem;
  color: var(--mg-gray-dark);
  line-height: 1.55;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* BFF Newsletter Box */
.mg-bff-newsletter-section {
  padding: 80px 0;
  background-color: var(--mg-primary-yellow);
}

.mg-bff-newsletter-box {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.mg-bff-newsletter-box h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.mg-bff-newsletter-box p {
  font-size: 1.0625rem;
  color: var(--mg-charcoal);
  margin-bottom: 28px;
  line-height: 1.55;
}

.mg-newsletter-input-group {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.mg-newsletter-input-group input {
  flex-grow: 1;
  padding: 16px 20px;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 1rem;
  outline: none;
  background-color: var(--mg-white);
}

.mg-newsletter-input-group input:focus {
  border-color: var(--mg-charcoal);
}

.mg-newsletter-disclaimer {
  font-size: 0.8125rem;
  color: var(--mg-charcoal);
  opacity: 0.8;
  line-height: 1.45;
}

.mg-newsletter-disclaimer a {
  text-decoration: underline;
  font-weight: 600;
}

/* BFF Social Block */
.mg-bff-social-section {
  padding: 80px 0;
  background-color: var(--mg-white);
}

.mg-bff-social-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.mg-bff-social-media img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
}

.mg-bff-social-copy h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 24px;
}

.mg-bff-social-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mg-social-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background-color: var(--mg-gray-bg);
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--mg-charcoal);
  transition: var(--mg-transition);
}

.mg-social-pill:hover {
  background-color: var(--mg-primary-yellow);
}

/* The Friendship Hub Grid */
.mg-bff-hub-section,
.mg-hub-articles-section {
  padding: 80px 0 100px;
  background-color: #FBF9F4;
}

.mg-hub-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.mg-hub-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.mg-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mg-hub-card {
  background-color: var(--mg-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--mg-shadow-sm);
  display: flex;
  flex-direction: column;
  color: var(--mg-charcoal);
  transition: var(--mg-transition);
}

.mg-hub-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--mg-shadow-md);
}

.mg-hub-card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.mg-hub-card-content {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.mg-hub-date {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #c49d00;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.mg-hub-card-content h3 {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 10px;
}

.mg-hub-card-content p {
  font-size: 0.9375rem;
  color: var(--mg-gray-dark);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.mg-read-more {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--mg-charcoal);
}

/* ==========================================================================
   AMBASSADOR PAGE STYLES
   ========================================================================== */
.mg-ambassador-hero,
.mg-stories-hero,
.mg-seasonal-hero,
.mg-hub-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.mg-ambassador-hero-media,
.mg-stories-hero-media,
.mg-seasonal-hero-media,
.mg-hub-hero-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.mg-ambassador-hero-media img,
.mg-stories-hero-media img,
.mg-seasonal-hero-media img,
.mg-hub-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mg-ambassador-hero-overlay,
.mg-stories-hero-overlay,
.mg-seasonal-hero-overlay,
.mg-hub-hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.7));
  color: var(--mg-white);
}

.mg-ambassador-hero-content,
.mg-stories-hero-content,
.mg-seasonal-hero-content,
.mg-hub-hero-content {
  max-width: 800px;
}

.mg-badge-pill {
  display: inline-block;
  padding: 6px 14px;
  background-color: var(--mg-primary-yellow);
  color: var(--mg-charcoal);
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 9999px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.mg-ambassador-hero-content h1,
.mg-stories-hero-content h1,
.mg-seasonal-hero-content h1,
.mg-hub-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--mg-white);
}

.mg-ambassador-hero-content p,
.mg-stories-hero-content p,
.mg-seasonal-hero-content p,
.mg-hub-hero-content p {
  font-size: 1.1875rem;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 32px;
  color: var(--mg-white);
}

.mg-stories-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.mg-bff-about-section {
  padding: 90px 0;
  background-color: var(--mg-white);
  text-align: center;
}

.mg-bff-about-inner {
  max-width: 840px;
  margin: 0 auto;
}

.mg-bff-about-inner h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  margin-bottom: 20px;
}

.mg-lead-text {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--mg-charcoal);
  margin-bottom: 16px;
}

.mg-bff-about-inner p {
  font-size: 1.125rem;
  color: var(--mg-gray-dark);
  line-height: 1.65;
  margin-bottom: 32px;
}

.mg-bff-about-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Animated Marquee Ticker Tape */
.mg-ticker-tape {
  background-color: var(--mg-primary-yellow);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}

.mg-ticker-track {
  display: inline-flex;
  gap: 24px;
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  animation: mgMarquee 25s linear infinite;
}

@keyframes mgMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Ambassador Application Form */
.mg-ambassador-apply-section {
  padding: 90px 0;
  background-color: #FBF9F4;
}

.mg-apply-box {
  max-width: 780px;
  margin: 0 auto;
  background-color: var(--mg-white);
  padding: 48px;
  border-radius: 28px;
  box-shadow: var(--mg-shadow-sm);
}

.mg-apply-header {
  text-align: center;
  margin-bottom: 36px;
}

.mg-apply-header h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.mg-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mg-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.mg-form-group label {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--mg-charcoal);
}

.mg-form-group input,
.mg-form-group textarea {
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--mg-gray-light);
  font-size: 1rem;
  outline: none;
  font-family: inherit;
}

.mg-form-group input:focus,
.mg-form-group textarea:focus {
  border-color: var(--mg-charcoal);
}

.mg-form-actions {
  margin-top: 10px;
  text-align: center;
}

/* ==========================================================================
   STORIES / LOVE STORIES PAGE STYLES
   ========================================================================== */
.mg-stories-section {
  padding: 90px 0;
  background-color: #FBF9F4;
}

.mg-stories-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.mg-stories-header h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.mg-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.mg-story-card {
  background-color: var(--mg-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--mg-shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--mg-transition);
}

.mg-story-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--mg-shadow-md);
}

.mg-story-card-image {
  position: relative;
}

.mg-story-card-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.mg-story-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background-color: var(--mg-primary-yellow);
  color: var(--mg-charcoal);
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 800;
}

.mg-story-card-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.mg-story-card-body h3 {
  font-size: 1.3125rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
}

.mg-story-card-body p {
  font-size: 0.9375rem;
  color: var(--mg-gray-dark);
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

.mg-story-link {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--mg-charcoal);
}

.mg-story-link:hover {
  color: #c49d00;
}

/* Stacked Testimonial & Carousel Section */
.mg-testimonial-stack-section {
  padding: 90px 0;
  background-color: var(--mg-primary-yellow);
}

.mg-testimonial-stack-box {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 60px;
}

.mg-quote-icon {
  margin-bottom: 20px;
  opacity: 0.7;
}

.mg-testimonial-copy blockquote {
  font-size: clamp(1.5rem, 2.75vw, 2.25rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 20px;
}

.mg-testimonial-copy cite {
  font-style: normal;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--mg-charcoal);
  opacity: 0.85;
}

.mg-carousel-stack {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mg-stack-card {
  position: absolute;
  width: 260px;
  height: 340px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  border: 4px solid var(--mg-white);
  transition: var(--mg-transition);
}

.mg-stack-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mg-stack-card-1 {
  transform: rotate(-8deg) translateX(-40px);
  z-index: 1;
}

.mg-stack-card-2 {
  transform: rotate(4deg) translateY(-10px);
  z-index: 2;
}

.mg-stack-card-3 {
  transform: rotate(12deg) translateX(40px);
  z-index: 3;
}

/* Share Your Love Story Box */
.mg-share-story-section {
  padding: 80px 0;
  background-color: var(--mg-white);
}

.mg-share-story-box {
  max-width: 860px;
  margin: 0 auto;
  border: 2px dashed var(--mg-primary-yellow);
  background-color: #FFFDEB;
  border-radius: 28px;
  padding: 56px 40px;
  text-align: center;
}

.mg-share-story-inner h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.mg-share-story-inner p {
  font-size: 1.125rem;
  color: var(--mg-gray-dark);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 32px;
}

.mg-mailbox-note {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.mg-mailbox-note h4 {
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.mg-mailbox-note address {
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

.mg-mailbox-subtext {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #c49d00;
}

/* Merch Product Grid */
.mg-merch-section {
  padding: 90px 0;
  background-color: #FBF9F4;
}

.mg-merch-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.mg-merch-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 10px;
}

.mg-merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mg-merch-card {
  background-color: var(--mg-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--mg-shadow-sm);
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: var(--mg-transition);
}

.mg-merch-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--mg-shadow-md);
}

.mg-merch-card-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.mg-merch-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mg-merch-card-body h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.mg-merch-card-body p {
  font-size: 0.9375rem;
  color: var(--mg-gray-dark);
  margin-bottom: 16px;
}

/* ==========================================================================
   SEASONAL DATING GUIDES STYLES
   ========================================================================== */
.mg-seasonal-nav-bar {
  background-color: var(--mg-charcoal);
  padding: 16px 0;
  position: sticky;
  top: 80px;
  z-index: 100;
}

.mg-seasonal-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.mg-season-link {
  color: var(--mg-white);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 6px 16px;
  border-radius: 9999px;
  transition: var(--mg-transition);
}

.mg-season-link:hover {
  background-color: var(--mg-primary-yellow);
  color: var(--mg-charcoal);
}

.mg-season-section {
  padding: 80px 0;
  background-color: var(--mg-white);
}

.mg-bg-cream {
  background-color: #FBF9F4;
}

.mg-season-header {
  margin-bottom: 40px;
}

.mg-season-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  margin-bottom: 8px;
}

.mg-season-header p {
  font-size: 1.0625rem;
  color: var(--mg-gray-dark);
}

.mg-season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.mg-season-card {
  background-color: var(--mg-white);
  padding: 32px 24px;
  border-radius: 20px;
  border: 1px solid var(--mg-gray-light);
  display: flex;
  flex-direction: column;
  transition: var(--mg-transition);
}

.mg-bg-cream .mg-season-card {
  background-color: var(--mg-white);
}

.mg-season-card:hover {
  transform: translateY(-4px);
  border-color: var(--mg-primary-yellow);
  box-shadow: var(--mg-shadow-sm);
}

.mg-season-card h3 {
  font-size: 1.1875rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 12px;
}

.mg-season-card p {
  font-size: 0.9375rem;
  color: var(--mg-gray-dark);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES FOR BFF & STORIES
   ========================================================================== */
@media (max-width: 1024px) {
  .mg-bff-cards-grid,
  .mg-bff-social-box,
  .mg-testimonial-stack-box {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mg-season-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mg-merch-grid,
  .mg-stories-grid,
  .mg-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mg-bff-split-grid {
    grid-template-columns: 1fr;
  }

  .mg-season-grid,
  .mg-merch-grid,
  .mg-stories-grid,
  .mg-hub-grid {
    grid-template-columns: 1fr;
  }

  .mg-newsletter-input-group {
    flex-direction: column;
  }

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

  .mg-apply-box {
    padding: 32px 20px;
  }
}

/* ==========================================================================
   SAFETY CENTRE STYLES
   ========================================================================== */
.mg-safety-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.mg-safety-hero-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.mg-safety-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mg-safety-hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 90px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.75));
  color: var(--mg-white);
}

.mg-safety-hero-content {
  max-width: 800px;
}

.mg-safety-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--mg-white);
}

.mg-safety-hero-content p {
  font-size: 1.1875rem;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 32px;
  color: var(--mg-white);
}

/* Safety Features 8-Cards Grid */
.mg-safety-features-section {
  padding: 90px 0;
  background-color: #FBF9F4;
}

.mg-safety-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.mg-safety-header h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.mg-safety-header p {
  font-size: 1.125rem;
  color: var(--mg-gray-dark);
}

.mg-safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.mg-safety-card {
  background-color: var(--mg-white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--mg-shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--mg-transition);
}

.mg-safety-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--mg-shadow-md);
}

.mg-safety-card-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.mg-safety-card-body {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.mg-safety-card-body h3 {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.mg-safety-card-body p {
  font-size: 0.9375rem;
  color: var(--mg-gray-dark);
  line-height: 1.55;
}

/* Safety Learn More Split Section */
.mg-safety-learn-section {
  padding: 90px 0;
  background-color: var(--mg-white);
}

.mg-safety-learn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.mg-safety-learn-media img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
}

.mg-safety-learn-copy h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  margin-bottom: 28px;
}

.mg-safety-resource-card {
  background-color: #FBF9F4;
  padding: 28px 24px;
  border-radius: 20px;
  margin-bottom: 20px;
  border-left: 4px solid var(--mg-primary-yellow);
}

.mg-safety-resource-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.mg-safety-resource-card p {
  font-size: 0.9375rem;
  color: var(--mg-gray-dark);
  line-height: 1.5;
  margin-bottom: 16px;
}

/* Safety Partnerships Slider Section */
.mg-safety-partners-section {
  padding: 90px 0 120px;
  background-color: var(--mg-white);
  overflow: hidden;
}

.mg-partners-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.mg-partners-header-row h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--mg-charcoal);
  margin: 0;
}

.mg-slider-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mg-scroll-hint {
  font-size: 1rem;
  font-weight: 700;
  color: var(--mg-charcoal);
}

.mg-slider-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--mg-charcoal);
  color: var(--mg-white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--mg-transition);
}

.mg-slider-nav-btn:hover {
  background-color: #000000;
  transform: scale(1.08);
}

.mg-slider-nav-btn:active {
  transform: scale(0.95);
}

.mg-partners-slider-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 28px;
  cursor: grab;
  user-select: none;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.mg-partners-slider-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.mg-partners-slider-track.active {
  cursor: grabbing;
}

.mg-partner-slide-card {
  flex: 0 0 340px;
  width: 340px;
  min-height: 480px;
  background-color: var(--mg-primary-yellow);
  border-radius: 28px;
  padding: 36px 30px 32px;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: var(--mg-transition);
}

.mg-partner-slide-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.mg-partner-card-logo {
  width: 80px;
  height: 80px;
  background-color: var(--mg-white);
  border-radius: 20px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.mg-partner-card-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.mg-partner-slide-card h3 {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.25;
  color: var(--mg-charcoal);
  margin-bottom: 16px;
}

.mg-partner-slide-card p {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.85);
  margin-bottom: 28px;
  flex-grow: 1;
}

.mg-partner-learn-more {
  font-size: 0.9375rem;
  font-weight: 800;
  text-decoration: underline;
  color: var(--mg-charcoal);
  margin-top: auto;
  transition: var(--mg-transition);
}

.mg-partner-learn-more:hover {
  color: #000000;
  opacity: 0.8;
}

/* ==========================================================================
   SUPPORT & HELP CENTRE STYLES
   ========================================================================== */
.mg-support-hero {
  background-color: var(--mg-primary-yellow);
  padding: 80px 24px 70px;
  text-align: center;
}

.mg-support-hero-content {
  max-width: 760px;
  margin: 0 auto;
}

.mg-support-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 28px;
  color: var(--mg-charcoal);
}

.mg-support-search-box {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.mg-support-search-box .mg-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--mg-gray-dark);
}

.mg-support-search-box input {
  width: 100%;
  padding: 18px 20px 18px 56px;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 1.0625rem;
  outline: none;
  background-color: var(--mg-white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.mg-support-search-box input:focus {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Support Categories Grid */
.mg-support-categories-section {
  padding: 90px 0;
  background-color: var(--mg-white);
}

.mg-support-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.mg-support-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 10px;
}

.mg-support-header p {
  font-size: 1.125rem;
  color: var(--mg-gray-dark);
}

.mg-support-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mg-support-cat-card {
  background-color: #FBF9F4;
  padding: 36px 28px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: var(--mg-transition);
}

.mg-support-cat-card:hover {
  transform: translateY(-6px);
  background-color: var(--mg-white);
  border-color: var(--mg-primary-yellow);
  box-shadow: var(--mg-shadow-md);
}

.mg-support-cat-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background-color: var(--mg-primary-yellow);
  color: var(--mg-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mg-support-cat-card h3 {
  font-size: 1.3125rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.mg-support-cat-card p {
  font-size: 0.9375rem;
  color: var(--mg-gray-dark);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.mg-cat-link {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--mg-charcoal);
}

.mg-cat-link:hover {
  color: #c49d00;
}

/* Support FAQ Section */
.mg-support-faq-section {
  padding: 90px 0;
  background-color: #FBF9F4;
}

/* Still Need Help Box */
.mg-support-contact-section {
  padding: 80px 0 100px;
  background-color: var(--mg-white);
}

.mg-support-contact-box {
  max-width: 780px;
  margin: 0 auto;
  background-color: var(--mg-primary-yellow);
  padding: 56px 40px;
  border-radius: 28px;
  text-align: center;
}

.mg-support-contact-box h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.mg-support-contact-box p {
  font-size: 1.125rem;
  color: var(--mg-charcoal);
  margin-bottom: 28px;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES FOR SAFETY & SUPPORT
   ========================================================================== */
@media (max-width: 1024px) {
  .mg-partners-logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mg-support-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mg-safety-learn-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mg-safety-grid {
    grid-template-columns: 1fr;
  }

  .mg-partners-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mg-support-categories-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   COMPANY PAGES STYLES (About, Contact, Careers, Investors, Shop, Buzz)
   ========================================================================== */

/* About Page */
.mg-about-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.mg-about-hero-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.mg-about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mg-about-hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 90px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.75));
  color: var(--mg-white);
}

.mg-about-hero-content {
  max-width: 800px;
}

.mg-about-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--mg-white);
}

.mg-about-hero-content p {
  font-size: 1.1875rem;
  line-height: 1.6;
  opacity: 0.95;
  color: var(--mg-white);
}

.mg-about-intro-section {
  padding: 90px 0;
  background-color: var(--mg-white);
}

.mg-about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.mg-about-intro-media img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
}

.mg-about-intro-copy h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  margin-bottom: 20px;
}

.mg-about-intro-copy p {
  font-size: 1.125rem;
  color: var(--mg-gray-dark);
  line-height: 1.65;
  margin-bottom: 20px;
}

.mg-about-timeline-section {
  padding: 90px 0;
  background-color: #FBF9F4;
}

.mg-timeline-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.mg-timeline-header h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.mg-timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.mg-timeline-card {
  background-color: var(--mg-white);
  padding: 32px 24px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: var(--mg-transition);
}

.mg-timeline-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--mg-shadow-md);
  border-color: var(--mg-primary-yellow);
}

.mg-timeline-year {
  font-size: 1.125rem;
  font-weight: 900;
  color: #c49d00;
  margin-bottom: 8px;
}

.mg-timeline-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.mg-timeline-card p {
  font-size: 0.9375rem;
  color: var(--mg-gray-dark);
  line-height: 1.5;
}

.mg-about-mission-section {
  padding: 90px 0;
  background-color: var(--mg-primary-yellow);
  text-align: center;
}

.mg-about-mission-inner {
  max-width: 800px;
  margin: 0 auto;
}

.mg-mission-heart {
  color: var(--mg-charcoal);
  margin-bottom: 16px;
}

.mg-about-mission-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.mg-about-mission-inner p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--mg-charcoal);
}

.mg-about-work-section {
  padding: 80px 0 100px;
  background-color: var(--mg-white);
}

.mg-about-work-box {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  background-color: #FBF9F4;
  padding: 56px 40px;
  border-radius: 28px;
}

.mg-about-work-box h2 {
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.mg-about-work-box p {
  font-size: 1.125rem;
  color: var(--mg-gray-dark);
  margin-bottom: 28px;
}

/* Contact Page */
.mg-contact-hero {
  background-color: var(--mg-primary-yellow);
  padding: 80px 24px 60px;
  text-align: center;
}

.mg-contact-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.mg-contact-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--mg-charcoal);
}

.mg-contact-methods-section {
  padding: 80px 0;
  background-color: #FBF9F4;
}

.mg-contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mg-contact-method-card {
  background-color: var(--mg-white);
  padding: 36px 28px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--mg-shadow-sm);
  transition: var(--mg-transition);
}

.mg-contact-method-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--mg-shadow-md);
}

.mg-contact-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: var(--mg-primary-yellow);
  color: var(--mg-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mg-contact-method-card h3 {
  font-size: 1.3125rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.mg-contact-method-card p {
  font-size: 0.9375rem;
  color: var(--mg-gray-dark);
  line-height: 1.55;
  margin-bottom: 24px;
  flex-grow: 1;
}

.mg-contact-form-section {
  padding: 90px 0;
  background-color: var(--mg-white);
}

.mg-contact-form-box {
  max-width: 760px;
  margin: 0 auto;
  background-color: #FBF9F4;
  padding: 48px;
  border-radius: 28px;
}

.mg-contact-form-header {
  text-align: center;
  margin-bottom: 32px;
}

.mg-contact-form-header h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.mg-ticket-form select {
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--mg-gray-light);
  font-size: 1rem;
  outline: none;
  font-family: inherit;
  background-color: var(--mg-white);
}

.mg-contact-dept-section {
  padding: 80px 0 100px;
  background-color: #FBF9F4;
}

.mg-dept-header {
  text-align: center;
  margin-bottom: 40px;
}

.mg-dept-header h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.mg-dept-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.mg-dept-card {
  background-color: var(--mg-white);
  padding: 28px 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}

.mg-dept-card h4 {
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.mg-dept-card p {
  font-size: 0.875rem;
  color: var(--mg-gray-dark);
  margin-bottom: 16px;
  flex-grow: 1;
}

.mg-dept-email {
  font-weight: 700;
  font-size: 0.875rem;
  color: #c49d00;
}

/* Careers Page */
.mg-careers-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.mg-careers-hero-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.mg-careers-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mg-careers-hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 90px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.75));
  color: var(--mg-white);
}

.mg-careers-hero-content {
  max-width: 800px;
}

.mg-careers-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--mg-white);
}

.mg-careers-hero-content p {
  font-size: 1.1875rem;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 32px;
  color: var(--mg-white);
}

.mg-values-section {
  padding: 90px 0;
  background-color: var(--mg-white);
}

.mg-values-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.mg-values-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 10px;
}

.mg-values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.mg-value-card {
  background-color: #FBF9F4;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--mg-transition);
}

.mg-value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--mg-shadow-md);
}

.mg-value-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.mg-value-card-body {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.mg-value-card-body h3 {
  font-size: 1.1875rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.mg-value-card-body p {
  font-size: 0.875rem;
  color: var(--mg-gray-dark);
  line-height: 1.45;
}

.mg-benefits-section {
  padding: 90px 0;
  background-color: #FBF9F4;
}

.mg-benefits-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.mg-benefits-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 10px;
}

.mg-perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mg-perk-item {
  background-color: var(--mg-white);
  padding: 32px 24px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.mg-perk-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.mg-perk-item h4 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.mg-perk-item p {
  font-size: 0.9375rem;
  color: var(--mg-gray-dark);
  line-height: 1.5;
}

.mg-offices-section {
  padding: 90px 0;
  background-color: var(--mg-white);
}

.mg-offices-header {
  text-align: center;
  margin-bottom: 50px;
}

.mg-offices-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 10px;
}

.mg-offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.mg-office-card {
  background-color: #FBF9F4;
  border-radius: 24px;
  overflow: hidden;
  transition: var(--mg-transition);
}

.mg-office-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--mg-shadow-md);
}

.mg-office-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.mg-office-body {
  padding: 24px;
}

.mg-office-body h3 {
  font-size: 1.3125rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.mg-office-body p {
  font-size: 0.9375rem;
  color: var(--mg-gray-dark);
  line-height: 1.5;
}

.mg-open-roles-section {
  padding: 90px 0 110px;
  background-color: #FBF9F4;
}

.mg-roles-header {
  text-align: center;
  margin-bottom: 40px;
}

.mg-roles-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 10px;
}

.mg-roles-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mg-role-card {
  background-color: var(--mg-white);
  padding: 24px 32px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--mg-shadow-sm);
  transition: var(--mg-transition);
}

.mg-role-card:hover {
  transform: translateX(4px);
  box-shadow: var(--mg-shadow-md);
}

.mg-role-info h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.mg-role-meta {
  font-size: 0.875rem;
  color: var(--mg-gray-dark);
  font-weight: 600;
}

/* Investors Page */
.mg-investor-hero {
  background-color: var(--mg-primary-yellow);
  padding: 80px 24px 70px;
  text-align: center;
}

.mg-investor-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.mg-investor-hero-content h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--mg-charcoal);
}

.mg-stock-ticker-card {
  display: inline-flex;
  flex-direction: column;
  background-color: var(--mg-white);
  padding: 16px 28px;
  border-radius: 20px;
  margin-top: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.mg-stock-info {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 800;
}

.mg-stock-symbol {
  font-size: 1.125rem;
}

.mg-stock-price {
  font-size: 1.375rem;
}

.mg-stock-change.positive {
  color: #108548;
}

.mg-stock-time {
  font-size: 0.75rem;
  color: var(--mg-gray-dark);
  margin-top: 4px;
}

.mg-investor-stats-section {
  padding: 80px 0;
  background-color: var(--mg-white);
}

.mg-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.mg-stat-box {
  background-color: #FBF9F4;
  padding: 32px 20px;
  border-radius: 24px;
  text-align: center;
}

.mg-stat-box h3 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #c49d00;
  margin-bottom: 8px;
}

.mg-stat-box p {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--mg-charcoal);
}

.mg-investor-reports-section {
  padding: 80px 0;
  background-color: #FBF9F4;
}

.mg-investor-header {
  text-align: center;
  margin-bottom: 50px;
}

.mg-investor-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 8px;
}

.mg-reports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mg-report-card {
  background-color: var(--mg-white);
  padding: 32px 24px;
  border-radius: 24px;
  box-shadow: var(--mg-shadow-sm);
  display: flex;
  flex-direction: column;
}

.mg-report-date {
  font-size: 0.8125rem;
  font-weight: 800;
  color: #c49d00;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.mg-report-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.mg-report-card p {
  font-size: 0.9375rem;
  color: var(--mg-gray-dark);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.mg-report-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mg-report-link {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--mg-charcoal);
}

.mg-report-link:hover {
  color: #c49d00;
}

.mg-investor-alerts-section {
  padding: 80px 0 100px;
  background-color: var(--mg-white);
}

.mg-alerts-box {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  background-color: #FBF9F4;
  padding: 48px;
  border-radius: 28px;
}

.mg-alerts-box h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.mg-alerts-box p {
  font-size: 1rem;
  color: var(--mg-gray-dark);
  margin-bottom: 24px;
}

/* Shop Page */
.mg-shop-hero {
  background-color: var(--mg-primary-yellow);
  padding: 80px 24px 60px;
  text-align: center;
}

.mg-shop-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.mg-shop-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--mg-charcoal);
}

.mg-shop-products-section {
  padding: 90px 0;
  background-color: #FBF9F4;
}

.mg-shop-header {
  text-align: center;
  margin-bottom: 50px;
}

.mg-shop-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 10px;
}

.mg-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.mg-shop-item-card {
  background-color: var(--mg-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--mg-shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--mg-transition);
}

.mg-shop-item-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--mg-shadow-md);
}

.mg-shop-item-image {
  position: relative;
}

.mg-shop-item-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.mg-shop-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--mg-primary-yellow);
  color: var(--mg-charcoal);
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 800;
}

.mg-shop-item-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.mg-shop-item-body h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.mg-shop-item-body p {
  font-size: 0.9375rem;
  color: var(--mg-gray-dark);
  margin-bottom: 20px;
  flex-grow: 1;
}

.mg-shop-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mg-shop-price {
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--mg-charcoal);
}

.mg-shop-perks-section {
  padding: 80px 0 100px;
  background-color: var(--mg-white);
}

.mg-shop-perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.mg-shop-perk {
  text-align: center;
  padding: 24px;
}

.mg-shop-perk-icon {
  font-size: 2.25rem;
  margin-bottom: 12px;
}

.mg-shop-perk h4 {
  font-size: 1.1875rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.mg-shop-perk p {
  font-size: 0.9375rem;
  color: var(--mg-gray-dark);
}

/* Buzz Page */
.mg-buzz-hero {
  background-color: var(--mg-primary-yellow);
  padding: 80px 24px 60px;
  text-align: center;
}

.mg-buzz-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.mg-buzz-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--mg-charcoal);
}

.mg-buzz-featured-section {
  padding: 80px 0 40px;
  background-color: var(--mg-white);
}

.mg-buzz-lead-card {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  align-items: center;
  gap: 48px;
  background-color: #FBF9F4;
  border-radius: 28px;
  overflow: hidden;
  padding: 40px;
  box-shadow: var(--mg-shadow-sm);
}

.mg-buzz-lead-image {
  background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 50%, #415a77 100%);
  border-radius: 24px;
  padding: 36px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.mg-buzz-lead-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
}

.mg-buzz-lead-body h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin: 12px 0 16px;
}

.mg-buzz-lead-body p {
  font-size: 1.0625rem;
  color: var(--mg-gray-dark);
  line-height: 1.6;
  margin-bottom: 24px;
}

.mg-buzz-nav-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.mg-tab-btn {
  padding: 10px 24px;
  border-radius: 9999px;
  border: 1px solid var(--mg-gray-light);
  background-color: var(--mg-white);
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: var(--mg-transition);
}

.mg-tab-btn.active,
.mg-tab-btn:hover {
  background-color: var(--mg-primary-yellow);
  border-color: var(--mg-primary-yellow);
  color: var(--mg-charcoal);
  box-shadow: 0 4px 12px rgba(255, 230, 0, 0.35);
}

.mg-buzz-articles-section {
  padding: 40px 0 90px;
  background-color: var(--mg-white);
}

.mg-buzz-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.mg-buzz-card {
  background-color: #FBF9F4;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--mg-transition);
}

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

.mg-buzz-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--mg-shadow-md);
}

.mg-buzz-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.mg-buzz-card-body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.mg-buzz-card-body h3 {
  font-size: 1.1875rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 10px;
}

.mg-buzz-card-body p {
  font-size: 0.9375rem;
  color: var(--mg-gray-dark);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.mg-buzz-newsletter-section {
  padding: 80px 0 100px;
  background-color: var(--mg-primary-yellow);
}

.mg-buzz-newsletter-box {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.mg-buzz-newsletter-box h2 {
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.mg-buzz-newsletter-box p {
  font-size: 1.0625rem;
  color: var(--mg-charcoal);
  margin-bottom: 24px;
}

/* Responsive Rules for Company Pages */
@media (max-width: 1024px) {
  .mg-about-intro-grid,
  .mg-buzz-lead-card {
    grid-template-columns: 1fr;
  }

  .mg-timeline-grid,
  .mg-stats-grid,
  .mg-dept-grid,
  .mg-buzz-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mg-values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mg-contact-methods-grid,
  .mg-offices-grid,
  .mg-perks-grid,
  .mg-reports-grid,
  .mg-shop-grid,
  .mg-shop-perks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mg-timeline-grid,
  .mg-stats-grid,
  .mg-dept-grid,
  .mg-buzz-grid,
  .mg-values-grid,
  .mg-contact-methods-grid,
  .mg-offices-grid,
  .mg-perks-grid,
  .mg-reports-grid,
  .mg-shop-grid,
  .mg-shop-perks-grid {
    grid-template-columns: 1fr;
  }

  .mg-contact-form-box,
  .mg-alerts-box {
    padding: 32px 20px;
  }

  .mg-role-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ==========================================================================
   LEGAL PAGES & COOKIE PREFERENCES MODAL
   ========================================================================== */

/* Legal Hero */
.mg-legal-hero {
  background-color: var(--mg-primary-yellow);
  padding: 80px 24px 60px;
  text-align: center;
}

.mg-legal-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.mg-legal-hero-content h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--mg-charcoal);
}

.mg-legal-hero-content p {
  font-size: 1.125rem;
  color: var(--mg-charcoal);
  opacity: 0.9;
}

/* Legal Content Document (Seamless with background) */
.mg-legal-content-section {
  padding: 60px 0 100px;
  background-color: var(--mg-white);
}

.mg-legal-document {
  max-width: 900px;
  margin: 0 auto;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.mg-legal-meta {
  font-size: 0.875rem;
  font-weight: 700;
  color: #c49d00;
  text-transform: uppercase;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--mg-gray-light);
}

.mg-legal-document h2 {
  font-size: 1.625rem;
  font-weight: 900;
  margin-top: 36px;
  margin-bottom: 14px;
  color: var(--mg-charcoal);
}

.mg-legal-document h2:first-of-type {
  margin-top: 0;
}

.mg-legal-document p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--mg-gray-dark);
  margin-bottom: 18px;
}

.mg-legal-document ul {
  margin-bottom: 24px;
  padding-left: 24px;
}

.mg-legal-document li {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--mg-gray-dark);
  margin-bottom: 10px;
}

.mg-legal-document strong {
  color: var(--mg-charcoal);
}

.mg-legal-contact-callout {
  background-color: #FBF9F4;
  padding: 24px 28px;
  border-radius: 18px;
  margin-top: 24px;
  border-left: 4px solid var(--mg-primary-yellow);
}

.mg-legal-contact-callout p {
  margin-bottom: 8px;
  font-size: 1rem;
}

.mg-legal-contact-callout p:last-child {
  margin-bottom: 0;
}

/* Footer Legal Link Underline */
.mg-footer-legal-link {
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  color: inherit;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.mg-footer-legal-link:hover {
  opacity: 0.8;
  color: #c49d00;
}

/* Cookie Preferences Modal */
.mg-cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}

.mg-cookie-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mg-cookie-modal {
  background-color: var(--mg-white);
  border-radius: 28px;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.mg-cookie-modal-overlay.is-open .mg-cookie-modal {
  transform: translateY(0);
}

.mg-cookie-modal-header {
  padding: 28px 32px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--mg-gray-light);
}

.mg-cookie-modal-header h2 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--mg-charcoal);
  margin: 0;
}

.mg-cookie-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--mg-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.mg-cookie-modal-close:hover {
  background-color: #f0f0f0;
}

.mg-cookie-modal-body {
  padding: 24px 32px;
  overflow-y: auto;
  flex-grow: 1;
}

.mg-cookie-intro {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--mg-gray-dark);
  margin-bottom: 24px;
}

.mg-cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mg-cookie-cat-item {
  background-color: #FBF9F4;
  padding: 20px 24px;
  border-radius: 18px;
}

.mg-cookie-cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.mg-cookie-cat-title h3 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--mg-charcoal);
  margin: 0;
}

.mg-cookie-badge-active {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #108548;
  background-color: rgba(16, 133, 72, 0.12);
  padding: 4px 10px;
  border-radius: 9999px;
  display: inline-block;
  margin-top: 4px;
}

.mg-cookie-cat-desc {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--mg-gray-dark);
  margin: 0;
}

/* Toggle Switch */
.mg-toggle-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.mg-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.mg-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .3s;
  border-radius: 34px;
}

.mg-toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}

.mg-toggle-switch input:checked + .mg-toggle-slider {
  background-color: var(--mg-charcoal);
}

.mg-toggle-switch input:checked + .mg-toggle-slider:before {
  transform: translateX(22px);
  background-color: var(--mg-primary-yellow);
}

.mg-cookie-modal-footer {
  padding: 20px 32px 28px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  border-top: 1px solid var(--mg-gray-light);
  background-color: var(--mg-white);
}

@media (max-width: 768px) {
  .mg-legal-document {
    padding: 36px 20px;
  }

  .mg-cookie-modal-header,
  .mg-cookie-modal-body,
  .mg-cookie-modal-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .mg-cookie-modal-footer {
    flex-direction: column;
    align-items: stretch;
  }
}





