:root {
  --primary: #8B4E6B;
  --primary-dark: #6B3A52;
  --primary-light: #A86B8A;
  --secondary: #F5E6D3;
  --accent: #D4A574;
  --text: #2D2D2D;
  --text-light: #5A5A5A;
  --bg: #FDFBF9;
  --bg-alt: #F8F4F0;
  --white: #FFFFFF;
  --border: #E8E0D8;
  --shadow: rgba(139, 78, 107, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
}

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

a:hover {
  color: var(--primary-dark);
}

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

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

/* Header */
header {
  background: var(--white);
  box-shadow: 0 2px 10px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo svg {
  width: 40px;
  height: 40px;
}

nav {
  display: none;
}

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

nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

nav a {
  color: var(--text);
  font-weight: 500;
  padding: 8px 0;
  display: block;
}

nav a:hover,
nav a.active {
  color: var(--primary);
}

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

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto 30px;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  padding: 12px 20px;
  border-radius: 8px;
}

.hero-feature svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

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

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

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

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

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

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

/* Sections */
section {
  padding: 60px 20px;
}

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

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

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.section-header.light h2 {
  color: var(--white);
}

.section-header p {
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.section-header.light p {
  color: rgba(255,255,255,0.9);
}

/* Cards */
.cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 30px;
  height: 30px;
  color: var(--primary);
}

.card h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.card p {
  color: var(--text-light);
  line-height: 1.7;
}

.card .price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 15px;
}

/* Feature Blocks */
.feature-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}

.feature-block:last-child {
  margin-bottom: 0;
}

.feature-content h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.feature-content p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.feature-visual {
  background: var(--secondary);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.feature-visual svg {
  width: 100px;
  height: 100px;
  color: var(--primary);
}

/* Stats */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.stat-item {
  text-align: center;
  padding: 25px;
  flex: 1;
  min-width: 140px;
}

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

.primary-bg .stat-number {
  color: var(--accent);
}

.stat-label {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-top: 8px;
  display: block;
}

.primary-bg .stat-label {
  color: rgba(255,255,255,0.9);
}

/* Testimonials */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.testimonial {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px var(--shadow);
  position: relative;
}

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

.testimonial p {
  color: var(--text);
  font-style: italic;
  margin-bottom: 20px;
  padding-top: 30px;
}

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

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

.author-info strong {
  display: block;
  color: var(--text);
}

.author-info span {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Quote Section */
.quote-section {
  background: var(--primary);
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
}

.quote-section blockquote {
  font-size: 1.5rem;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.quote-section cite {
  display: block;
  margin-top: 20px;
  font-size: 1rem;
  opacity: 0.9;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content h4 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.step-content p {
  color: var(--text-light);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

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

.faq-answer-inner {
  padding: 0 20px 20px;
  color: var(--text-light);
}

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

/* Benefits List */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: var(--secondary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.benefit-content h4 {
  color: var(--text);
  margin-bottom: 5px;
}

.benefit-content p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Contact Info */
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-block {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px var(--shadow);
}

.contact-info-block h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item-content strong {
  display: block;
  color: var(--text);
  margin-bottom: 3px;
}

.contact-item-content span,
.contact-item-content a {
  color: var(--text-light);
}

/* Industries */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.industry-tag {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 30px;
  padding: 12px 24px;
  font-size: 0.95rem;
  color: var(--text);
  transition: all 0.3s ease;
}

.industry-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Trust Indicators */
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  flex: 1;
  min-width: 150px;
}

.trust-item svg {
  width: 50px;
  height: 50px;
  color: var(--primary);
  margin-bottom: 15px;
}

.trust-item span {
  color: var(--text);
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, #C49463 100%);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}

.cta-section h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.cta-section p {
  opacity: 0.95;
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

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

/* Footer */
footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 50px 20px 30px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}

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

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

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

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

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

.footer-col p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 15px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 20px var(--shadow);
  padding: 20px;
  z-index: 9999;
  display: none;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cookie-content p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

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

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}

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

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

.btn-reject {
  background: var(--bg-alt);
  color: var(--text);
}

.btn-reject:hover {
  background: var(--border);
}

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

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

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal-overlay.active {
  display: flex;
}

.cookie-modal {
  background: var(--white);
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
}

.cookie-modal h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}

.cookie-option:last-of-type {
  border-bottom: none;
}

.cookie-option-info h4 {
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 5px;
}

.cookie-option-info p {
  color: var(--text-light);
  font-size: 0.85rem;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--border);
  border-radius: 26px;
  transition: 0.3s;
}

.toggle-slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--primary);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(24px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}

.cookie-modal-buttons .btn {
  flex: 1;
  min-width: 120px;
}

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

.page-header h1 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.page-header p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Content Pages */
.content-page {
  padding: 50px 20px;
}

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

.content-page h2:first-child {
  margin-top: 0;
}

.content-page h3 {
  color: var(--text);
  font-size: 1.2rem;
  margin: 25px 0 12px;
}

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

.content-page ul,
.content-page ol {
  color: var(--text-light);
  margin: 15px 0;
  padding-left: 25px;
}

.content-page li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.content-page .container {
  max-width: 800px;
}

/* Thank You Page */
.thank-you-section {
  text-align: center;
  padding: 100px 20px;
}

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

.thank-you-icon svg {
  width: 50px;
  height: 50px;
  color: var(--primary);
}

.thank-you-section h1 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 15px;
}

.thank-you-section p {
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Comparison Section */
.comparison-table {
  width: 100%;
  overflow-x: auto;
}

.comparison-row {
  display: flex;
  border-bottom: 1px solid var(--border);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-header {
  background: var(--primary);
  color: var(--white);
}

.comparison-cell {
  flex: 1;
  padding: 15px;
  min-width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.comparison-cell:first-child {
  justify-content: flex-start;
  text-align: left;
  font-weight: 600;
}

.comparison-cell svg {
  width: 20px;
  height: 20px;
}

.check-icon {
  color: #28a745;
}

.cross-icon {
  color: #dc3545;
}

/* Timeline / Milestones */
.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary);
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  margin-bottom: 35px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 5px;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--primary);
}

.timeline-date {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.timeline-item h4 {
  color: var(--text);
  margin-bottom: 8px;
}

.timeline-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Highlight Panel */
.highlight-panel {
  background: var(--secondary);
  border-left: 4px solid var(--primary);
  padding: 25px;
  border-radius: 0 8px 8px 0;
  margin: 30px 0;
}

.highlight-panel h4 {
  color: var(--primary);
  margin-bottom: 10px;
}

.highlight-panel p {
  color: var(--text);
  margin: 0;
}

/* Desktop Styles */
@media (min-width: 768px) {
  .header-inner {
    padding: 20px;
  }

  .menu-toggle {
    display: none;
  }

  nav {
    display: flex;
  }

  nav ul {
    flex-direction: row;
    gap: 30px;
  }

  .hero {
    padding: 100px 20px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-features {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  section {
    padding: 80px 20px;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1;
    min-width: 280px;
  }

  .feature-block {
    flex-direction: row;
    align-items: center;
  }

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

  .feature-content,
  .feature-visual {
    flex: 1;
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }

  .quote-section blockquote {
    font-size: 1.8rem;
  }

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

  .contact-info-block {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-col {
    flex: 1;
    max-width: 250px;
  }

  .cookie-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-content p {
    flex: 1;
    margin-right: 20px;
  }

  .page-header {
    padding: 80px 20px;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .thank-you-section {
    padding: 150px 20px;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.2rem;
  }

  .cards {
    gap: 30px;
  }

  .stat-number {
    font-size: 3rem;
  }
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

*:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}