:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #e94560;
  --accent-hover: #ff6b6b;
  --text-dark: #0f0f0f;
  --text-light: #f5f5f5;
  --text-muted: #6c757d;
  --bg-light: #fafafa;
  --bg-cream: #f8f6f3;
  --bg-dark: #121212;
  --border-color: #e0e0e0;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background: #fff;
}

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

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

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

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

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

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

.btn-dark:hover {
  background: var(--secondary);
}

.btn-lg {
  padding: 18px 48px;
  font-size: 1.1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 15px 0;
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav a {
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
}

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

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: none;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 25px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--bg-cream) 0%, #fff 100%);
  padding-top: 80px;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 60px 0;
}

.hero-content {
  flex: 1;
}

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--primary);
}

.hero-title span {
  color: var(--accent);
}

.hero-text {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 35px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.hero-float {
  position: absolute;
  background: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.hero-float-1 {
  bottom: 40px;
  left: -30px;
}

.hero-float-2 {
  top: 40px;
  right: -20px;
}

.hero-float-icon {
  width: 45px;
  height: 45px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.hero-float-text {
  font-weight: 700;
  font-size: 1.1rem;
}

.hero-float-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Problem Section */
.problem-section {
  padding: 100px 0;
  background: var(--bg-dark);
  color: var(--text-light);
}

.problem-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.problem-item {
  flex: 1;
  min-width: 280px;
  padding: 35px;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  border-left: 4px solid var(--accent);
}

.problem-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.problem-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.problem-text {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

/* Story Section */
.story-section {
  padding: 120px 0;
  background: #fff;
}

.story-content {
  display: flex;
  gap: 80px;
  align-items: center;
}

.story-image {
  flex: 1;
  position: relative;
}

.story-image img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.story-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 3px solid var(--accent);
  border-radius: 20px;
  z-index: -1;
}

.story-text {
  flex: 1;
}

.story-label {
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.story-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2;
}

.story-para {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.story-highlight {
  background: var(--bg-cream);
  padding: 25px 30px;
  border-radius: 12px;
  border-left: 4px solid var(--accent);
  margin: 30px 0;
  font-style: italic;
  font-size: 1.1rem;
}

/* Trust Section */
.trust-section {
  padding: 80px 0;
  background: var(--bg-cream);
}

.trust-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
}

.trust-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.trust-label {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Testimonials */
.testimonials-section {
  padding: 100px 0;
  background: #fff;
}

.testimonials-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  flex: 1;
  min-width: 300px;
  background: var(--bg-light);
  padding: 40px;
  border-radius: 16px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
}

.testimonial-name {
  font-weight: 700;
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Benefits Section */
.benefits-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
}

.benefits-header {
  text-align: center;
  margin-bottom: 60px;
}

.benefits-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.benefits-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.benefit-card {
  flex: 1;
  min-width: 250px;
  padding: 35px;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
}

.benefit-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-5px);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.benefit-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.benefit-text {
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

/* Services/Pricing Section */
.services-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-grid {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1;
  min-width: 280px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.service-card.featured {
  border: 3px solid var(--accent);
  position: relative;
}

.service-card.featured::before {
  content: 'Beliebt';
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--accent);
  color: #fff;
  padding: 5px 40px;
  font-size: 0.8rem;
  font-weight: 600;
  transform: rotate(45deg);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-body {
  padding: 30px;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-desc {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 20px;
}

.price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

.price-period {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.service-features {
  margin-bottom: 25px;
}

.service-features li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border-color);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li::before {
  content: '\2713';
  color: var(--accent);
  font-weight: 700;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: var(--accent);
  color: #fff;
  text-align: center;
}

.cta-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn {
  background: #fff;
  color: var(--accent);
}

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

/* Form Section */
.form-section {
  padding: 100px 0;
  background: #fff;
}

.form-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.form-info {
  flex: 1;
}

.form-container {
  flex: 1;
  background: var(--bg-light);
  padding: 45px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary);
}

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

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

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

.form-submit {
  width: 100%;
  padding: 18px;
  font-size: 1.1rem;
}

.form-note {
  text-align: center;
  margin-top: 15px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Urgency Section */
.urgency-section {
  padding: 60px 0;
  background: var(--primary);
  color: #fff;
  text-align: center;
}

.urgency-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.urgency-icon {
  font-size: 3rem;
}

.urgency-text {
  font-size: 1.4rem;
  font-weight: 600;
}

.urgency-text span {
  color: var(--accent);
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 80px 0 30px;
}

.footer-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--accent);
}

.footer-desc {
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #fff;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

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

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 25px;
}

.footer-legal a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

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

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  animation: pulse 2s infinite;
}

.sticky-cta .btn {
  box-shadow: var(--shadow-lg);
  padding: 16px 30px;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: #fff;
  padding: 20px;
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
}

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

.cookie-actions {
  display: flex;
  gap: 15px;
}

.cookie-btn {
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
}

/* Page Header */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  text-align: center;
}

.page-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.page-subtitle {
  font-size: 1.1rem;
  opacity: 0.8;
}

/* About Page */
.about-section {
  padding: 80px 0;
}

.about-content {
  display: flex;
  gap: 60px;
  align-items: center;
}

.about-image {
  flex: 1;
}

.about-image img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 15px;
  line-height: 1.8;
}

.values-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.value-card {
  flex: 1;
  min-width: 250px;
  padding: 30px;
  background: var(--bg-light);
  border-radius: 16px;
  text-align: center;
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.value-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.value-text {
  color: var(--text-muted);
}

/* Contact Page */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: flex;
  gap: 60px;
}

.contact-info {
  flex: 1;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-label {
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--primary);
}

.contact-value {
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-form-wrapper {
  flex: 1;
}

/* Thanks Page */
.thanks-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-cream) 0%, #fff 100%);
}

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

.thanks-icon {
  width: 100px;
  height: 100px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 3rem;
  color: #fff;
}

.thanks-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--primary);
}

.thanks-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 35px;
  line-height: 1.8;
}

/* Legal Pages */
.legal-section {
  padding: 80px 0;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 35px 0 15px;
  color: var(--primary);
}

.legal-content p {
  color: var(--text-muted);
  margin-bottom: 15px;
  line-height: 1.8;
}

.legal-content ul {
  margin: 15px 0 15px 25px;
  list-style: disc;
}

.legal-content li {
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.7;
}

/* Mobile */
@media (max-width: 992px) {
  .nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-inner {
    flex-direction: column;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .story-content {
    flex-direction: column;
  }

  .form-wrapper {
    flex-direction: column;
  }

  .about-content {
    flex-direction: column;
  }

  .contact-grid {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-float {
    display: none;
  }

  .problem-grid {
    flex-direction: column;
  }

  .testimonials-grid {
    flex-direction: column;
  }

  .benefits-grid {
    flex-direction: column;
  }

  .services-grid {
    flex-direction: column;
  }

  .cta-title {
    font-size: 2rem;
  }

  .urgency-content {
    flex-direction: column;
    text-align: center;
  }

  .sticky-cta {
    bottom: 20px;
    right: 20px;
    left: 20px;
  }

  .sticky-cta .btn {
    width: 100%;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .btn-lg {
    padding: 16px 30px;
    font-size: 1rem;
  }

  .form-container {
    padding: 30px 20px;
  }
}
