/* ===================================== */
/* BASIS                                 */
/* ===================================== */

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important;
  font-size: 16px;
  line-height: 1.6;
  color: #111827;
}

p {
  line-height: 1.7;
  color: #374151;
  margin-bottom: 18px;
}

.bkg-glass {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border: none !important;
}

footer a {
  color: #374151 !important;
}

footer a:hover {
  color: #7e8288 !important;
}

/* ===================================== */
/* TYPO                                  */
/* ===================================== */

h1 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
}

h2 {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 600;
}

h3 {
  font-size: 20px;
  font-weight: 600;
}

.lead {
  font-size: 20px;
  line-height: 1.6;
}

.text-small-light {
  font-size: 13px !important;
  opacity: 0.7;
}

/* ===================================== */
/* BUTTONS                               */
/* ===================================== */

button, .button {
  border-radius: 8px;
  font-weight: 600;
}

.button-gradient {
  background: linear-gradient(135deg, #0B5FFF, #0A1F44) !important;
  border: none !important;
  color: #fff !important;
}

.button-gradient:hover {
  background: linear-gradient(135deg, #0847C7, #081933) !important;
}

.button-hero {
  background: #ffffff;
  color: #111827;
  border: none;
  font-weight: 600;
}
.button-hero:hover {
  background: #f3f4f6;
}

/* ===================================== */
/* THEME COLORS                          */
/* ===================================== */

.bkg-theme {
  background-color: #0B5FFF;
  border-color: #0B5FFF;
}

.bkg-hover-theme:hover {
  background-color: #0847C7;
  border-color: #0847C7;
}

.border-theme {
  border-color: #0B5FFF;
}

.border-hover-theme:hover {
  border-color: #0847C7;
}

.color-theme {
  color: #0B5FFF;
}

.color-hover-theme:hover {
  color: #0847C7;
}

.bkg-theme-gradient {
  background: linear-gradient(135deg, #0B5FFF, #0A1F44);
}

.bkg-charcoal-gradient {
  background: linear-gradient(135deg, #222, #111);
}

/* ===================================== */
/* SECTIONS                              */
/* ===================================== */

.section-block {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.section-block.small {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.section-block p {
  font-size: 18px;
}

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

h1, h2, h3 {
  margin-bottom: 20px;
}

.box {
    border-radius: 8px;
}

/* ===================================== */
/* FEATURES                              */
/* ===================================== */

.feature-text p {
  margin-bottom: 12px;
}

.feature-content-inner {
  max-width: 520px;
}

.feature-column {
  padding: 20px;
}

/* ===================================== */
/* FORM FIX (Theme Override)             */
/* ===================================== */

.field-wrapper .border {
  display: none !important;
}

.field-wrapper {
  overflow: visible !important;
}

/* ===================================== */
/* STANDARD FORM                         */
/* ===================================== */

.contact-form-container {
  margin-top: 30px;
  background: #ffffff;
  padding: 30px;
    border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form-container .form-element:focus,
.signup-form-container .form-element:focus {
  border-color: #0B5FFF !important;
  box-shadow: 0 0 0 2px rgba(11,95,255,0.1);
}

/* ===================================== */
/* PRICING                               */
/* ===================================== */

.pricing-table-column {
  background: #fff;
    border-radius: 8px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.2s ease;
}

.pricing-table-column:hover {
  transform: translateY(-4px);
}

.pricing-table-column.callout {
  background: linear-gradient(135deg, #0B5FFF, #0A1F44);
  color: #fff;
    border-radius: 8px;
  box-shadow: 0 15px 40px rgba(11,95,255,0.25);
}

.pricing-table-price {
  margin: 12px 0 24px;
}

.pricing-table-price h4 {
  font-size: 48px;
  font-weight: 700;
}

.callout .pricing-table-price h4 {
  font-size: 52px;
}

.pricing-table-options li {
  margin-bottom: 10px;
  color: rgba(0,0,0,0.75);
}

.pricing-table {
  margin-top: 30px;
}

.pricing-label {
  color: #6B7280;
}

.pricing-label.color-white {
  color: rgba(255,255,255,0.9) !important;
}

.pricing-table-header h2 {
  color: #111827;
  margin-bottom: 6px;
}

/* ===================================== */
/* CTA FORM – FINAL (ISOLIERT)           */
/* ===================================== */

.cta-form .signup-form-container {
  max-width: 480px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
}

/* Input */
.cta-form input[type="email"] {
  width: 100%;
  padding: 18px 20px;
  border-radius: 8px !important;
  border: none !important;
  font-size: 16px;
  outline: none;
  margin-bottom: 16px;
  background: #fff;
  color: #111;
}

/* Placeholder */
.cta-form input::placeholder {
  color: #9ca3af;
}

/* Fokus */
.cta-form input:focus {
  box-shadow: 0 0 0 2px rgba(255,255,255,0.4);
}

/* Button */
.cta-form .form-submit {
  width: 100%;
  padding: 18px;
  border-radius: 8px !important;
  background: #fff !important;
  color: #111827 !important;
  font-weight: 600;
  border: none;
  transition: all 0.2s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Hover */
.cta-form .form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  background: #f3f4f6 !important;
}

/* Text darunter */
.cta-form .text-small-light {
  margin-top: 12px;
  opacity: 0.85;
  font-size: 13px;
}

/* ===================================== */
/* NAVIGATION                               */
/* ===================================== */

/* NAVIGATION GRÖSSER */
.header .navigation > ul > li > a {
  font-size: 17px !important;
  font-weight: 500;
}

/* Optional: etwas mehr Abstand */
.header .navigation > ul > li {
  margin-left: 20px;
}


/* ===== NAV UPGRADE ===== */

/* Mehr Ruhe + bessere Lesbarkeit */
.header .navigation > ul > li > a {
  font-size: 17px !important;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 10px 0;
}

/* Gleichmäßiger Abstand */
.header .navigation > ul > li {
  margin-left: 24px;
}

/* Hover Effekt (clean, nicht verspielt) */
.header .navigation > ul > li > a:hover {
  opacity: 0.7;
}

/* Aktiver Menüpunkt */
.header .navigation > ul > li.current > a {
  font-weight: 600;
  opacity: 1;
}

/* Optional: leichter Unterstrich beim Hover */
.header .navigation > ul > li > a::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: #0B5FFF;
  transition: width 0.2s ease;
  margin-top: 4px;
}

.header .navigation > ul > li > a:hover::after {
  width: 100%;
}

/* ===== KARTEN PREMIUM STYLE ===== */

.card-preview {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.card-preview:hover {
  transform: translateY(-4px);
}

.card-preview-wrapper {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Bild */
.card-preview-wrapper img {
  width: 100%;
  display: block;
  border-radius: 6px;
}

/* Glanz-Effekt (statisch) */
.card-preview-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 200%;
  height: 100%;

  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 30%,
    rgba(255,255,255,0.25) 50%,
    rgba(255,255,255,0) 70%
  );

  transform: skewX(-20deg);
  opacity: 0.15; /* Premium 0.15 oder Effekt 0.35 */
  pointer-events: none;

  transition: transform 0.6s ease, opacity 0.3s ease;
}

/* Hover: leicht anheben */
.card-preview-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Hover: Glanz bewegt sich leicht */
.card-preview-wrapper:hover::after {
  transform: translateX(40%) skewX(-20deg);
  opacity: 0.45;
}

/* ===================================== */
/* MOBILE HERO FIX                       */
/* ===================================== */

@media only screen and (max-width: 767px) {
  .feature-3.section-block {
    padding-top: 40px !important;
  }

  .feature-3 .feature-content-inner {
    padding-top: 0 !important;
  }

  .feature-3 h1 {
    margin-top: 0 !important;
  }

  .feature-3 h1 {
    margin-bottom: 10px !important;
  }

  .button-hero {
    margin-top: 10px !important;
  }
}