.elementor-720 .elementor-element.elementor-element-fa40b8f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-908a30b *//* ===== CSS Variables ===== */
:root {
  --background: #ffffff;
  --foreground: #1e293b;
  --card: #ffffff;
  --card-foreground: #1e293b;
  --primary: #0c7bb3;
  --primary-foreground: #ffffff;
  --secondary: #2d8a4e;
  --secondary-foreground: #ffffff;
  --muted: #f4f5f7;
  --muted-foreground: #64748b;
  --accent: #f5a623;
  --accent-foreground: #1e293b;
  --destructive: #ef4444;
  --destructive-foreground: #ffffff;
  --border: #e2e8f0;
  --input: #e2e8f0;
  --ring: #0c7bb3;
  --radius: 0.75rem;
  
  --ekowelt-dark: #1e293b;
  --ekowelt-light: #f4faf5;
  
  --gradient-hero-overlay: linear-gradient(135deg, rgba(12, 48, 71, 0.85) 0%, rgba(22, 69, 40, 0.75) 100%);
  --gradient-cta: linear-gradient(135deg, #2d8a4e 0%, #0c7bb3 100%);
  --gradient-section: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  
  --shadow-card: 0 10px 40px -10px rgba(12, 123, 179, 0.15);
  --shadow-button: 0 4px 20px -4px rgba(45, 138, 78, 0.4);
  
  --font-sans: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Open Sans', system-ui, sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ===== Container ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  height: 3rem;
  width: auto;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--foreground);
}

.btn-cta-header {
  background: var(--gradient-cta);
  color: var(--primary-foreground);
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-cta-header:hover {
  box-shadow: 0 10px 25px -5px rgba(45, 138, 78, 0.4);
  transform: scale(1.02);
}

@media (min-width: 768px) {
  .header-container {
    height: 5rem;
  }
  
  .logo {
    height: 3.5rem;
  }
  
  .nav-desktop {
    display: flex;
  }
}

/* ===== Hero Section ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-video-container {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 50%;
  width: 300%;
  height: 100vh;
  transform: translateX(-50%);
  pointer-events: none;
  border: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-overlay);
  z-index: 10;
}

.hero-content {
  position: relative;
  z-index: 20;
  padding: 2rem 0 4rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: flex-start;
}

.hero-text {
  padding-top: 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(45, 138, 78, 0.2);
  border: 1px solid rgba(45, 138, 78, 0.3);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--secondary);
  animation: pulse 2s infinite;
}

.badge-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.hero-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.text-accent {
  color: var(--accent);
}

.text-secondary {
  color: var(--secondary);
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.hero-description strong {
  color: #ffffff;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
}

.feature-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--secondary);
}

@media (min-width: 768px) {
  .hero-section {
    padding-top: 6rem;
  }
  
  .hero-video {
    width: 200%;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-description {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 4rem 0;
  }
  
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  
  .hero-text {
    padding-top: 0.5rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
}

/* ===== Form Card ===== */
.form-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.form-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-warning {
  font-size: 0.875rem;
  color: var(--destructive);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--input);
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-foreground);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: transparent;
  box-shadow: 0 0 0 2px var(--secondary);
}

.form-group textarea {
  resize: none;
}

