/* MentoraPro — pazarlama ana sayfası */
:root {
  --mp-ink: #0b1f3a;
  --mp-ink-2: #132a4a;
  --mp-teal: #1aa6a0;
  --mp-teal-2: #0d8a85;
  --mp-gold: #c9a227;
  --mp-cream: #f3f6fa;
  --mp-muted: #5b6b7c;
  --mp-line: #d9e2ec;
  --mp-white: #ffffff;
  --mp-danger: #c0392b;
  --mp-forest: #1f6b4a;
  --mp-navy: #1a3a6b;
  --mp-radius: 18px;
  --mp-shadow: 0 18px 50px rgba(11, 31, 58, 0.14);
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--mp-ink);
  background: var(--mp-cream);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.mp-container { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }

/* —— Nav —— */
.mp-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mp-line);
}
.mp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}
.mp-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.mp-brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(11,31,58,0.18));
}
.mp-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.mp-brand-text small {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--mp-teal-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mp-nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mp-nav-links > li { position: relative; }
.mp-nav-links a, .mp-nav-drop > button {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: var(--mp-ink);
  font-weight: 600;
  cursor: pointer;
}
.mp-nav-links a:hover, .mp-nav-drop > button:hover {
  background: rgba(26,166,160,0.1);
  color: var(--mp-teal-2);
}
.mp-nav-drop { position: relative; }
.mp-nav-drop-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  min-width: 180px;
  background: var(--mp-white);
  border: 1px solid var(--mp-line);
  border-radius: 14px;
  box-shadow: var(--mp-shadow);
  padding: 0.4rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: 0.18s ease;
}
.mp-nav-drop:hover .mp-nav-drop-menu,
.mp-nav-drop:focus-within .mp-nav-drop-menu {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.mp-nav-drop-menu a {
  display: block;
  width: 100%;
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
}
.mp-nav-actions { display: flex; align-items: center; gap: 0.55rem; }
.mp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1.15rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: 0.18s ease;
}
.mp-btn-primary {
  background: var(--mp-ink);
  color: #fff;
}
.mp-btn-primary:hover { background: #163258; transform: translateY(-1px); }
.mp-btn-ghost {
  background: transparent;
  border-color: var(--mp-line);
  color: var(--mp-ink);
}
.mp-btn-ghost:hover { border-color: var(--mp-teal); color: var(--mp-teal-2); }
.mp-btn-teal {
  background: linear-gradient(135deg, var(--mp-teal), var(--mp-teal-2));
  color: #fff;
}
.mp-btn-teal:hover { filter: brightness(1.05); transform: translateY(-1px); }
.mp-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--mp-line);
  background: #fff;
}

/* —— Hero —— */
.mp-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(1200px 600px at 20% 20%, rgba(26,166,160,0.28), transparent 55%),
              radial-gradient(900px 500px at 85% 10%, rgba(201,162,39,0.18), transparent 50%),
              linear-gradient(160deg, #071526 0%, #0b1f3a 45%, #0e2a4a 100%);
  color: #fff;
  padding: 4.5rem 0 5rem;
}
.mp-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}
.mp-kicker {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border-radius: 8px;
  background: rgba(26,166,160,0.9);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.mp-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 1rem 0 1rem;
}
.mp-hero-lead {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.84);
  max-width: 36rem;
  margin: 0 0 1.5rem;
}
.mp-hero-cta { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 1.4rem; }
.mp-hero-points {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}
.mp-hero-points li { display: flex; gap: 0.55rem; align-items: flex-start; }
.mp-hero-points i { color: var(--mp-teal); margin-top: 0.2rem; }

.mp-slider {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  min-height: 340px;
}
.mp-slide {
  position: absolute;
  inset: 0;
  padding: 1.4rem;
  opacity: 0;
  transform: translateX(24px);
  transition: 0.45s ease;
  pointer-events: none;
  display: grid;
  align-content: space-between;
}
.mp-slide.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  position: relative;
}
.mp-slide-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.mp-slide-badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}
.mp-slide-visual {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 0.9rem;
  align-items: center;
  margin: 1rem 0;
}
.mp-slide-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 1rem;
}
.mp-slide-card strong { display: block; font-size: 1.05rem; margin-bottom: 0.35rem; }
.mp-slide-card p { margin: 0; color: rgba(255,255,255,0.78); font-size: 0.9rem; }
.mp-slide-visual img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-inline: auto;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.35));
  animation: mp-float 4s ease-in-out infinite;
}
@keyframes mp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.mp-slider-dots {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  padding: 0 0 1rem;
}
.mp-slider-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  padding: 0;
}
.mp-slider-dots button.is-on { width: 22px; background: var(--mp-teal); }

