:root {
  --primary: #1f1f20;
  --secondary: rgb(234, 12, 12);
  --background: #F9FAFB;
  --text-primary: #111827;
  --text-secondary: #6B7280;
  --accent: rgb(65, 20, 70);
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter Tight', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--background);
  line-height: 1.6;
  font-size: 0.9375rem;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

h1 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: var(--space-md);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: var(--space-sm);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: var(--space-sm);
}

h4 {
  font-size: 1.125rem;
}

p {
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
}

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

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
}

.btn-primary {
  background: var(--secondary);
  color: white;
}

.btn-primary:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

header {
  position: relative;
  z-index: 1000;
  background: white;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) var(--space-md);
  min-height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.logo:hover {
  opacity: 0.8;
  color: var(--primary);
}

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

nav {
  display: none;
}

nav.active {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  box-shadow: var(--shadow-lg);
  animation: slideDown var(--transition-base);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

nav ul {
  list-style: none;
  padding: var(--space-md);
}

nav li {
  margin-bottom: var(--space-xs);
}

nav a {
  display: block;
  padding: var(--space-xs) var(--space-sm);
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all var(--transition-fast);
  border-radius: var(--radius-sm);
}

nav a:hover {
  background: var(--background);
  color: var(--secondary);
  padding-left: var(--space-md);
}

.burger {
  width: 28px;
  height: 20px;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.burger span {
  width: 100%;
  height: 2px;
  background: var(--primary);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, rgba(234, 12, 12, 0.03) 0%, rgba(65, 20, 70, 0.05) 100%);
}

.hero-content {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

.hero-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: white;
  border-radius: var(--radius-lg);
  font-size: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.hero-text h1 {
  margin-bottom: var(--space-sm);
}

.hero-text p {
  font-size: 1.0625rem;
  margin-bottom: var(--space-md);
}

section {
  padding: var(--space-xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-header h2 {
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--secondary);
}

.grid {
  display: grid;
  gap: var(--space-md);
}

.grid-2 {
  grid-template-columns: 1fr;
}

.grid-3 {
  grid-template-columns: 1fr;
}

.card {
  background: white;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid rgba(0,0,0,0.05);
}

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

.card-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: white;
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.card h3 {
  margin-bottom: var(--space-xs);
  font-size: 1.125rem;
}

.card p {
  font-size: 0.875rem;
  line-height: 1.7;
}

.feature-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-md);
}

.feature-img img {
  width: 100%;
  transition: transform var(--transition-slow);
}

.feature-img:hover img {
  transform: scale(1.05);
}

.pricing-card {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

.pricing-card:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}

.pricing-card.featured {
  border-color: var(--secondary);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured::before {
  content: 'Beliebt';
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--secondary);
  color: white;
  padding: 0.25rem 2.5rem;
  transform: rotate(45deg);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  margin: var(--space-sm) 0;
  font-family: var(--font-display);
}

.price span {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.features-list {
  list-style: none;
  margin: var(--space-md) 0;
  text-align: left;
}

.features-list li {
  padding: var(--space-xs) 0;
  color: var(--text-secondary);
  font-size: 0.875rem;
  position: relative;
  padding-left: 1.75rem;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

.contact-form {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.checkbox-group input[type="checkbox"] {
  margin-top: 0.25rem;
  width: auto;
}

.checkbox-group label {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.map-container {
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: var(--space-lg);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-info {
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.info-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: white;
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.info-content p {
  font-size: 0.875rem;
  margin-bottom: 0;
}

footer {
  background: var(--primary);
  color: white;
  padding: var(--space-lg) 0 var(--space-md);
  margin-top: var(--space-xl);
}

.footer-content {
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.footer-section h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.footer-section p,
.footer-section a {
  color: rgba(255,255,255,0.8);
  font-size: 0.8125rem;
  line-height: 1.8;
}

.footer-section a:hover {
  color: white;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-xs);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-md);
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.8125rem;
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: white;
  padding: var(--space-md);
  box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
  z-index: 2000;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.privacy-popup.show {
  transform: translateY(0);
}

.privacy-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
}

.privacy-content p {
  color: rgba(255,255,255,0.9);
  font-size: 0.8125rem;
  margin-bottom: 0;
}

.privacy-actions {
  display: flex;
  gap: var(--space-sm);
}

.privacy-actions .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg);
}

.thank-you-content {
  max-width: 600px;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: white;
  border-radius: 50%;
  font-size: 3rem;
  box-shadow: var(--shadow-lg);
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg);
}

.error-content {
  max-width: 600px;
}

.error-code {
  font-size: 8rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: var(--space-sm);
  font-family: var(--font-display);
}

@media (min-width: 768px) {
  nav {
    display: block;
    position: static;
    box-shadow: none;
    animation: none;
  }
  
  nav ul {
    display: flex;
    gap: var(--space-sm);
    padding: 0;
  }
  
  nav li {
    margin-bottom: 0;
  }
  
  nav a:hover {
    padding-left: var(--space-sm);
  }
  
  .burger {
    display: none;
  }
  
  .hero-content {
    grid-template-columns: auto 1fr;
  }
  
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact-info {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .privacy-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-lg);
  }
  
  section {
    padding: 5rem 0;
  }
  
  .hero {
    padding: 5rem 0;
  }
}
@media (max-width: 390px){
  h1{
    font-size: 1.3rem;
  }
  .section-header h2{
    font-size: 1.2rem;
  }
  h2{
    font-size: 1rem;
  }
  .logo{
    font-size: 0.9rem;
  }
}