/* =============================================================================
   MBC / BIZZQARD Landing Page Theme
   Version 2.0 – Mobile First, sauber strukturiert
   
   ARCHITEKTUR:
   --pad = horizontaler Innenabstand der Seite (16px Mobile, 24px Desktop)
   Full-Bleed-Elemente (Header, Footer, Navy, CTA) nutzen negative Margins
   auf Basis von --pad → immer konsistent, egal wo man dreht.
============================================================================= */

/* ===== DESIGN TOKENS ===== */
:root {
  --navy:         #061D43;
  --navy-light:   #1a2332;
  --orange:       #FFC937;
  --orange-cta:   #ff6b35;
  --white:        #ffffff;
  --gray-light:   #f5f5f5;
  --gray-medium:  #9e9e9e;
  --success:      #4caf50;
  --error:        #f44336;
  --info:         #2196f3;

  /* Zentraler Padding-Wert – Mobile First */
  --pad: 24px;
}

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

/* ===== BASE ===== */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
               Helvetica, Arial, sans-serif;
  color: var(--navy-light);
  background: var(--white);
  line-height: 1.65;
  /* Kein padding auf body – der Container übernimmt das */
  max-width: 800px;
  margin: 0 auto;
}

/* ===== HEADER – volle Breite ===== */
.site-header {
  background-color: var(--navy);
  width: 100%;
  padding: 16px var(--pad);
  text-align: center;
}

.site-header::after {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--navy),
    var(--orange) 50%,
    var(--navy)
  );
  margin-top: 8px;
  margin-left: calc(-1 * var(--pad));
  margin-right: calc(-1 * var(--pad));
}

.site-header img {
  height: 52px;
  width: auto;
  display: inline-block;
}

/* ===== HAUPT-CONTAINER ===== */
.container {
  padding: 28px var(--pad) 0;
}

/* ===== FOOTER – volle Breite ===== */
.site-footer {
  background-color: #333333;
  color: #cccccc;
  font-size: 14px;
  text-align: center;
  padding: 28px var(--pad);
  margin-top: 48px;
}

.site-footer a {
  color: var(--orange);
  text-decoration: none;
  margin: 0 10px;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer .footer-links {
  margin-top: 10px;
}

.site-footer .footer-copy {
  margin-top: 10px;
  font-size: 12px;
  color: #999999;
}

/* ===== TYPOGRAFIE ===== */
h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
}

h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 36px;
  margin-bottom: 4px;
}

h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 24px;
  margin-bottom: 8px;
}

h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 20px;
  margin-bottom: 6px;
}

p {
  margin-bottom: 14px;
  font-size: 16px;
}

ul, ol {
  margin-left: 22px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  font-size: 16px;
}

strong {
  color: var(--navy);
}

/* ===== TRENNLINIE ===== */
hr {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 16px 0;
}

/* ===== BILDER ===== */
img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 6px 0;
}

figcaption {
  font-style: italic;
  font-size: 13px;
  color: var(--gray-medium);
  margin-top: 6px;
  margin-bottom: 12px;
  text-align: left;
  padding-bottom: 6px;
  border-bottom: 1px solid #e0e0e0;

}

/* Hero-Image: volle Breite, kein Radius */
.hero-image {
  width: calc(100% + (2 * var(--pad)));
  max-width: calc(100% + (2 * var(--pad)));
  margin-left: calc(-1 * var(--pad));
  border-radius: 0;
  margin-top: 16px;
  margin-bottom: 16px;
}

/* ===== INTRO TEXT ===== */
.intro {
  font-size: 17px;
  line-height: 1.75;
  color: var(--navy-light);
  margin-bottom: 4px;
  padding: 8px 0 8px;
}

/* ===== BUTTON-ZENTRIERUNG ===== */
/* p-Tag der einen standalone cta-button enthält */
p:has(> .cta-button) {
  text-align: center;
}

/* ===== CTA BUTTON ===== */
.cta-button {
  display: inline-block;
  background: var(--orange-cta);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  margin-top: 20px;
  margin-bottom: 20px;
  transition: background 0.2s ease, transform 0.2s ease;
  text-align: center;
}