/* —— Sections —— */
.mp-section { padding: 4.5rem 0; }
.mp-section-alt { background: #fff; }
.mp-section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}
.mp-section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  letter-spacing: -0.03em;
  margin: 0.4rem 0 0.7rem;
}
.mp-section-head p { margin: 0; color: var(--mp-muted); }

.mp-role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.mp-role-card {
  background: #fff;
  border: 1px solid var(--mp-line);
  border-radius: var(--mp-radius);
  padding: 1.35rem;
  box-shadow: 0 10px 30px rgba(11,31,58,0.05);
  transition: 0.25s ease;
}
.mp-role-card:hover { transform: translateY(-4px); box-shadow: var(--mp-shadow); }
.mp-role-card.is-teacher { border-top: 4px solid var(--mp-forest); }
.mp-role-card.is-student { border-top: 4px solid var(--mp-navy); }
.mp-role-card.is-parent { border-top: 4px solid var(--mp-danger); }
.mp-role-card h3 {
  font-family: var(--font-display);
  margin: 0.6rem 0 0.5rem;
  font-size: 1.25rem;
}
.mp-role-card p { margin: 0 0 0.8rem; color: var(--mp-muted); font-size: 0.95rem; }
.mp-role-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--mp-ink);
  font-size: 0.92rem;
}
.mp-role-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: #fff;
}
.mp-role-card.is-teacher .mp-role-icon { background: var(--mp-forest); }
.mp-role-card.is-student .mp-role-icon { background: var(--mp-navy); }
.mp-role-card.is-parent .mp-role-icon { background: var(--mp-danger); }

.mp-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.mp-feature {
  background: var(--mp-cream);
  border-radius: var(--mp-radius);
  padding: 1.25rem;
  border: 1px solid transparent;
}
.mp-section-alt .mp-feature { background: var(--mp-cream); }
.mp-feature i {
  color: var(--mp-teal-2);
  font-size: 1.25rem;
  margin-bottom: 0.55rem;
}
.mp-feature h3 { margin: 0 0 0.4rem; font-size: 1.05rem; font-family: var(--font-display); }
.mp-feature p { margin: 0; color: var(--mp-muted); font-size: 0.92rem; }

