/* ============================================
   Solar-Data Website — Stylesheet
   Reines CSS, Mobile-First, Custom Properties
   ============================================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* --- Custom Properties --- */
:root {
  --primary: #1B5E96;
  --primary-dark: #134A78;
  --primary-light: #E8F1F8;
  --accent: #F0961E;
  --accent-dark: #D4820F;
  --accent-light: #FFF4E6;
  --text: #1A1A2E;
  --text-light: #6B7280;
  --bg: #FFFFFF;
  --bg-alt: #F8FAFB;
  --border: #E5E7EB;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --max-width: 1200px;
  --header-height: 80px;
  --transition: 0.2s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4 {
  line-height: 1.3;
  font-weight: 700;
  color: var(--text);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p + p {
  margin-top: 1rem;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__header p {
  color: var(--text-light);
  margin-top: 0.75rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-light { color: var(--text-light); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  gap: 0.5rem;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn--small {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn--white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

.btn--white:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: var(--primary);
}

/* --- Header & Navigation --- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo img {
  height: 40px;
  width: auto;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 0.25rem 0;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__link:hover {
  color: var(--primary);
}

.nav__link--active {
  color: var(--primary);
  font-weight: 600;
}

.nav__cta {
  margin-left: 0.5rem;
}

/* Mobile Navigation */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 110;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
  position: relative;
}

.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

.nav__toggle span::before { top: -7px; }
.nav__toggle span::after { top: 7px; }

/* Toggle active state */
.nav__toggle.active span {
  background: transparent;
}

.nav__toggle.active span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav__toggle.active span::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .nav__toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    box-shadow: var(--shadow-lg);
    transition: right 0.3s ease;
    padding: calc(var(--header-height) + 1rem) 1.5rem 2rem;
    z-index: 105;
  }

  .nav.active {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .nav__link {
    display: block;
    padding: 0.75rem 0;
    width: 100%;
    font-size: 1.1rem;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
    text-align: center;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 104;
  }

  .nav-overlay.active {
    display: block;
  }
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom right, transparent 49.5%, var(--bg) 50%);
}

.hero__content {
  max-width: 700px;
}

.hero__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 0.375rem 1rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.25rem;
}

.hero p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- Page Hero (Unterseiten) --- */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 3rem 0 5rem;
  position: relative;
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to bottom right, transparent 49.5%, var(--bg) 50%);
}

.page-hero h1 {
  color: #fff;
}

.page-hero p {
  opacity: 0.9;
  margin-top: 0.5rem;
  max-width: 600px;
}

/* --- Feature Cards (3 Säulen) --- */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.feature-card__body {
  padding: 1.5rem;
}

.feature-card__body h3 {
  margin-bottom: 0.75rem;
}

.feature-card__body p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* --- Benefits / Vorteile --- */
.benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit {
  text-align: center;
  padding: 2rem 1.5rem;
}

.benefit__icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--primary);
}

.benefit h4 {
  margin-bottom: 0.5rem;
}

.benefit p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.cta-section p {
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section > .container > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.cta-section .btn {
  margin: 0;
}

/* --- Leistungen-Seite --- */
.service-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .service-block {
    grid-template-columns: 1fr 1fr;
  }

  .service-block--reverse .service-block__content {
    order: 2;
  }

  .service-block--reverse .service-block__media {
    order: 1;
  }
}

.service-block__content h2 {
  margin-bottom: 1rem;
}

.service-block__content p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.service-block__content ul {
  margin-top: 1rem;
}

.service-block__content li {
  padding: 0.375rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
}

.service-block__content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.service-block__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* --- Service Cards (Dienstleistungen) --- */
.service-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .service-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* --- Video Grid --- */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.video-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-card__player {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  background: #000;
}

.video-card__player video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-card__info {
  padding: 1.25rem;
}

.video-card__info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.video-card__info p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* --- Login Box (Geschützter Bereich) --- */
.login-box {
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.login-box h2 {
  margin-bottom: 0.5rem;
}

.login-box > p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* --- About / Über uns --- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 768px) {
  .about-intro {
    grid-template-columns: 2fr 1fr;
  }
}

.about-intro__text h2 {
  margin-bottom: 1rem;
}

.about-intro__text p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.about-intro__portrait {
  text-align: center;
}

.about-intro__portrait img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 280px;
  margin: 0 auto;
}

.about-intro__portrait figcaption {
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--text);
}

.about-intro__portrait figcaption span {
  display: block;
  font-weight: 400;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* --- FAQ Akkordeon --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 1.25rem 0;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item__answer {
  padding: 0 0 1.25rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* --- Kontakt --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 1.1rem;
}

.contact-info__text strong {
  display: block;
  margin-bottom: 0.25rem;
}

.contact-info__text span,
.contact-info__text a {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* --- Forms --- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.375rem;
  font-size: 0.95rem;
}

.form-group label .required {
  color: var(--accent);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27, 94, 150, 0.1);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 480px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-error {
  color: #DC2626;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.form-success {
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: #065F46;
  padding: 1rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.form-alert-error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #991B1B;
  padding: 1rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

/* Honeypot */
.ohnehonig {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* --- Footer --- */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 1.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer__brand img {
  height: 32px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--accent);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.7);
}

.footer__bottom a:hover {
  color: var(--accent);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  border-top: 3px solid var(--primary);
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem;
}

.cookie-banner__text {
  margin-bottom: 1rem;
}

.cookie-banner__text h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.cookie-banner__text p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.cookie-banner__text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-banner__actions .btn {
  font-size: 0.9rem;
  padding: 0.6rem 1.25rem;
}

/* Cookie Preferences */
.cookie-preferences {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.cookie-preferences.active {
  display: block;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.cookie-option:last-child {
  border-bottom: none;
}

.cookie-option__info strong {
  display: block;
  font-size: 0.95rem;
}

.cookie-option__info span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Toggle Switch */
.toggle {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--border);
  border-radius: 26px;
  transition: background 0.2s;
}

.toggle__slider::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  top: 3px;
  left: 3px;
  transition: transform 0.2s;
}

.toggle input:checked + .toggle__slider {
  background: var(--primary);
}

.toggle input:checked + .toggle__slider::before {
  transform: translateX(22px);
}

.toggle input:disabled + .toggle__slider {
  opacity: 0.6;
  cursor: not-allowed;
}

/* --- Impressum / Datenschutz --- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.legal-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.legal-content p {
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.legal-content ul {
  margin: 0.5rem 0 1rem 1.5rem;
  list-style: disc;
}

.legal-content li {
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

/* --- Misc --- */
.badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
}

.divider {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 2rem 0;
}

/* --- Animations --- */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Print --- */
@media print {
  .header,
  .footer,
  .cookie-banner,
  .nav__toggle {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
  }

  .hero,
  .page-hero,
  .cta-section {
    background: none !important;
    color: #000 !important;
    padding: 1rem 0;
  }

  .hero h1,
  .page-hero h1,
  .cta-section h2 {
    color: #000 !important;
  }
}
