/* =========================================================
   MDE MCP — Landing Page Styles
   Scoped to .mde-mcp-lp body class
   Brand: Open Sans, navy hero #0D1F2D, green CTA #34A853, blue accent #1863DC
   ========================================================= */

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

body.mde-mcp-lp {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #212121;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- Variables ---- */
body.mde-mcp-lp {
  --c-primary:   #1863DC;
  --c-green:     #34A853;
  --c-green-h:   #2D9248;
  --c-dark:      #0D1F2D;
  --c-dark-mid:  #1A3A4A;
  --c-text:      #212121;
  --c-muted:     #666;
  --c-border:    #E8E8E8;
  --c-light:     #F8F9FA;
  --c-white:     #fff;
  --radius:      8px;
  --radius-lg:   12px;
  --shadow:      0 2px 16px rgba(0,0,0,.08);
  --shadow-h:    0 8px 32px rgba(0,0,0,.14);
  --max-w:       1100px;
  --max-w-n:     720px;
}

/* ---- Utilities ---- */
.mcp-container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.mcp-container--narrow { max-width: var(--max-w-n); }

.mcp-btn {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .15s, box-shadow .15s, transform .15s, border-color .15s;
  line-height: 1.2;
}
.mcp-btn--primary {
  background: var(--c-green);
  color: #fff;
  box-shadow: 0 4px 14px rgba(52,168,83,.3);
}
.mcp-btn--primary:hover {
  background: var(--c-green-h);
  box-shadow: 0 6px 20px rgba(52,168,83,.4);
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}
.mcp-btn--outline {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-primary);
}
.mcp-btn--outline:hover {
  background: var(--c-primary);
  color: #fff;
  text-decoration: none;
}
.mcp-btn--nav {
  background: var(--c-green);
  color: #fff;
  padding: 9px 18px;
  font-size: 14px;
}
.mcp-btn--nav:hover { background: var(--c-green-h); color: #fff; text-decoration: none; }
.mcp-btn--lg { padding: 16px 36px; font-size: 17px; }
.mcp-btn--full { display: block; text-align: center; width: 100%; }

/* ---- Nav ---- */
.mcp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--c-border);
  backdrop-filter: blur(8px);
}
.mcp-nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.mcp-nav__logo {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  flex-shrink: 0;
}
.mcp-nav__logo img {
  display: block;
  height: 48px;
  width: auto;
}
.mcp-nav__logo-mark {
  background: var(--c-primary);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  padding: 3px 7px;
  border-radius: 5px;
  letter-spacing: .5px;
}
.mcp-nav__logo-text {
  font-weight: 700;
  font-size: 15px;
  color: var(--c-text);
}
.mcp-nav__links {
  display: flex;
  gap: 20px;
  margin-left: auto;
}
.mcp-nav__links a {
  color: var(--c-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color .15s;
}
.mcp-nav__links a:hover { color: var(--c-text); }
.mcp-nav__burger {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--c-text);
  margin-left: auto;
}
.mcp-nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--c-border);
  padding: 12px 20px;
}
.mcp-nav__mobile a {
  display: block;
  padding: 10px 0;
  color: var(--c-text);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--c-border);
}
.mcp-nav__mobile a:last-child { border-bottom: none; }
.mcp-nav__mobile.is-open { display: flex; }

