.elementor-14589 .elementor-element.elementor-element-c5f4c2c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-6c2381a *//* ════════════════════════════════════════════════════════════════════
   VALOR & MEDIA — MICROSOFT ADS PAGE | CSS (FIXED)
   Paste: WordPress → Appearance → Customize → Additional CSS
   OR GoHighLevel → Site Settings → Custom CSS
   
   All classes prefixed with "ma-" to avoid theme conflicts
   
   FIX NOTES:
   - All dark-section text colors forced with !important (Services)
   - Higher-specificity .elementor-14589 .elementor-element.elementor-element-6c2381as (section.ma-xxx) override builder defaults
   - All headings, paragraphs, badges, buttons protected
   - Global override safety net at the bottom
   - Light sections also locked to prevent unwanted color shifts
════════════════════════════════════════════════════════════════════ */


/* ─── VARIABLES ─── */
:root {
  --ma-bg:            #ffffff;
  --ma-ink:           #1a1a1a;
  --ma-ink-2:         #0e0f11;
  --ma-dark:          #17171a;
  --ma-dark-2:        #1f1f23;
  --ma-text:          #3a3a3d;
  --ma-text-dim:      #6b6d72;
  --ma-gold:          #c2a374;
  --ma-gold-dark:     #a88857;

  --ma-purple:        #e6e3ff;
  --ma-yellow:        #f5dc8d;
  --ma-grey-soft:     #e3e1dc;
  --ma-blue-soft:     #c9d3ed;
  --ma-peach:         #f7e4d0;
  --ma-peach-bg:      #fbecd8;

  --ma-line:          rgba(0,0,0,0.08);
  --ma-white:         #ffffff;

  --ma-font:          'Poppins', sans-serif;
  --ma-font-serif:    'Fraunces', 'Playfair Display', Georgia, serif;
  --ma-radius:        20px;
  --ma-radius-lg:     28px;
  --ma-max:           1200px;
  --ma-ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/* ─── BASE RESET (scoped to .ma- sections only) ─── */
section[class^="ma-"] *,
section[class^="ma-"] *::before,
section[class^="ma-"] *::after {
  box-sizing: border-box;
}

section[class^="ma-"] {
  font-family: var(--ma-font);
  color: var(--ma-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  width: 100%;
}

.ma-container {
  max-width: var(--ma-max);
  margin: 0 auto;
  padding: 0 5%;
}


/* ════════════════════════════════════════════════════
   HERO SECTION — Soft purple card with image
════════════════════════════════════════════════════ */
.ma-hero {
  padding: 40px 5% 60px;
  background: var(--ma-white);
}

.ma-hero-card {
  max-width: var(--ma-max);
  margin: 0 auto;
  background: var(--ma-purple);
  border-radius: var(--ma-radius-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  position: relative;
  min-height: 420px;
  align-items: stretch;
}

.ma-hero-left {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

section.ma-hero .ma-hero-left h1,
section.ma-hero h1 {
  font-family: var(--ma-font-serif);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ma-ink) !important;
  margin: 0 0 20px 0;
  letter-spacing: -0.8px;
}

section.ma-hero .ma-hero-left p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ma-text) !important;
  margin: 0;
  max-width: 480px;
}

.ma-hero-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--ma-radius-lg);
  margin: 20px 20px 20px 0;
}

.ma-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--ma-radius-lg);
}


/* ════════════════════════════════════════════════════
   WHY OUR GAME IS STRONG — 3 pastel cards
════════════════════════════════════════════════════ */
.ma-why {
  padding: 70px 0 90px;
  background: var(--ma-white);
}

section.ma-why .ma-why-title,
section.ma-why h2 {
  font-family: var(--ma-font-serif);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ma-ink) !important;
  margin: 0 0 50px 0;
  letter-spacing: -0.8px;
}

.ma-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ma-why-card {
  border-radius: var(--ma-radius);
  padding: 40px 36px;
  transition: transform 0.4s var(--ma-ease);
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.ma-why-card:hover {
  transform: translateY(-6px);
}

.ma-card-yellow { background: var(--ma-yellow); }
.ma-card-grey   { background: var(--ma-grey-soft); }
.ma-card-blue   { background: var(--ma-blue-soft); }

.ma-why-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  font-size: 28px;
  color: var(--ma-ink) !important;
}

