/* =============================================================
   MeinePlantage — Startseite (ID 13)
   ============================================================= */

/* ── Hero ────────────────────────────────────────────────────── */
.mp-startseite-hero {
  background-image: url('https://meineplantage.de/wp-content/uploads/2026/04/cannabis.jpg');
  background-size: cover;
  background-position: 70% 21%;
  min-height: 670px;
  display: flex;
  align-items: center;
}

.mp-startseite-hero__inner {
  position: relative;
  width: 100%;
  max-width: var(--mp-content-width);
  margin: 0 auto;
  padding: var(--mp-spacing-xxl) var(--mp-edge-padding);
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 2rem;
  align-items: center;
}

.mp-startseite-hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--mp-spacing-xs);
}

.mp-startseite-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.mp-startseite-hero__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mp-startseite-hero__image img {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 100px;
  object-fit: cover;
}

@media (max-width: 1000px) {
  .mp-startseite-hero {
    background-image: none !important;
    background-color: var(--mp-color-bg);
    min-height: auto;
  }
  .mp-startseite-hero .mp-hero__overlay {
    display: none;
  }
  .mp-startseite-hero__inner {
    grid-template-columns: 1fr;
  }
  .mp-startseite-hero__image {
    display: none;
  }
  .mp-startseite-hero__buttons {
    flex-direction: column;
    align-items: center;
  }
  .mp-startseite-hero__buttons .mp-button {
    align-self: center;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

/* ── Schnelle Hilfe ─────────────────────────────────────────── */
.mp-schnelle-hilfe {
  background: var(--mp-color-white);
}

.mp-schnelle-hilfe__inner {
  max-width: var(--mp-content-width);
  margin: 0 auto;
  padding: var(--mp-spacing-xl) var(--mp-edge-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.mp-schnelle-hilfe__card {
  background: var(--mp-color-white);
  border-radius: var(--mp-radius-card);
  box-shadow: 0 20px 80px -20px rgba(0,0,0,0.1);
  padding: var(--mp-spacing-lg) var(--mp-spacing-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.mp-schnelle-hilfe__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--mp-color-dark);
  font-family: var(--mp-font-heading);
  line-height: 1.2;
}

.mp-schnelle-hilfe__text {
  color: var(--mp-color-gray-dark);
  font-size: 1rem;
  line-height: 1.7;
}

/* Problem Grid — 2×2 */
.mp-problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.mp-problem-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--mp-color-white);
  border-radius: var(--mp-radius-card);
  box-shadow: 0 0 60px -20px rgba(0,0,0,0.08);
  text-decoration: none;
  transition: box-shadow 0.2s ease;
}

.mp-problem-item:hover {
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.15);
}

.mp-problem-item__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: var(--mp-color-surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mp-color-primary);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.mp-problem-item__content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.mp-problem-item__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--mp-color-dark);
  line-height: 1.2;
}

.mp-problem-item__text {
  font-size: 0.9rem;
  color: var(--mp-color-gray-dark);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .mp-schnelle-hilfe__inner {
    grid-template-columns: 1fr;
  }
  .mp-problem-grid {
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .mp-problem-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Diagnose-Wizard ────────────────────────────────────────── */
.mp-diagnose {
  background: var(--mp-color-surface);
}

.mp-diagnose__inner {
  max-width: var(--mp-content-width);
  margin: 0 auto;
  padding: var(--mp-spacing-xl) var(--mp-edge-padding);
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 4rem;
  align-items: center;
}

.mp-diagnose__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mp-diagnose__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--mp-color-dark);
  font-family: var(--mp-font-heading);
  line-height: 1.2;
}

.mp-diagnose__text {
  color: var(--mp-color-gray-dark);
  line-height: 1.7;
}

.mp-diagnose__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mp-diagnose__bullets li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--mp-color-dark);
}

.mp-diagnose__bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--mp-color-primary);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
}

.mp-diagnose__visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mp-diagnose__step {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--mp-color-white);
  border-radius: var(--mp-radius-card);
  padding: 1rem 1.25rem;
  box-shadow: 0 4px 24px -8px rgba(0,0,0,0.08);
}

.mp-diagnose__step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--mp-color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.mp-diagnose__step-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--mp-color-dark);
}

@media (max-width: 900px) {
  .mp-diagnose__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .mp-diagnose__content {
    text-align: center;
    align-items: center;
  }
  .mp-diagnose__bullets {
    text-align: left;
  }
  .mp-diagnose__content .mp-button {
    align-self: center;
  }
}

/* ── Tools / Rechner ────────────────────────────────────────── */
.mp-tools {
  background: var(--mp-color-white);
}

.mp-tools__inner {
  max-width: var(--mp-content-width);
  margin: 0 auto;
  padding: var(--mp-spacing-xl) var(--mp-edge-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.mp-tools__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--mp-color-dark);
  font-family: var(--mp-font-heading);
  line-height: 1.2;
  max-width: 500px;
}

.mp-tools__subtitle {
  color: var(--mp-color-gray-dark);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.mp-tools__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
  width: 100%;
}

