/* Modern Landing Page Styles - Clean & Conversion-Focused */

/* Reset & Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  background: #f8f9fa;
  line-height: 1.6;
}

.landing-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Main Content */
.landing-main {
  flex: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  width: 100%;
}

/* Simple Brand Bar (Legacy - Kept for compatibility) */
.brand-bar-compact {
  text-align: center;
  margin-bottom: 16px;
}

.brand-link-compact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.brand-link-compact:hover {
  opacity: 0.8;
}

.brand-logo-compact {
  display: block;
}

.brand-name-compact {
  font-size: 1.1rem;
  font-weight: 700;
  color: #b71c1c;
  letter-spacing: 0.5px;
}

/* Responsive Brand Bar */
@media (min-width: 769px) {
  .brand-logo-compact {
    width: 48px;
    height: 32px;
  }
  
  .brand-name-compact {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .brand-bar-compact {
    margin-bottom: 12px;
  }
  
  .brand-name-compact {
    font-size: 1rem;
  }
}

/* Röd Header Panel */
.brand-header-red {
  background: #b71c1c;
  border-radius: 12px;
  padding: 16px 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(183, 28, 28, 0.2);
  text-align: center;
}

.brand-link-red {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.brand-link-red:hover {
  opacity: 0.9;
}

.brand-logo-red {
  display: block;
}

.brand-text-red {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.brand-name-red {
  margin: 0;
  font-family: 'Georgia', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #d4c04a;
  letter-spacing: 1px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
  line-height: 1.1;
}

.brand-subtitle-red {
  margin: 0.4em 0 0 0;
  font-size: 0.9rem;
  color: rgba(212, 192, 74, 0.95);
  font-style: italic;
  letter-spacing: 0.5px;
  text-shadow: 0px 1px 2px rgba(0,0,0,0.2);
}

/* Responsiv design för röd header */
@media (min-width: 769px) {
  .brand-logo-red {
    width: 52px;
    height: 35px;
  }
  
  .brand-name-red {
    font-size: 1.4rem;
  }
  
  .brand-subtitle-red {
    font-size: 1rem;
  }
  
  .brand-header-red {
    padding: 20px 32px;
  }
}

@media (max-width: 768px) {
  .brand-header-red {
    padding: 14px 20px;
  }
  
  .brand-name-red {
    font-size: 1.1rem;
  }
  
  .brand-subtitle-red {
    font-size: 0.85rem;
  }
  
  .brand-logo-red {
    width: 44px;
    height: 30px;
  }
}

/* Compact Breadcrumbs */
.breadcrumbs-compact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.breadcrumbs-compact a {
  color: #b71c1c;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumbs-compact a:hover {
  color: #8b0000;
  text-decoration: underline;
}

.breadcrumb-sep {
  color: #adb5bd;
}

/* Compact Hero Section */
.hero-compact {
  background: white;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.hero-trust-badge-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #495057;
}

.stars-compact {
  font-size: 1rem;
  letter-spacing: 1px;
}

.rating-compact {
  font-weight: 700;
  color: #333;
  font-size: 1.05rem;
}

.reviews-compact {
  color: #6c757d;
  font-size: 0.9rem;
}

.hero-title-compact {
  font-size: 1.8rem;
  font-weight: 700;
  color: #212529;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.hero-subtitle-compact {
  font-size: 1.05rem;
  color: #6c757d;
  margin: 0 0 24px 0;
  font-weight: 400;
}

.cta-hero-compact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #d4c04a;
  color: #333;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(212, 192, 74, 0.3);
}

.cta-hero-compact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 192, 74, 0.4);
  background: #e0d050;
}

.cta-hero-compact i {
  font-size: 1.1rem;
}

/* Content Cards */
.content-card {
  background: white;
  border-radius: 12px;
  padding: 28px 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.card-heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: #212529;
  margin: 0 0 20px 0;
}

/* Service Description */
.service-description-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #495057;
}

.service-description-text p {
  margin: 0 0 16px 0;
}

.service-description-text p:last-child {
  margin-bottom: 0;
}

/* Benefits List */
.benefits-list-compact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list-compact li {
  padding: 14px 16px 14px 48px;
  margin-bottom: 12px;
  background: #f8f9fa;
  border-radius: 8px;
  position: relative;
  font-size: 1rem;
  color: #495057;
  transition: all 0.2s;
}

.benefits-list-compact li:hover {
  background: #e9ecef;
  transform: translateX(4px);
}

.benefits-list-compact li:last-child {
  margin-bottom: 0;
}

.benefits-list-compact li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: #b71c1c;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
}

/* Pricing List */
.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.2s;
}

.pricing-item:hover {
  background: #e9ecef;
}

.pricing-duration {
  font-size: 1rem;
  color: #495057;
  font-weight: 500;
}

.pricing-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #b71c1c;
}

/* Contact Card */
.contact-subtitle {
  text-align: center;
  color: #6c757d;
  font-size: 0.95rem;
  margin: 0 0 20px 0;
}

.contact-methods-compact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-btn-compact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s;
  position: relative;
}

.whatsapp-compact {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-compact:hover {
  background: #1ea952;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.contact-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ffc107;
  color: #333;
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-row-compact {
  display: flex;
  gap: 12px;
}

.phone-compact {
  flex: 1;
  background: #f8f9fa;
  color: #495057;
  border: 2px solid #dee2e6;
}

.phone-compact:hover {
  background: white;
  border-color: #b71c1c;
  color: #b71c1c;
}

.sms-compact {
  flex: 1;
  background: #f8f9fa;
  color: #495057;
  border: 2px solid #dee2e6;
}

.sms-compact:hover {
  background: white;
  border-color: #007AFF;
  color: #007AFF;
}

.trust-signals-compact {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.trust-item-compact {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #6c757d;
}

.trust-item-compact i {
  color: #b71c1c;
  font-size: 0.95rem;
}

/* Sticky Bottom CTA */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 12px 20px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 99;
  display: none;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.sticky-cta-bar.visible {
  display: block;
}

.sticky-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  background: #d4c04a;
  color: #333;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(212, 192, 74, 0.3);
}

.sticky-cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(212, 192, 74, 0.4);
  background: #e0d050;
}

/* Responsive Design */
@media (max-width: 768px) {
  .landing-main {
    padding: 16px;
  }

  .hero-compact {
    padding: 24px 20px;
  }

  .hero-title-compact {
    font-size: 1.5rem;
  }

  .hero-subtitle-compact {
    font-size: 0.95rem;
  }

  .content-card {
    padding: 24px 20px;
  }

  .card-heading {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero-trust-badge-top {
    flex-direction: column;
    gap: 4px;
    font-size: 0.85rem;
  }

  .hero-title-compact {
    font-size: 1.35rem;
  }

  .cta-hero-compact {
    width: 100%;
    padding: 16px 24px;
    font-size: 1.1rem;
  }

  .contact-row-compact {
    flex-direction: column;
  }

  .trust-signals-compact {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}

/* Accessibility */
.cta-hero-compact:focus,
.contact-btn-compact:focus {
  outline: 3px solid #d4c04a;
  outline-offset: 2px;
}

/* Performance */
img {
  max-width: 100%;
  height: auto;
}

/* Print Styles */
@media print {
  .sticky-cta-bar {
    display: none;
  }

  .landing-main {
    max-width: 100%;
  }

  .content-card {
    box-shadow: none;
    border: 1px solid #dee2e6;
  }
}