section.ma-why .ma-why-icon i {
  color: var(--ma-ink) !important;
}

section.ma-why .ma-why-card h3 {
  font-family: var(--ma-font);
  font-size: 18px;
  font-weight: 700;
  color: var(--ma-ink) !important;
  margin: 0 0 14px 0;
  letter-spacing: -0.2px;
  line-height: 1.3;
}

section.ma-why .ma-why-card p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ma-text) !important;
  margin: 0;
}


/* ════════════════════════════════════════════════════
   OUR SERVICES — Dark section with 2x2 grid (FIXED)
════════════════════════════════════════════════════ */
.ma-services {
  background: var(--ma-dark);
  padding: 90px 0 100px;
  position: relative;
  background-image:
    radial-gradient(circle at 25px 25px, rgba(255,255,255,0.015) 1.5px, transparent 1.5px);
  background-size: 50px 50px;
}

section.ma-services .ma-services-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--ma-dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
}

section.ma-services .ma-services-title,
section.ma-services h2.ma-services-title,
section.ma-services h2 {
  font-family: var(--ma-font-serif);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 600;
  color: #ffffff !important;
  margin: 0 0 14px 0;
  letter-spacing: -0.8px;
  line-height: 1.2;
}

section.ma-services .ma-services-sub {
  font-size: 14.5px;
  color: rgba(255,255,255,0.55) !important;
  margin: 0 0 50px 0;
  line-height: 1.65;
  max-width: 580px;
}

.ma-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ma-service-card {
  background: var(--ma-dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--ma-radius);
  padding: 40px 40px;
  transition: border-color 0.3s var(--ma-ease), transform 0.3s var(--ma-ease);
}

.ma-service-card:hover {
  border-color: rgba(194,163,116,0.4);
  transform: translateY(-4px);
}

section.ma-services .ma-service-card h3 {
  font-family: var(--ma-font-serif);
  font-size: 22px;
  font-weight: 600;
  color: #ffffff !important;
  margin: 0 0 18px 0;
  letter-spacing: -0.3px;
  line-height: 1.3;
}

section.ma-services .ma-service-card p {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65) !important;
  margin: 0;
}


/* ════════════════════════════════════════════════════
   OUR PROCESS — Peach bg with pin timeline
════════════════════════════════════════════════════ */
.ma-process {
  padding: 90px 0;
  background: var(--ma-white);
}

.ma-process-wrap {
  max-width: var(--ma-max);
  margin: 0 auto;
  background: var(--ma-peach-bg);
  background-image:
    radial-gradient(circle at 15px 15px, rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: 30px 30px;
  border-radius: var(--ma-radius-lg);
  padding: 50px 50px 70px;
  position: relative;
  overflow: hidden;
}

.ma-process-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 50px;
}

section.ma-process .ma-process-header h2,
section.ma-process h2 {
  font-family: var(--ma-font-serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  color: var(--ma-ink) !important;
  margin: 0;
  letter-spacing: -0.6px;
}

.ma-process-deco {
  width: 120px;
  height: auto;
  opacity: 0.9;
  border-radius: 12px;
  display: none;
}

.ma-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.ma-process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: rgba(26,26,26,0.15);
  z-index: 0;
}

.ma-process-step {
  position: relative;
  z-index: 1;
}

section.ma-process .ma-process-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ma-ink) !important;
  margin-bottom: 14px;
}

.ma-process-pin {
  width: 32px;
  height: 32px;
  background: var(--ma-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #ffffff !important;
  font-size: 14px;
  box-shadow: 0 4px 14px rgba(194,163,116,0.3);
}

.ma-process-card {
  background: var(--ma-white);
  border-radius: 14px;
  padding: 24px 22px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s var(--ma-ease), box-shadow 0.3s var(--ma-ease);
}

.ma-process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

section.ma-process .ma-process-card h3 {
  font-family: var(--ma-font);
  font-size: 15px;
  font-weight: 700;
  color: var(--ma-ink) !important;
  margin: 0 0 10px 0;
  letter-spacing: -0.2px;
  line-height: 1.3;
}

section.ma-process .ma-process-card p {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ma-text-dim) !important;
  margin: 0;
}


/* ════════════════════════════════════════════════════
   CTA SECTION — Clean centered (Light)
════════════════════════════════════════════════════ */
.ma-cta {
  padding: 90px 5% 110px;
  background: var(--ma-white);
  text-align: center;
}