.mp-ai {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: center;
  background: linear-gradient(145deg, #0b1f3a, #14365c);
  color: #fff;
  border-radius: 28px;
  padding: 1.75rem;
  overflow: hidden;
}
.mp-ai img {
  width: min(220px, 70%);
  margin: 0 auto;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.35));
}
.mp-ai h2 { font-family: var(--font-display); margin: 0 0 0.7rem; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.mp-ai p { color: rgba(255,255,255,0.82); margin: 0 0 1rem; }
.mp-ai-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.mp-ai-list li {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 0.8rem 0.95rem;
  font-size: 0.93rem;
}
.mp-ai-list strong { color: #9ff0ea; }

/* —— Pricing —— */
.mp-pricing-tabs,
.mp-billing-toggle {
  display: inline-flex;
  background: #e8eef5;
  border-radius: 999px;
  padding: 0.25rem;
  margin: 0 auto 1.25rem;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  gap: 0.25rem;
}
.mp-billing-toggle button,
.mp-pricing-tabs button {
  border: 0;
  background: transparent;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  color: var(--mp-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.mp-billing-toggle button.is-on,
.mp-pricing-tabs button.is-on {
  background: #fff;
  color: var(--mp-ink);
  box-shadow: 0 4px 14px rgba(11,31,58,0.08);
}
.mp-gift-pill {
  background: var(--mp-gold);
  color: #1a1400;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
}
.mp-yearly-banner {
  text-align: center;
  background: linear-gradient(90deg, rgba(201,162,39,0.18), rgba(26,166,160,0.12));
  border: 1px solid rgba(201,162,39,0.35);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  margin: 0 0 1.25rem;
  color: var(--mp-ink);
  font-weight: 600;
}
.mp-gift-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  background: var(--mp-gold);
  color: #1a1400;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}
.mp-skel { min-height: 280px; }
.mp-skel-line, .mp-skel-price {
  background: linear-gradient(90deg, #e8eef5 25%, #f7fafc 50%, #e8eef5 75%);
  background-size: 200% 100%;
  animation: mp-shimmer 1.2s ease-in-out infinite;
  border-radius: 8px;
}
.mp-skel-line { height: 14px; margin-bottom: 10px; width: 70%; }
.mp-skel-price { height: 36px; width: 45%; margin: 16px 0; }
@keyframes mp-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.mp-checkout[hidden] { display: none !important; }
.mp-checkout {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: end center;
}
.mp-checkout-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11,31,58,0.55);
}
.mp-checkout-panel {
  position: relative;
  width: min(820px, 100%);
  max-height: min(92vh, 920px);
  overflow: auto;
  background: #fff;
  border-radius: 22px 22px 0 0;
  padding: 1.25rem 1.25rem 1.75rem;
  box-shadow: 0 -12px 40px rgba(11,31,58,0.2);
}
.mp-checkout-x {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: #eef3f8;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}
.mp-checkout-panel h2 {
  font-family: var(--font-display);
  margin: 0.25rem 2rem 0.25rem 0;
  font-size: 1.25rem;
}
.mp-checkout-sub { color: var(--mp-muted); margin: 0 0 1rem; font-size: 0.92rem; }
.mp-co-cols {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.mp-co-cols.is-single { grid-template-columns: 1fr; }
.mp-co-col {
  margin: 0;
  padding: 0.9rem 1rem;
  border: 1px solid var(--mp-line);
  border-radius: 16px;
  background: #f8fafc;
}
.mp-co-foot {
  margin: 0;
  padding: 1rem 1.1rem 0.25rem;
  border: 1px solid var(--mp-line);
  border-radius: 16px;
  background: linear-gradient(180deg, #f4fbf9 0%, #fff 55%);
  text-align: center;
}
.mp-co-foot-note { max-width: 36rem; margin: 0 auto 0.75rem; }
.mp-co-steps h3 { margin: 0 0 0.55rem; font-size: 0.95rem; }
.mp-co-steps label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
  text-align: left;
}
.mp-co-steps input {
  border: 1px solid var(--mp-line);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  font-weight: 500;
}
.mp-co-method {
  display: inline-flex;
  gap: 0.4rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: #e8eef5;
  margin: 0 auto 0.85rem;
}
.mp-co-method-btn {
  border: 0;
  background: transparent;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.86rem;
  cursor: pointer;
  color: var(--mp-muted);
}
.mp-co-method-btn.is-active {
  background: #fff;
  color: var(--mp-ink);
  box-shadow: 0 1px 6px rgba(11,31,58,0.12);
}
.mp-co-verify-panel { margin-bottom: 0.75rem; text-align: left; }
.mp-co-otp-row {
  display: grid;
  grid-template-columns: auto minmax(7rem, 1fr) auto;
  gap: 0.5rem;
  align-items: end;
}
.mp-co-otp-field { margin: 0 !important; }
.mp-co-extra {
  margin: 0.85rem 0;
  padding-top: 0.65rem;
  border-top: 1px dashed var(--mp-line);
  text-align: left;
}
.mp-co-check {
  display: flex !important;
  align-items: flex-start;
  gap: 0.55rem;
  text-align: left;
  font-weight: 500 !important;
  margin: 0.45rem auto 0.55rem !important;
  max-width: 34rem;
}
.mp-co-check input { width: auto; margin-top: 0.2rem; }
.mp-co-err {
  background: #fdecea;
  color: #922b21;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
}
.mp-co-phone-ok { color: var(--mp-teal-2); font-weight: 700; font-size: 0.9rem; }
.mp-co-pay { width: 100%; }
@media (min-width: 720px) {
  .mp-co-cols:not(.is-single) { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 719px) {
  .mp-co-otp-row { grid-template-columns: 1fr; }
}
.mp-iyzico-form { margin-top: 1rem; }
.mp-sandbox-hint {
  margin-top: 0.85rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: #fff8e8;
  border: 1px solid rgba(201,162,39,0.45);
  font-size: 0.82rem;
  color: #1a1400;
  display: grid;
  gap: 0.25rem;
}
.mp-sandbox-hint code { font-weight: 800; letter-spacing: 0.02em; }
.mp-sandbox-hint[hidden] { display: none !important; }
.mp-recaptcha-wrap {
  min-height: 78px;
  margin: 0.5rem 0;
  display: flex;
  justify-content: flex-start;
}
.mp-price-card .mp-btn { width: 100%; margin-top: auto; text-align: center; border: 0; cursor: pointer; }
@media (min-width: 720px) {
  .mp-checkout { place-items: center; }
  .mp-checkout-panel { border-radius: 22px; padding: 1.5rem 1.6rem 1.75rem; }
}
.mp-price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.mp-price-grid.is-3 { grid-template-columns: repeat(3, 1fr); }
.mp-price-grid.is-4 { grid-template-columns: repeat(4, 1fr); }
.mp-price-card {
  background: #fff;
  border: 1px solid var(--mp-line);
  border-radius: 22px;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}
.mp-price-card.is-featured {
  border-color: var(--mp-teal);
  box-shadow: 0 18px 40px rgba(26,166,160,0.15);
}
.mp-price-card .mp-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--mp-teal);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}
.mp-price-card h3 { margin: 0; font-family: var(--font-display); font-size: 1.2rem; }
.mp-price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.mp-price-amount small { font-size: 0.95rem; font-weight: 600; color: var(--mp-muted); }
.mp-price-note { color: var(--mp-muted); font-size: 0.88rem; margin: 0; }
.mp-price-card ul {
  margin: 0;
  padding-left: 1.05rem;
  font-size: 0.92rem;
  flex: 1;
}
.mp-price-card li + li { margin-top: 0.35rem; }
.mp-compare {
  margin-top: 1.5rem;
  overflow-x: auto;
  border: 1px solid var(--mp-line);
  border-radius: 18px;
  background: #fff;
}
.mp-compare table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.9rem;
}
.mp-compare th, .mp-compare td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--mp-line);
  text-align: left;
}
.mp-compare th { background: #f7fafc; font-family: var(--font-display); }
.mp-compare tr:last-child td { border-bottom: 0; }
.mp-yes { color: var(--mp-forest); font-weight: 700; }
.mp-no { color: var(--mp-danger); font-weight: 700; }

/* —— Forms —— */
.mp-form-panel {
  background: #fff;
  border: 1px solid var(--mp-line);
  border-radius: 22px;
  padding: 1.4rem;
  box-shadow: var(--mp-shadow);
}
.mp-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.mp-form-grid .full { grid-column: 1 / -1; }
.mp-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.mp-field input, .mp-field select, .mp-field textarea {
  width: 100%;
  border: 1px solid var(--mp-line);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  background: #fff;
}
.mp-field textarea { min-height: 96px; resize: vertical; }
.mp-form-note {
  font-size: 0.82rem;
  color: var(--mp-muted);
  margin: 0.6rem 0 0;
}
.mp-form-success {
  display: none;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(31,107,74,0.1);
  color: var(--mp-forest);
  font-weight: 700;
  margin-top: 0.8rem;
}
.mp-form-success.is-on { display: block; }

.mp-contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

/* —— Footer —— */
.mp-footer {
  background: var(--mp-ink);
  color: rgba(255,255,255,0.86);
  padding: 3rem 0 1.5rem;
}
.mp-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.mp-footer h4 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  color: #fff;
  font-size: 0.95rem;
}
.mp-footer a { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.mp-footer a:hover { color: #9ff0ea; }
.mp-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.45rem; }
.mp-footer-brand { display: flex; gap: 0.7rem; align-items: center; margin-bottom: 0.7rem; }
.mp-footer-brand img { width: 42px; height: 42px; }
.mp-newsletter {
  display: flex;
  gap: 0.45rem;
}
.mp-newsletter input {
  flex: 1;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: #fff;
  padding: 0.65rem 0.8rem;
}
.mp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

.mp-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.mp-mobile-panel {
  display: none;
  position: fixed;
  inset: 76px 0 auto 0;
  background: #fff;
  border-bottom: 1px solid var(--mp-line);
  padding: 1rem;
  z-index: 49;
  box-shadow: var(--mp-shadow);
}
.mp-mobile-panel.is-open { display: grid; gap: 0.5rem; }
.mp-mobile-panel a, .mp-mobile-panel button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem;
  border-radius: 12px;
  border: 0;
  background: var(--mp-cream);
  font-weight: 700;
}

  @media (max-width: 960px) {
  .mp-nav-links, .mp-nav-actions .mp-btn-ghost { display: none; }
  .mp-nav-toggle { display: grid; place-items: center; }
  .mp-hero-grid, .mp-role-grid, .mp-feature-grid, .mp-ai,
  .mp-price-grid, .mp-price-grid.is-3, .mp-price-grid.is-4, .mp-contact-wrap, .mp-footer-grid,
  .mp-form-grid, .mp-slide-visual {
    grid-template-columns: 1fr;
  }
  .mp-hero { padding-top: 3rem; }
  .mp-billing-toggle {
    width: calc(100% - 0.5rem);
    justify-content: stretch;
  }
  .mp-billing-toggle button { flex: 1; justify-content: center; }
}