/* ---- Hero ---- */
.mcp-hero {
  background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-dark-mid) 100%);
  padding: 80px 20px 72px;
  text-align: center;
  color: #fff;
}
.mcp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.mcp-hero__h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #fff;
}
.mcp-hero__sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,.75);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.mcp-hero__actions { margin-bottom: 16px; }
.mcp-hero__note {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.mcp-hero__platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.mcp-platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: #fff;
}
.mcp-platform-badge--ig   { border-color: #E1306C40; }
.mcp-platform-badge--tt   { border-color: #ffffff30; }
.mcp-platform-badge--yt   { border-color: #FF000040; }
.mcp-platform-badge--gm   { border-color: #1A73E840; }
.mcp-platform-badge--az   { border-color: #FF990040; }
.mcp-platform-badge--meta { border-color: #0866FF40; }

/* ---- Sections ---- */
.mcp-section { padding: 80px 0; }
.mcp-section--light { background: var(--c-light); }
.mcp-section__title {
  text-align: center;
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--c-text);
}
.mcp-section__sub {
  text-align: center;
  color: var(--c-muted);
  font-size: 16px;
  margin-bottom: 48px;
}

/* ---- Problem / Solution ---- */
.mcp-ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mcp-ps-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
}
.mcp-ps-card--problem { background: #FFF5F5; border-color: #FFCCCC; }
.mcp-ps-card--solution { background: #F1F8F4; border-color: #B2DFCB; }
.mcp-ps-card__label {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 16px;
}
.mcp-ps-card--problem .mcp-ps-card__label { color: #C62828; }
.mcp-ps-card--solution .mcp-ps-card__label { color: #2E7D32; }
.mcp-ps-card__list { list-style: none; }
.mcp-ps-card__list li {
  padding: 7px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  font-size: 15px;
  padding-left: 20px;
  position: relative;
}
.mcp-ps-card__list li:last-child { border-bottom: none; }
.mcp-ps-card--problem .mcp-ps-card__list li::before { content: "→"; position: absolute; left: 0; color: #C62828; }
.mcp-ps-card--solution .mcp-ps-card__list li::before { content: "✓"; position: absolute; left: 0; color: #2E7D32; font-weight: 700; }

/* ---- How it works ---- */
.mcp-steps {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.mcp-step {
  flex: 1;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.mcp-step__num {
  width: 40px;
  height: 40px;
  background: var(--c-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.mcp-step__body h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.mcp-step__body p { font-size: 14px; color: var(--c-muted); line-height: 1.65; }
.mcp-step__arrow {
  color: var(--c-border);
  font-size: 20px;
  padding-top: 40px;
  flex-shrink: 0;
}

/* ---- Platform cards ---- */
.mcp-platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mcp-platform-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
}
.mcp-platform-card:hover { box-shadow: var(--shadow-h); transform: translateY(-3px); }
.mcp-platform-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}
.mcp-platform-card__icon--ig   { background: #FFF0F3; color: #E1306C; }
.mcp-platform-card__icon--tt   { background: #F0F0F0; color: #010101; }
.mcp-platform-card__icon--yt   { background: #FFF0F0; color: #FF0000; }
.mcp-platform-card__icon--gm   { background: #EEF4FF; color: #1863DC; }
.mcp-platform-card__icon--az   { background: #FFF8EE; color: #FF9900; }
.mcp-platform-card__icon--meta { background: #EEF3FF; color: #0866FF; }
.mcp-platform-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.mcp-platform-card ul { list-style: none; margin-bottom: 16px; }
.mcp-platform-card ul li {
  font-size: 13px;
  color: var(--c-muted);
  padding: 4px 0;
  padding-left: 14px;
  position: relative;
}
.mcp-platform-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--c-primary);
}
.mcp-platform-card__tools {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-top: 1px solid var(--c-border);
  padding-top: 12px;
}
.mcp-platform-card__tools span {
  font-size: 10px;
  font-family: monospace;
  background: #EEF4FF;
  color: var(--c-primary);
  padding: 3px 7px;
  border-radius: 4px;
  font-weight: 600;
}

/* ---- Features ---- */
.mcp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mcp-feature-card {
  padding: 28px 24px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: box-shadow .2s, transform .2s;
}
.mcp-feature-card:hover { box-shadow: var(--shadow-h); transform: translateY(-2px); }
.mcp-feature-card__icon {
  width: 44px;
  height: 44px;
  background: #EEF4FF;
  color: var(--c-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}
.mcp-feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.mcp-feature-card p { font-size: 14px; color: var(--c-muted); line-height: 1.65; }

/* ---- Use cases ---- */
.mcp-use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mcp-use-case-card {
  padding: 28px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  background: #fff;
  border-top-width: 4px;
}
.mcp-use-case-card--blue  { border-top-color: var(--c-primary); }
.mcp-use-case-card--green { border-top-color: var(--c-green); }
.mcp-use-case-card--orange { border-top-color: #FF6B35; }
.mcp-use-case-card__icon {
  font-size: 24px;
  margin-bottom: 12px;
}
.mcp-use-case-card--blue .mcp-use-case-card__icon  { color: var(--c-primary); }
.mcp-use-case-card--green .mcp-use-case-card__icon { color: var(--c-green); }
.mcp-use-case-card--orange .mcp-use-case-card__icon { color: #FF6B35; }
.mcp-use-case-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.mcp-use-case-card p { font-size: 14px; color: var(--c-muted); line-height: 1.65; margin-bottom: 14px; }
.mcp-use-case-card__example {
  font-size: 13px;
  font-style: italic;
  background: var(--c-light);
  border-left: 3px solid var(--c-border);
  padding: 10px 14px;
  border-radius: 0 6px 6px 0;
  color: #444;
}

/* ---- Pricing ---- */
.mcp-pricing-grid {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
}
.mcp-pricing-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  width: 190px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
}
.mcp-pricing-card:hover { box-shadow: var(--shadow-h); transform: translateY(-2px); }
.mcp-pricing-card--featured {
  border-color: var(--c-green);
  box-shadow: 0 4px 24px rgba(52,168,83,.18);
}
.mcp-pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.mcp-pricing-card__name { font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.mcp-pricing-card__price {
  font-size: 28px;
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 2px;
}
.mcp-pricing-card__price span { font-size: 14px; font-weight: 400; color: var(--c-muted); }
.mcp-pricing-card__credits { font-size: 13px; color: var(--c-primary); font-weight: 700; margin-bottom: 16px; }
.mcp-pricing-card__features {
  list-style: none;
  margin-bottom: 20px;
  flex: 1;
}
.mcp-pricing-card__features li {
  font-size: 13px;
  color: var(--c-muted);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.mcp-pricing-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--c-green);
  font-weight: 700;
}
.mcp-pricing__note {
  text-align: center;
  font-size: 13px;
  color: var(--c-muted);
  margin-top: 24px;
}

/* ---- FAQ ---- */
.mcp-faq { border: 1px solid var(--c-border); border-radius: var(--radius-lg); overflow: hidden; }
.mcp-faq__item { border-bottom: 1px solid var(--c-border); }
.mcp-faq__item:last-child { border-bottom: none; }
.mcp-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text);
  text-align: left;
  gap: 16px;
  transition: background .15s;
}
.mcp-faq__q:hover { background: var(--c-light); }
.mcp-faq__q i { flex-shrink: 0; font-size: 13px; color: var(--c-muted); transition: transform .25s; }
.mcp-faq__q[aria-expanded="true"] i { transform: rotate(180deg); }
.mcp-faq__a {
  display: none;
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.7;
}
.mcp-faq__a p { margin: 0; }
.mcp-faq__a code {
  background: #EEF4FF;
  color: var(--c-primary);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 13px;
}
.mcp-faq__item.is-open .mcp-faq__a { display: block; }

/* ---- Final CTA ---- */
.mcp-cta-section {
  background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-dark-mid) 100%);
  text-align: center;
  color: #fff;
}
.mcp-cta-section__inner h2 {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}
.mcp-cta-section__inner p {
  color: rgba(255,255,255,.7);
  margin-bottom: 28px;
  font-size: 16px;
}

/* ---- Footer ---- */
.mcp-footer {
  background: #0a0e14;
  color: rgba(255,255,255,.6);
  padding: 40px 0 24px;
}
.mcp-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}
.mcp-footer__brand { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.mcp-footer__brand p { font-size: 13px; width: 100%; margin-top: 4px; }
.mcp-footer__brand a { color: rgba(255,255,255,.6); }
.mcp-footer__links { display: flex; gap: 20px; flex-wrap: wrap; }
.mcp-footer__links a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: 14px;
  transition: color .15s;
}
.mcp-footer__links a:hover { color: #fff; }
.mcp-footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 16px; }
.mcp-footer__bottom p { font-size: 13px; text-align: center; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .mcp-platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .mcp-hero__platforms { gap: 8px; }
  .mcp-features-grid  { grid-template-columns: repeat(2, 1fr); }
  .mcp-use-cases-grid { grid-template-columns: 1fr; }
  .mcp-ps-grid        { grid-template-columns: 1fr; }
  .mcp-steps          { flex-direction: column; }
  .mcp-step__arrow    { display: none; }
}

@media (max-width: 768px) {
  .mcp-nav__links { display: none; }
  .mcp-nav__burger { display: block; }
  .mcp-nav__inner .mcp-btn--nav { display: none; }
  .mcp-pricing-grid { flex-direction: column; align-items: center; }
  .mcp-pricing-card { width: 100%; max-width: 320px; }
  .mcp-hero { padding: 56px 20px; }
}

@media (max-width: 500px) {
  .mcp-platforms-grid { grid-template-columns: 1fr; }
  .mcp-features-grid  { grid-template-columns: 1fr; }
  .mcp-footer__inner  { flex-direction: column; align-items: flex-start; }
  .mcp-footer__links  { flex-direction: column; gap: 10px; }
}

/* ============================================================
   ELEMENTOR OVERRIDES
   Prevent Elementor's global button styles from bleeding into
   the FAQ accordion buttons.
   ============================================================ */
.mcp-faq .mcp-faq__q,
.mcp-faq .mcp-faq__q:hover,
.mcp-faq .mcp-faq__q:focus,
.mcp-faq .mcp-faq__q:focus-visible,
.mcp-faq .mcp-faq__q:active {
  background-color: transparent !important;
  background: none !important;
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
  border-radius: 0 !important;
  color: var(--c-text) !important;
}
.mcp-faq .mcp-faq__q:hover {
  background-color: var(--c-light) !important;
}
.mcp-faq .mcp-faq__item.is-open .mcp-faq__q {
  background-color: transparent !important;
  color: var(--c-text) !important;
}