.cta-button:hover {
  background: #e55a28;
  transform: translateY(-2px);
}

.cta-button.secondary {
  background: var(--navy);
}

.cta-button.secondary:hover {
  background: var(--navy-light);
}

.cta-button.affiliate {
  background: linear-gradient(135deg, var(--orange-cta), #ff8c5a);
}

/* ===== NAVY SECTION – volle Breite ===== */
.navy-section {
  background: var(--navy);
  color: var(--white);
  padding: 32px var(--pad);
  margin: 32px calc(-1 * var(--pad));
}

.navy-section h2,
.navy-section h3,
.navy-section h4 {
  color: var(--white);
  margin-top: 0;
}

.navy-section p {
  color: rgba(255, 255, 255, 0.9);
}

.navy-section strong {
  color: var(--orange);
}

.navy-section .cta-button {
  margin-top: 20px;
}

/* ===== CTA BOX – volle Breite ===== */
.cta-box {
  background: var(--navy);
  color: var(--white);
  padding: 32px var(--pad);
  margin: 32px calc(-1 * var(--pad));
  text-align: center;
}

.cta-box h3 {
  color: var(--orange-cta);
  margin-top: 0;
}


.cta-box p {
  color: var(--white);
  font-size: 17px;
}

/* Button in CTA-Box: weiß mit schwarzem Text – klar lesbar auf Orange */
/*
.cta-box .cta-button {
  background: var(--white);
  color: #111111;
  margin-top: 20px;
  font-weight: 700;
}

.cta-box .cta-button:hover {
  background: var(--gray-light);
  color: #111111;
}*/

/* ===== QUOTE BOX ===== */
.quote-box {
  background: var(--gray-light);
  border-left: 4px solid var(--orange-cta);
  padding: 20px 24px;
  margin: 28px 0;
  border-radius: 0 8px 8px 0;
}

.quote-box p {
  font-size: 17px;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 0;
}

/* ===== INFO / WARNING / SUCCESS BOXEN ===== */
/* Gedämpfte Palette – passend zu Navy und Orange, keine grellen Farben */

/* Info: sehr helles Navy */
.info-box {
  background: #eef1f6;
  border-left: 4px solid var(--navy-light);
  padding: 18px 22px;
  margin: 24px 0;
  border-radius: 0 8px 8px 0;
}

.info-box strong { color: var(--navy); }

/* Warning: helles Amber – subtil orange */
.warning-box {
  background: #fdf5e4;
  border-left: 4px solid #c8882a;
  padding: 18px 22px;
  margin: 24px 0;
  border-radius: 0 8px 8px 0;
}

.warning-box strong { color: #a06820; }

/* Success: helles Salbei – zurückhaltend, kein knalliges Grün */
.success-box {
  background: #f0f4f0;
  border-left: 4px solid #6a9b6a;
  padding: 18px 22px;
  margin: 24px 0;
  border-radius: 0 8px 8px 0;
}

.success-box strong { color: #4a7a4a; }

/* ===== CARD ===== */
.card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* ===== FEATURE LIST ===== */
.feature-list {
  list-style: none;
  margin-left: 0;
}

.feature-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
  font-size: 18px;
}

/* ===== PREIS ===== */
.price {
  font-size: 48px;
  font-weight: 700;
  color: var(--orange-cta);
  margin: 20px 0 8px;
}

.price-subtitle {
  font-size: 15px;
  color: var(--gray-medium);
  margin-bottom: 20px;
}

/* ===== DESKTOP (ab 600px) ===== */
@media (min-width: 600px) {
  :root {
    --pad: 32px;
  }

  body {
    /* Kein padding nötig – der Container übernimmt es via --pad */
  }

  h1 { font-size: 34px; }
  h2 { font-size: 26px; }
  h3 { font-size: 21px; }

  .site-header img {
    height: 64px;
  }

  .cta-button {
    /* Auf Desktop nicht immer volle Breite */
    display: inline-block;
    width: auto;
  }

  /* Navy und CTA-Box auf Desktop: leichte abgerundete Ecken optional */
  .navy-section {
    border-radius: 0;
  }

  .cta-box {
    border-radius: 0;
  }
}