.mp-tool-card {
  background: var(--mp-color-bg);
  border-radius: var(--mp-radius-card);
  box-shadow: 0 0 60px -10px rgba(0,0,0,0.08);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  text-align: center;
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.mp-tool-card:hover {
  background: var(--mp-color-surface);
  box-shadow: 0 16px 60px -10px rgba(0,0,0,0.18);
}

.mp-tool-card__icon {
  width: 56px;
  height: 56px;
  background: var(--mp-color-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 0.25rem;
}

.mp-tool-card__icon--vpd {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2v6M12 22v-4M4.93 4.93l4.24 4.24M14.83 14.83l4.24 4.24M2 12h6M22 12h-4M4.93 19.07l4.24-4.24M14.83 9.17l4.24-4.24'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px 28px;
}

.mp-tool-card__icon--ph {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 3H5a2 2 0 00-2 2v4m6-6h10a2 2 0 012 2v4M9 3v18m0 0h10a2 2 0 002-2V9M9 21H5a2 2 0 01-2-2V9m0 0h18'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px 28px;
}

.mp-tool-card__icon--ec {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 12h-4l-3 9L9 3l-3 9H2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px 28px;
}

.mp-tool-card__icon--harvest {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3Cpath d='M8 14h.01M12 14h.01M16 14h.01M8 18h.01M12 18h.01'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px 28px;
}

.mp-tool-card__name {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mp-color-dark);
}

.mp-tool-card__desc {
  font-size: 0.875rem;
  color: var(--mp-color-gray-dark);
  line-height: 1.5;
}

.mp-tools__more {
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--mp-color-primary);
  text-decoration: none;
  transition: color 0.2s;
}

.mp-tools__more:hover {
  color: var(--mp-color-primary-light);
}

@media (max-width: 900px) {
  .mp-tools__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .mp-tools__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .mp-tool-card__name {
    font-size: 0.75rem;
    letter-spacing: 0.02em;
  }
}

/* ── Weiterführende Themen ──────────────────────────────────── */
.mp-topics {
  background: var(--mp-color-white);
  background-image: url('https://meineplantage.de/wp-content/uploads/2026/04/natural_background.jpg');
  background-size: cover;
  background-position: 94% 100%;
  position: relative;
}

.mp-topics::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.68);
}

.mp-topics__inner {
  position: relative;
  max-width: var(--mp-content-width);
  margin: 0 auto;
  padding: var(--mp-spacing-xl) var(--mp-edge-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.mp-topics__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--mp-color-dark);
  font-family: var(--mp-font-heading);
  line-height: 1.2;
  max-width: 600px;
}

.mp-topics__subtitle {
  color: var(--mp-color-gray-dark);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.mp-topics__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
  width: 100%;
}

.mp-topic-card {
  background: var(--mp-color-bg);
  border-radius: var(--mp-radius-card);
  box-shadow: 0 0 80px -10px rgba(0,0,0,0.1);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  text-align: center;
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.mp-topic-card:hover {
  background: var(--mp-color-surface);
  box-shadow: 0 20px 80px -10px rgba(0,0,0,0.2);
}

.mp-topic-card__icon {
  width: 80px;
  height: 80px;
  background: var(--mp-color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  font-size: 2rem;
  line-height: 1;
}

/* white monochrome icons via CSS background-image SVG */
.mp-topic-card__icon--seedling {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22V12M12 12C12 7 7 4 3 6c4 0 7 3 9 6M12 12c0-5 5-8 9-6-4 0-7 3-9 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 38px 38px;
}
.mp-topic-card__icon--nutrients {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 21h6M12 3a6 6 0 016 6c0 2.22-1.2 4.15-3 5.19V17a1 1 0 01-1 1H10a1 1 0 01-1-1v-2.81C7.2 13.15 6 11.22 6 9a6 6 0 016-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 38px 38px;
}
.mp-topic-card__icon--faq {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M9.5 9a3 3 0 015.5 1c0 2-3 3-3 3'/%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 38px 38px;
}

.mp-topic-card__label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mp-color-dark);
}