.btn-submit {
  width: 100%;
  background: var(--gradient-cta);
  color: var(--primary-foreground);
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: var(--shadow-button);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-submit:hover:not(:disabled) {
  box-shadow: 0 10px 25px -5px rgba(45, 138, 78, 0.4);
  transform: scale(1.01);
}

.btn-submit:active:not(:disabled) {
  transform: scale(0.99);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-loading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.spinner {
  width: 1.25rem;
  height: 1.25rem;
  animation: spin 1s linear infinite;
}

.spinner-track {
  opacity: 0.25;
}

.spinner-path {
  opacity: 0.75;
}

.form-disclaimer {
  font-size: 0.75rem;
  text-align: center;
  color: var(--muted-foreground);
}

.countdown-wrapper {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .form-card {
    padding: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
  
  .form-title {
    font-size: 1.5rem;
  }
}

/* ===== Countdown ===== */
.countdown {
  text-align: center;
}

.countdown-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.countdown-title.light {
  color: #ffffff;
}

.countdown-units {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-value {
  background: var(--ekowelt-dark);
  color: #ffffff;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  animation: countdown-pulse 1s ease-in-out infinite;
}

.countdown-value.dark {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.countdown-label {
  font-size: 0.625rem;
  color: var(--muted-foreground);
  margin-top: 0.375rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.countdown-label.light {
  color: rgba(255, 255, 255, 0.7);
}

.countdown-warning {
  font-size: 0.75rem;
  color: var(--destructive);
  margin-top: 0.75rem;
  font-weight: 500;
}

.countdown-warning.light {
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
  .countdown-units {
    gap: 1rem;
  }
  
  .countdown-value {
    width: 4rem;
    height: 4rem;
    font-size: 1.5rem;
  }
}

/* ===== Section Styles ===== */
.section-header {
  max-width: 48rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-tag {
  display: inline-block;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-tag.primary {
  color: var(--primary);
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.2;
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  font-family: var(--font-body);
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 4rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
}

/* ===== About Section ===== */
.about-section {
  padding: 5rem 0 7rem;
  background: var(--gradient-section);
}

.about-grid {
  display: grid;
  gap: 3rem;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.info-card.solution {
  border-color: rgba(45, 138, 78, 0.2);
}

.info-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.info-icon.danger {
  background: rgba(239, 68, 68, 0.1);
  color: var(--destructive);
}

.info-icon.success {
  background: rgba(45, 138, 78, 0.1);
  color: var(--secondary);
}

.info-card p {
  color: var(--muted-foreground);
  font-family: var(--font-body);
  line-height: 1.7;
}

.benefits-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.benefit-item:hover {
  border-color: rgba(45, 138, 78, 0.3);
  box-shadow: var(--shadow-card);
}

.benefit-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: rgba(45, 138, 78, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.benefit-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--secondary);
  transition: color 0.3s;
}

.benefit-item:hover .benefit-icon {
  background: var(--secondary);
}

.benefit-item:hover .benefit-icon svg {
  color: #ffffff;
}

.benefit-item span {
  font-weight: 500;
  color: var(--foreground);
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

/* ===== Visit Section ===== */
.visit-section {
  padding: 5rem 0 7rem;
  background: var(--ekowelt-light);
}

.seals-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.seal {
  height: 5rem;
  width: auto;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.seal:hover {
  filter: grayscale(0%);
}

.seal.seal-smaller {
  height: 4rem;
}

.visit-features {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.visit-feature {
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.visit-feature:hover {
  border-color: rgba(12, 123, 179, 0.3);
  box-shadow: var(--shadow-card);
}

.visit-feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: rgba(12, 123, 179, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s;
}

.visit-feature-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
  transition: color 0.3s;
}

.visit-feature:hover .visit-feature-icon {
  background: var(--primary);
}

.visit-feature:hover .visit-feature-icon svg {
  color: #ffffff;
}

.visit-feature h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.visit-feature p {
  color: var(--muted-foreground);
  font-family: var(--font-body);
}

.visit-steps-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  margin-bottom: 3rem;
}

.visit-steps-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  text-align: center;
}

.visit-steps {
  display: grid;
  gap: 1rem;
}

.visit-step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--muted);
  border-radius: 0.5rem;
}

.step-number {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--secondary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.visit-step span:last-child {
  color: var(--foreground);
  font-family: var(--font-body);
}

.map-container {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.map-header {
  background: var(--card);
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.map-pin-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--destructive);
}

.map-header span {
  font-weight: 600;
  color: var(--foreground);
}

.map-link {
  display: block;
  position: relative;
}

.map-cta {
  text-align: center;
  padding: 0.75rem;
  background: var(--card);
  color: var(--primary);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.map-link:hover .map-cta {
  background: rgba(12, 123, 179, 0.05);
}

@media (min-width: 768px) {
  .seal {
    height: 6rem;
  }
  
  .seal.seal-smaller {
    height: 5rem;
  }
  
  .visit-features {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .visit-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Process Section ===== */
.process-section {
  padding: 5rem 0 7rem;
  background: var(--background);
}

.process-steps {
  display: grid;
  gap: 1.5rem;
}

.process-step {
  position: relative;
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.process-step:hover {
  border-color: rgba(45, 138, 78, 0.3);
  box-shadow: var(--shadow-card);
}

.process-step-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.process-step-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: rgba(45, 138, 78, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.process-step-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--secondary);
  transition: color 0.3s;
}

.process-step:hover .process-step-icon {
  background: var(--secondary);
}

.process-step:hover .process-step-icon svg {
  color: #ffffff;
}

.step-badge {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-family: var(--font-body);
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== Social Proof Section ===== */
.social-proof-section {
  padding: 5rem 0 7rem;
  background: var(--gradient-section);
}

.highlights {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.highlight-card {
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.highlight-card:hover {
  border-color: rgba(12, 123, 179, 0.3);
  box-shadow: var(--shadow-card);
}

.highlight-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: rgba(12, 123, 179, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s;
}

.highlight-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
  transition: color 0.3s;
}

.highlight-card:hover .highlight-icon {
  background: var(--primary);
}

.highlight-card:hover .highlight-icon svg {
  color: #ffffff;
}

.highlight-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.highlight-card p {
  color: var(--muted-foreground);
  font-family: var(--font-body);
}

.testimonials {
  display: grid;
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1.5rem 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
}

.testimonial-card blockquote {
  font-size: 1.125rem;
  color: var(--foreground);
  font-family: var(--font-body);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--muted-foreground);
}

.author-name {
  font-weight: 600;
  color: var(--foreground);
}

.author-company {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .highlights {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== FAQ Section ===== */
.faq-section {
  padding: 5rem 0 7rem;
  background: var(--background);
}

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item.active {
  border-color: rgba(45, 138, 78, 0.3);
  box-shadow: var(--shadow-card);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  color: var(--foreground);
  text-align: left;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--secondary);
}

.faq-chevron {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted-foreground);
  font-family: var(--font-body);
  line-height: 1.7;
}

/* ===== Final CTA Section ===== */
.final-cta-section {
  padding: 5rem 0 7rem;
  background: var(--ekowelt-dark);
  position: relative;
  overflow: hidden;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-container {
  position: relative;
  z-index: 10;
}

.cta-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  margin-bottom: 1.5rem;
  color: var(--destructive);
  font-size: 0.875rem;
  font-weight: 500;
}

.cta-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--destructive);
  animation: pulse 2s infinite;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.cta-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-countdown {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-cta-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-cta);
  color: #ffffff;
  padding: 1.25rem 2.5rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: var(--shadow-button);
  transition: all 0.3s;
}

.btn-cta-large:hover {
  box-shadow: 0 10px 30px -5px rgba(45, 138, 78, 0.5);
  transform: scale(1.02);
}

.btn-cta-large:active {
  transform: scale(0.98);
}

.cta-note {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.25rem;
  }
  
  .cta-description {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 3rem;
  }
}

/* ===== Footer ===== */
.footer {
  background: var(--muted);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.footer-brand {
  text-align: center;
}

.footer-logo {
  height: 3rem;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-family: var(--font-body);
}

.footer-seals {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.footer-seal {
  height: 3.5rem;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer-seal:hover {
  opacity: 1;
}

.footer-seal.smaller {
  height: 3rem;
}

.footer-contact {
  text-align: center;
}

.footer-contact p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-family: var(--font-body);
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: var(--primary);
  font-weight: 500;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--secondary);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-family: var(--font-body);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr auto 1fr;
  }
  
  .footer-brand {
    text-align: left;
  }
  
  .footer-logo {
    margin-left: 0;
    margin-right: auto;
  }
  
  .footer-contact {
    text-align: right;
  }
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 24rem;
  transform: translateX(calc(100% + 2rem));
  opacity: 0;
  transition: all 0.3s ease-out;
  z-index: 100;
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast-content {
  flex: 1;
}

.toast-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.toast-message {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-family: var(--font-body);
}

.toast-close {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  line-height: 1;
  padding: 0.25rem;
  transition: color 0.2s;
}

.toast-close:hover {
  color: var(--foreground);
}

/* ===== Animations ===== */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes countdown-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-fade-in-up {
  animation: fade-in-up 0.6s ease-out forwards;
}

.stagger-2 {
  animation-delay: 0.2s;
}/* End custom CSS */