.ma-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  background: var(--ma-white);
  border: 1px solid var(--ma-line);
  border-radius: var(--ma-radius-lg);
  padding: 60px 40px;
}

section.ma-cta .ma-cta-inner h2,
section.ma-cta h2 {
  font-family: var(--ma-font-serif);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ma-ink) !important;
  margin: 0 0 16px 0;
  letter-spacing: -0.8px;
}

section.ma-cta .ma-cta-inner p {
  font-size: 14.5px;
  color: var(--ma-text-dim) !important;
  line-height: 1.7;
  margin: 0 0 32px 0;
}

section.ma-cta .ma-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 8px 16px 30px;
  background: var(--ma-gold);
  color: #ffffff !important;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s var(--ma-ease);
  box-shadow: 0 8px 24px rgba(194,163,116,0.25);
}

section.ma-cta .ma-cta-btn:hover {
  background: var(--ma-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(194,163,116,0.35);
  color: #ffffff !important;
}

section.ma-cta .ma-cta-arrow {
  width: 36px;
  height: 36px;
  background: var(--ma-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ma-gold) !important;
  font-size: 12px;
  transition: transform 0.3s var(--ma-ease);
}

section.ma-cta .ma-cta-btn:hover .ma-cta-arrow {
  transform: rotate(45deg);
}


/* ════════════════════════════════════════════════════
   GLOBAL OVERRIDE — Dark Section Text Force
   (Catches any heading/paragraph inside dark sections that
   builder might inject with custom classes or styles)
════════════════════════════════════════════════════ */
section.ma-services h1,
section.ma-services h2,
section.ma-services h3,
section.ma-services h4,
section.ma-services h5,
section.ma-services h6 {
  color: #ffffff !important;
}

section.ma-services p {
  color: rgba(255, 255, 255, 0.7) !important;
}

section.ma-services span:not([class*="icon"]) {
  color: inherit !important;
}


/* ════════════════════════════════════════════════════
   GLOBAL OVERRIDE — Light Section Text Force
   (Ensures light sections show dark text properly)
════════════════════════════════════════════════════ */
section.ma-hero h1,
section.ma-hero h2,
section.ma-hero h3,
section.ma-why h1,
section.ma-why h2,
section.ma-why h3,
section.ma-process h1,
section.ma-process h2,
section.ma-process h3,
section.ma-cta h1,
section.ma-cta h2,
section.ma-cta h3 {
  color: var(--ma-ink) !important;
}


/* ════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ma-hero-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .ma-hero-left { padding: 50px 40px 20px; }
  .ma-hero-image {
    margin: 0 20px 20px;
    height: 320px;
  }
  .ma-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ma-why-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  .ma-services-grid {
    grid-template-columns: 1fr;
  }
  .ma-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .ma-process-grid::before {
    display: none;
  }
  .ma-process-wrap {
    padding: 40px 30px 50px;
  }
}

@media (max-width: 640px) {
  .ma-hero { padding: 24px 5% 40px; }
  .ma-hero-left { padding: 40px 28px 20px; }
  .ma-hero-image {
    margin: 0 20px 20px;
    height: 240px;
  }
  .ma-why { padding: 50px 0 70px; }
  .ma-why-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .ma-why-card:last-child {
    grid-column: auto;
    max-width: none;
  }
  .ma-why-card {
    padding: 32px 28px;
    min-height: auto;
  }
  .ma-services {
    padding: 60px 0 70px;
  }
  .ma-service-card {
    padding: 32px 28px;
  }
  .ma-process {
    padding: 60px 0;
  }
  .ma-process-wrap {
    padding: 32px 22px 40px;
    border-radius: var(--ma-radius);
  }
  .ma-process-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ma-process-header h2 {
    font-size: 26px;
  }
  .ma-cta {
    padding: 60px 5% 80px;
  }
  .ma-cta-inner {
    padding: 44px 26px;
  }
  .ma-cta-btn {
    padding: 14px 6px 14px 24px;
    font-size: 13px;
    gap: 10px;
  }
  .ma-cta-arrow {
    width: 32px;
    height: 32px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  section[class^="ma-"] *,
  section[class^="ma-"] *::before,
  section[class^="ma-"] *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.2s !important;
  }
}/* End custom CSS */