.mp-topic-card__text {
  font-size: 0.95rem;
  color: var(--mp-color-gray-dark);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .mp-topics__cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ── Für Einsteiger ─────────────────────────────────────────── */
.mp-einsteiger {
  background: var(--mp-color-white);
}

.mp-einsteiger__inner {
  max-width: var(--mp-content-width);
  margin: 0 auto;
  padding: var(--mp-spacing-xl) var(--mp-edge-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.mp-einsteiger__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--mp-color-dark);
  font-family: var(--mp-font-heading);
  line-height: 1.4;
  max-width: 650px;
}

.mp-einsteiger__text {
  color: var(--mp-color-gray-dark);
  margin-bottom: 0.5rem;
}

.mp-einsteiger__btn {
  align-self: center;
}

/* ── Warum MeinePlantage ────────────────────────────────────── */
.mp-why {
  background: var(--mp-color-white);
}

.mp-why__inner {
  max-width: var(--mp-content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 400px;
}

.mp-why__features {
  background-image: url('https://meineplantage.de/wp-content/uploads/2026/04/lines.png');
  background-size: cover;
  background-position: center center;
  background: linear-gradient(135deg, #f4f8f2 0%, #eaf3e5 100%);
  padding: var(--mp-spacing-xl) var(--mp-spacing-lg);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 100%;
  justify-content: center;
}

.mp-feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.mp-feature-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--mp-color-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  line-height: 1;
}

.mp-feature-item__icon--book {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5A2.5 2.5 0 016.5 17H20'/%3E%3Cpath d='M6.5 2H20v20H6.5A2.5 2.5 0 014 19.5v-15A2.5 2.5 0 016.5 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
}
.mp-feature-item__icon--wrench {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.7 6.3a1 1 0 000 1.4l1.6 1.6a1 1 0 001.4 0l3.77-3.77a6 6 0 01-7.94 7.94l-6.91 6.91a2.12 2.12 0 01-3-3l6.91-6.91a6 6 0 017.94-7.94l-3.76 3.76z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
}
.mp-feature-item__icon--search {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
}

.mp-feature-item__title {
  font-size: 1rem;
  font-weight: 300;
  color: var(--mp-color-dark);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.mp-feature-item__text {
  font-size: 0.9rem;
  color: var(--mp-color-gray-dark);
  line-height: 1.7;
}

.mp-why__content {
  padding: var(--mp-spacing-xl) var(--mp-spacing-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mp-why__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--mp-color-dark);
  font-family: var(--mp-font-heading);
  line-height: 50px;
}

.mp-why__text {
  color: var(--mp-color-gray-dark);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
  .mp-why__inner {
    grid-template-columns: 1fr;
  }
  .mp-why__features {
    padding: var(--mp-spacing-lg) var(--mp-edge-padding);
  }
  .mp-why__content {
    padding: var(--mp-spacing-lg) var(--mp-edge-padding);
    text-align: center;
    align-items: center;
  }
  .mp-why__content .mp-button {
    align-self: center;
  }
}

/* ── Newsletter — Kadence margin reset ──────────────────────── */
.mp-newsletter p,
.mp-newsletter h2,
.mp-newsletter h3,
.mp-newsletter span,
.mp-newsletter label {
  margin: 0;
}

/* ── Newsletter ─────────────────────────────────────────────── */
.mp-newsletter {
  background: var(--mp-color-bg);
  margin-top: 60px;
  margin-bottom: 60px;
}

.mp-newsletter__inner {
  max-width: var(--mp-content-width);
  margin: 0 auto;
  padding: var(--mp-spacing-xl) var(--mp-edge-padding);
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 4rem;
  align-items: center;
}

.mp-newsletter__text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mp-newsletter__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--mp-color-dark);
  font-family: var(--mp-font-heading);
  line-height: 1.2;
}

.mp-newsletter__subtitle {
  color: var(--mp-color-gray-dark);
  font-size: 0.95rem;
  line-height: 1.7;
}

.mp-newsletter__note {
  font-size: 0.75rem;
  color: var(--mp-color-gray-mid);
  margin-top: 2px;
}

.mp-newsletter__form-card {
  background: var(--mp-color-white);
  border-radius: var(--mp-radius-card);
  padding: var(--mp-spacing-md);
  box-shadow: 0 4px 40px -10px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mp-newsletter__form-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--mp-color-dark);
  margin: 0;
}

/* Kadence form overrides inside our card */
.mp-newsletter__form-card .kb-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mp-newsletter__form-card .kadence-blocks-form-field {
  width: 100%;
}

.mp-newsletter__form-card .kb-email-field {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d0d8d0;
  border-radius: var(--mp-radius-button);
  font-size: 0.95rem;
  font-family: var(--mp-font-body);
  color: var(--mp-color-dark);
  background: var(--mp-color-white);
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.mp-newsletter__form-card .kb-email-field:focus {
  outline: none;
  border-color: var(--mp-color-primary);
}

.mp-newsletter__form-card .kb-accept-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--mp-color-gray-dark);
  line-height: 1.4;
}

.mp-newsletter__accept-row {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.mp-newsletter__accept-row .kb-checkbox-style {
  margin-top: 0.15rem;
  flex-shrink: 0;
  cursor: pointer;
}

.mp-newsletter__form-card .kb-accept-link {
  display: block;
  color: var(--mp-color-primary);
  font-size: 0.85rem;
  text-decoration: underline;
}

.mp-newsletter__form-card .kb-checkbox-style {
  accent-color: var(--mp-color-primary);
  cursor: pointer;
}

.mp-newsletter__form-card .required {
  color: #c00;
}

.mp-newsletter__form-card .kb-forms-submit {
  width: 100%;
  padding: 0.8rem 1.5rem;
  background: var(--mp-color-primary);
  color: var(--mp-color-white);
  border: none;
  border-radius: var(--mp-radius-button);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--mp-font-body);
  cursor: pointer;
  transition: background 0.2s;
}

.mp-newsletter__form-card .kb-forms-submit:hover {
  background: var(--mp-color-primary-light);
}

@media (max-width: 768px) {
  .mp-newsletter__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
