:root {
  --primary: #1a3a5c;
  --secondary: #2d6a4f;
  --accent: #d4a03b;
  --light: #f8f9fa;
  --dark: #1a1a2e;
  --text: #2c3e50;
  --muted: #6c757d;
  --white: #ffffff;
  --gradient-1: linear-gradient(135deg, #1a3a5c 0%, #2d6a4f 100%);
  --gradient-2: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

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

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

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

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

/* Navigation */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

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

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

.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
  padding: 5px 0;
}

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

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

.nav-cta {
  background: var(--gradient-1);
  color: var(--white) !important;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-1);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(212,160,59,0.15) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-text {
  flex: 1;
  color: var(--white);
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 25px;
}

.hero-text p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 35px;
  max-width: 500px;
}

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

.hero-image {
  width: 100%;
  max-width: 500px;
  height: 400px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-image svg {
  width: 80%;
  height: 80%;
  opacity: 0.8;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background: #e5b04c;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--dark);
}

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

.btn-secondary:hover {
  background: var(--light);
  transform: translateY(-3px);
}

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

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

.btn-large {
  padding: 20px 48px;
  font-size: 1.1rem;
}

/* Sections */
.section {
  padding: 100px 0;
}

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

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-gradient {
  background: var(--gradient-1);
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header p {
  margin-top: 20px;
  font-size: 1.1rem;
  color: var(--muted);
}

.section-label {
  display: inline-block;
  background: rgba(26,58,92,0.1);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Problem Section */
.problem-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.problem-card {
  flex: 1;
  min-width: 280px;
  background: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid #e74c3c;
  transition: all 0.3s ease;
}

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

.problem-card h3 {
  margin-bottom: 15px;
  color: #c0392b;
}

/* Story Section */
.story-block {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 80px;
}

.story-block:nth-child(even) {
  flex-direction: row-reverse;
}

.story-text {
  flex: 1;
}

.story-visual {
  flex: 1;
}

.story-image {
  width: 100%;
  height: 350px;
  background: var(--gradient-2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.story-image svg {
  width: 60%;
  height: 60%;
  opacity: 0.7;
}

/* Trust Elements */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding: 50px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

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

.trust-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

.trust-label {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Testimonials */
.testimonial-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

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

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

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

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

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

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

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

/* Services/Pricing */
.pricing-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.pricing-card {
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

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

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

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

.pricing-header {
  padding: 40px 30px 30px;
  background: var(--gradient-1);
  color: var(--white);
  text-align: center;
}

.pricing-header h3 {
  color: var(--white);
  margin-bottom: 10px;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.8;
}

.pricing-body {
  padding: 30px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--secondary);
  font-weight: 700;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* Benefits */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.benefit-item {
  flex: 1;
  min-width: 250px;
  display: flex;
  gap: 20px;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: var(--gradient-1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

.benefit-content h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

/* Form Section */
.form-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -50%;
  width: 200%;
  height: 300%;
  background: radial-gradient(ellipse, rgba(212,160,59,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.form-wrapper {
  display: flex;
  gap: 80px;
  align-items: center;
}

.form-content {
  flex: 1;
  color: var(--white);
}

.form-content h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.form-content p {
  opacity: 0.8;
  font-size: 1.1rem;
}

.form-container {
  flex: 1;
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(26,58,92,0.1);
}

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

.form-container .btn {
  width: 100%;
  justify-content: center;
  padding: 18px;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 15px 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 999;
  display: none;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.sticky-cta.visible {
  display: flex;
}

.sticky-cta p {
  font-weight: 600;
}

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

.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.05rem;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 30px 25px;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

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

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

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

.footer-col h4 {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

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

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  margin-bottom: 20px;
  display: inline-block;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  background: var(--white);
  padding: 25px 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  display: none;
}

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

.cookie-banner h4 {
  margin-bottom: 10px;
}

.cookie-banner p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 20px;
}

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

.cookie-buttons .btn {
  padding: 12px 24px;
  font-size: 0.9rem;
}

/* Thanks Page */
.thanks-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--gradient-1);
  padding: 40px 20px;
}

.thanks-content {
  background: var(--white);
  padding: 60px 80px;
  border-radius: 24px;
  max-width: 600px;
  box-shadow: var(--shadow-lg);
}

.thanks-icon {
  width: 100px;
  height: 100px;
  background: var(--secondary);
  border-radius: 50%;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-icon svg {
  width: 50px;
  height: 50px;
  stroke: var(--white);
  stroke-width: 3;
  fill: none;
}

.thanks-content h1 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.thanks-content p {
  color: var(--muted);
  margin-bottom: 30px;
}

/* Page Headers */
.page-header {
  background: var(--gradient-1);
  padding: 140px 0 80px;
  text-align: center;
  color: var(--white);
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 15px;
}

.page-header p {
  opacity: 0.8;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Content Pages */
.content-page {
  padding: 80px 0;
}

.content-page h2 {
  margin: 40px 0 20px;
}

.content-page h3 {
  margin: 30px 0 15px;
}

.content-page p {
  margin-bottom: 15px;
}

.content-page ul {
  margin: 20px 0;
  padding-left: 30px;
}

.content-page ul li {
  margin-bottom: 10px;
}

/* Contact Page */
.contact-grid {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-form-wrap {
  flex: 1.5;
  min-width: 350px;
}

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

.contact-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--gradient-1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

.contact-details h4 {
  margin-bottom: 5px;
}

.contact-details p {
  color: var(--muted);
}

/* Services Page Cards */
.services-full-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-full-card {
  display: flex;
  gap: 50px;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.service-full-card:nth-child(even) {
  flex-direction: row-reverse;
}

.service-full-image {
  flex: 1;
  min-height: 300px;
  background: var(--gradient-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-full-image svg {
  width: 50%;
  height: 50%;
  opacity: 0.6;
}

.service-full-content {
  flex: 1.5;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-full-content h3 {
  margin-bottom: 15px;
}

.service-full-content p {
  color: var(--muted);
  margin-bottom: 20px;
}

.service-price-tag {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 25px;
}

/* Inline CTA */
.inline-cta {
  background: var(--gradient-1);
  padding: 60px;
  border-radius: 20px;
  text-align: center;
  color: var(--white);
  margin: 40px 0;
}

.inline-cta h3 {
  color: var(--white);
  margin-bottom: 15px;
}

.inline-cta p {
  opacity: 0.9;
  margin-bottom: 25px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Urgency Banner */
.urgency-banner {
  background: #c0392b;
  color: var(--white);
  text-align: center;
  padding: 15px 20px;
  font-weight: 600;
}

/* About Page */
.about-hero {
  display: flex;
  gap: 60px;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  height: 400px;
  background: var(--gradient-2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.value-card {
  flex: 1;
  min-width: 250px;
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-1);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 35px;
  height: 35px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content,
  .story-block,
  .story-block:nth-child(even),
  .form-wrapper,
  .about-hero {
    flex-direction: column;
  }

  .service-full-card,
  .service-full-card:nth-child(even) {
    flex-direction: column;
  }

  .hero-visual {
    order: -1;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    box-shadow: var(--shadow-md);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .nav-links a {
    display: block;
    padding: 15px 0;
  }

  .hamburger {
    display: flex;
  }

  .form-container {
    padding: 30px;
  }

  .thanks-content {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .trust-bar {
    gap: 30px;
  }

  .footer-grid {
    gap: 40px;
  }

  .pricing-card {
    min-width: 100%;
  }

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

@media (max-width: 480px) {
  .btn {
    padding: 14px 28px;
  }

  .btn-large {
    padding: 16px 32px;
    font-size: 1rem;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 20px;
  }

  .cookie-buttons {
    flex-direction: column;
  }
}
