/* =======================================================
   MARKETING DESIGNS – Page Specific Styles
   Keeps your global styles.css intact
   ======================================================= */


/* =========================
   LANDING-PAGE STYLE HERO
========================= */

.mb-landing-hero {
  padding: 64px 0 26px;
}

.mb-landing-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.mb-landing-kicker {
  margin: 0 0 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.85rem;
  opacity: 0.7;
}

.mb-landing-title {
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 4.2vw, 4.2rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.mb-landing-sub {
  margin: 0;
  font-size: 1.1rem;
  opacity: 0.75;
  max-width: 56ch;
}

/* Right side visual card (like your landing hero) */
.mb-landing-hero-visual {
  display: flex;
  justify-content: center;
}

.mb-landing-card {
  width: min(520px, 100%);
  aspect-ratio: 1 / 1;
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-soft, 0 18px 45px rgba(53, 33, 83, 0.12));
  display: grid;
  place-items: center;
  padding: 26px;
}

.mb-landing-avatar {
  width: 86%;
  height: auto;
  display: block;
}

/* Mobile */
@media (max-width: 900px) {
  .mb-landing-hero {
    padding: 34px 0 16px;
  }

  .mb-landing-hero-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mb-landing-card {
    aspect-ratio: 4 / 3;
  }

  .mb-landing-avatar {
    width: 78%;
  }
}


/* =========================
   MAIN CONTENT
========================= */

.mb-main {
  padding: 18px 0 70px;
}

.mb-section {
  padding: 30px 0 40px;
}

.mb-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.mb-section-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.mb-section-sub {
  margin: 4px 0 0;
  font-size: 0.85rem;
  opacity: 0.7;
}


/* =========================
   GRID LAYOUT
========================= */

.mb-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 900px) {
  .mb-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
   CARD STYLE
========================= */

.mb-card {
  background: var(--card-bg, #ffffff);
  border-radius: var(--radius-lg, 24px);
  border: 1px solid var(--border-subtle, rgba(0, 0, 0, 0.05));
  box-shadow: var(--shadow-soft, 0 18px 45px rgba(53, 33, 83, 0.12));
  padding: 16px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.mb-card:hover {
  transform: translateY(-5px);
}

.mb-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.mb-card-title {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0.9;
}


/* =========================
   CAROUSEL CONTROLS
========================= */

.mb-card-controls {
  display: inline-flex;
  gap: 8px;
}

.mb-iconbtn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  transition: transform 120ms ease;
}

.mb-iconbtn:hover {
  transform: translateY(-2px);
}


/* =========================
   CAROUSEL STRUCTURE
========================= */

.mb-carousel {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(0, 0, 0, 0.02);
}

.mb-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  transform: translateX(0);
  transition: transform 250ms ease;
  touch-action: pan-y;
}

.mb-slide {
  width: 100%;
  height: auto;
  display: block;
}


/* =========================
   DOT INDICATORS
========================= */

.mb-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.75);
}

.mb-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  transition: width 160ms ease;
}

.mb-dot.is-active {
  width: 20px;
  background: rgba(0, 0, 0, 0.4);
}


/* =========================
   FOOTER
========================= */

.mb-footer {
  padding-top: 30px;
  opacity: 0.6;
  font-size: 0.85rem;
  text-align: center;
}
