/* ===================================
   HyperFinis - Warm & Friendly Design
   CSS Reset & Base Styles
   =================================== */

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

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

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #2c2c2c;
  background-color: #fff9f5;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ===================================
   Typography
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #d97757;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #4a4a4a;
}

strong {
  font-weight: 600;
  color: #2c2c2c;
}

/* ===================================
   Container & Layout
   =================================== */

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===================================
   Buttons
   =================================== */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(217, 119, 87, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, #e8956f 0%, #d97757 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d97757 0%, #c76648 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 119, 87, 0.3);
}

.btn-secondary {
  background: #ffffff;
  color: #d97757;
  border: 2px solid #d97757;
  box-shadow: 0 4px 12px rgba(217, 119, 87, 0.15);
}

.btn-secondary:hover {
  background: #d97757;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 119, 87, 0.25);
}

.btn-link {
  color: #d97757;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: #c76648;
  gap: 12px;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 18px;
}

/* ===================================
   Header & Navigation
   =================================== */

header {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: center;
}

.nav-menu li a {
  font-size: 16px;
  font-weight: 500;
  color: #4a4a4a;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: #d97757;
  background: #fff3ed;
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ===================================
   Mobile Menu
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #e8956f 0%, #d97757 100%);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(217, 119, 87, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(217, 119, 87, 0.5);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #fff9f5 0%, #ffffff 100%);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #ffffff;
  color: #d97757;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #d97757;
  color: #ffffff;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav a {
  display: block;
  padding: 16px 20px;
  color: #4a4a4a;
  font-size: 18px;
  font-weight: 500;
  border-radius: 16px;
  transition: all 0.3s ease;
  background: #ffffff;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, #e8956f 0%, #d97757 100%);
  color: #ffffff;
  transform: translateX(8px);
}

/* ===================================
   Hero Sections
   =================================== */

.hero {
  background: linear-gradient(135deg, #fff3ed 0%, #ffe5d9 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 40px 40px;
  margin-bottom: 60px;
}

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

.hero h1 {
  font-size: 56px;
  color: #d97757;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.hero-subtitle {
  font-size: 20px;
  color: #6a6a6a;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ===================================
   Category Hero
   =================================== */

.category-hero {
  background: linear-gradient(135deg, #fff3ed 0%, #ffe5d9 100%);
  padding: 60px 20px 80px;
  text-align: center;
  border-radius: 0 0 40px 40px;
  margin-bottom: 60px;
}

.category-hero .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.category-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
}

.breadcrumb {
  text-align: left;
  margin-bottom: 24px;
  font-size: 14px;
  color: #6a6a6a;
}

.breadcrumb a {
  color: #d97757;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #c76648;
}

/* ===================================
   Cards & Grid Layouts
   =================================== */

.categories-grid,
.services-grid,
.subcategories-grid,
.articles-grid,
.stats-grid,
.testimonials-grid,
.content-cards,
.options-grid,
.rights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.category-card,
.service-card,
.subcategory-card,
.article-card,
.stat-item,
.testimonial-card,
.content-card,
.option-card,
.right-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 280px;
  min-width: 280px;
  position: relative;
}

.category-card:hover,
.service-card:hover,
.subcategory-card:hover,
.article-card:hover,
.content-card:hover,
.option-card:hover,
.right-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(217, 119, 87, 0.2);
}

.category-card img,
.service-card img,
.right-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
}

.category-card h3,
.service-card h3,
.subcategory-card h3,
.article-card h3 {
  color: #d97757;
  font-size: 22px;
}

.card-link {
  color: #d97757;
  font-weight: 600;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.card-link:hover {
  gap: 12px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #d97757;
  margin-top: auto;
}

.price-large {
  font-size: 32px;
  font-weight: 700;
  color: #d97757;
  margin: 24px 0;
  text-align: center;
}

/* ===================================
   Statistics Section
   =================================== */

.statistics {
  background: linear-gradient(135deg, #fff3ed 0%, #ffe5d9 100%);
  padding: 60px 20px;
  border-radius: 40px;
  margin: 60px 0;
  text-align: center;
}

.stat-item {
  background: #ffffff;
  text-align: center;
  padding: 40px 24px;
  flex: 1 1 200px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #d97757;
  margin-bottom: 8px;
  font-family: 'Orbitron', sans-serif;
}

/* ===================================
   Testimonials
   =================================== */

.testimonials {
  background: #ffffff;
  padding: 60px 20px;
  margin: 60px 0;
  border-radius: 40px;
}

.testimonial-card {
  background: #fff9f5;
  border-left: 4px solid #d97757;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1 1 400px;
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: #2c2c2c;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
}

.testimonial-author strong {
  color: #2c2c2c;
  font-size: 16px;
}

.testimonial-author span {
  color: #6a6a6a;
  font-size: 14px;
}

.rating {
  color: #ffa726;
  font-size: 20px;
  letter-spacing: 2px;
}

/* ===================================
   Featured Sections
   =================================== */

.featured-categories,
.services-preview,
.featured-article {
  padding: 60px 20px;
}

.featured-categories h2,
.services-preview h2,
.featured-article h2 {
  text-align: center;
  margin-bottom: 40px;
}

.cta-center {
  text-align: center;
  margin-top: 48px;
}

/* ===================================
   Article Cards
   =================================== */

.article-featured {
  background: linear-gradient(135deg, #fff3ed 0%, #ffe5d9 100%);
  padding: 48px;
  border-radius: 24px;
  max-width: 900px;
  margin: 0 auto 60px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.article-meta {
  color: #6a6a6a;
  font-size: 14px;
  margin-bottom: 16px;
}

.excerpt {
  font-size: 18px;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 24px 0;
}

.category-badge {
  display: inline-block;
  background: #d97757;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* ===================================
   Filter & Search
   =================================== */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0;
  align-items: center;
  justify-content: space-between;
}

.filter-select,
.search-input {
  padding: 12px 20px;
  border: 2px solid #ffe5d9;
  border-radius: 24px;
  font-size: 16px;
  background: #ffffff;
  color: #4a4a4a;
  transition: all 0.3s ease;
}

.filter-select:focus,
.search-input:focus {
  outline: none;
  border-color: #d97757;
  box-shadow: 0 0 0 4px rgba(217, 119, 87, 0.1);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
  justify-content: center;
}

.filter-tab {
  padding: 12px 24px;
  border-radius: 24px;
  background: #ffffff;
  color: #4a4a4a;
  font-weight: 500;
  border: 2px solid #ffe5d9;
  transition: all 0.3s ease;
}

.filter-tab:hover,
.filter-tab.active {
  background: linear-gradient(135deg, #e8956f 0%, #d97757 100%);
  color: #ffffff;
  border-color: #d97757;
  transform: translateY(-2px);
}

/* ===================================
   Tags & Topics
   =================================== */

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  justify-content: center;
}

.topic-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #ffffff;
  color: #4a4a4a;
  border-radius: 24px;
  border: 2px solid #ffe5d9;
  font-weight: 500;
  transition: all 0.3s ease;
}

.topic-tag:hover {
  background: linear-gradient(135deg, #fff3ed 0%, #ffe5d9 100%);
  border-color: #d97757;
  transform: translateY(-2px);
}

.topic-tag span {
  background: #d97757;
  color: #ffffff;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.article-count {
  display: block;
  color: #6a6a6a;
  font-size: 14px;
  margin-top: 8px;
}

/* ===================================
   Course & Service Details
   =================================== */

.service-card-detailed {
  background: #ffffff;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
}

.service-features ul,
.curriculum-preview,
.benefits-checklist ul,
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.service-features li,
.curriculum-preview li,
.benefits-checklist li,
.benefits-list li {
  padding-left: 32px;
  position: relative;
  color: #4a4a4a;
  line-height: 1.6;
}

.service-features li:before,
.curriculum-preview li:before,
.benefits-checklist li:before,
.benefits-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #d97757;
  font-weight: 700;
  font-size: 18px;
}

.course-info,
.workshop-info,
.ebook-details,
.consultation-details {
  background: #fff9f5;
  padding: 24px;
  border-radius: 16px;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ===================================
   Pricing Tiers
   =================================== */

.pricing-tiers {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.tier {
  flex: 1 1 250px;
  background: #ffffff;
  border: 2px solid #ffe5d9;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.tier:hover,
.tier.recommended {
  border-color: #d97757;
  box-shadow: 0 8px 24px rgba(217, 119, 87, 0.2);
  transform: scale(1.05);
}

.tier-price {
  font-size: 32px;
  font-weight: 700;
  color: #d97757;
  margin: 16px 0;
}

.savings {
  display: inline-block;
  background: #d97757;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
}

.trial-info,
.trial-notice,
.privacy-notice,
.form-note {
  text-align: center;
  color: #6a6a6a;
  font-size: 14px;
  margin-top: 16px;
}

/* ===================================
   Forms
   =================================== */

.newsletter-form,
.form-container {
  max-width: 600px;
  margin: 32px auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.newsletter-form {
  flex-direction: row;
  gap: 12px;
}

.email-input,
.input-field,
.textarea-field,
.select-field {
  padding: 14px 20px;
  border: 2px solid #ffe5d9;
  border-radius: 24px;
  font-size: 16px;
  background: #ffffff;
  color: #4a4a4a;
  transition: all 0.3s ease;
  width: 100%;
}

.email-input {
  flex: 1;
}

.textarea-field {
  border-radius: 16px;
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.input-field:focus,
.textarea-field:focus,
.select-field:focus {
  outline: none;
  border-color: #d97757;
  box-shadow: 0 0 0 4px rgba(217, 119, 87, 0.1);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-field label {
  font-weight: 600;
  color: #2c2c2c;
  font-size: 16px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-direction: row;
  font-weight: 400;
  color: #4a4a4a;
  font-size: 14px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* ===================================
   Contact Pages
   =================================== */

.contact-hero,
.legal-hero,
.services-hero,
.thank-you-hero {
  background: linear-gradient(135deg, #fff3ed 0%, #ffe5d9 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 0 0 40px 40px;
  margin-bottom: 60px;
}

.contact-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.contact-card {
  flex: 1 1 250px;
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-card img {
  width: 60px;
  height: 60px;
}

/* ===================================
   Timeline & Interactive Elements
   =================================== */

.timeline-interactive {
  padding: 60px 20px;
}

.era-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 32px 0;
}

.era-btn {
  padding: 12px 24px;
  background: #ffffff;
  color: #4a4a4a;
  border: 2px solid #ffe5d9;
  border-radius: 24px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.era-btn:hover,
.era-btn.active {
  background: linear-gradient(135deg, #e8956f 0%, #d97757 100%);
  color: #ffffff;
  border-color: #d97757;
  transform: translateY(-2px);
}

.timeline-display {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}

.timeline-item {
  background: #ffffff;
  border-left: 4px solid #d97757;
  padding: 24px 32px;
  border-radius: 0 16px 16px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(217, 119, 87, 0.15);
}

.timeline-item .year {
  display: inline-block;
  background: #d97757;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
}

/* ===================================
   E-book & Product Cards
   =================================== */

.ebook-card-large,
.course-card-large,
.workshop-card-large {
  background: linear-gradient(135deg, #ffffff 0%, #fff9f5 100%);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  margin: 40px 0;
}

.ebook-cover {
  flex: 0 0 200px;
}

.ebook-content {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ebook-features {
  margin: 20px 0;
}

/* ===================================
   Inventors & Experts
   =================================== */

.inventors-grid,
.interviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.inventor-card,
.interview-card {
  flex: 1 1 300px;
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}

.inventor-card:hover,
.interview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(217, 119, 87, 0.2);
}

.inventions,
.expert-name {
  color: #d97757;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===================================
   Species & Biology Cards
   =================================== */

.species-featured,
.invention-featured {
  background: linear-gradient(135deg, #fff3ed 0%, #ffe5d9 100%);
  padding: 48px;
  border-radius: 24px;
  margin: 40px 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.scientific-name,
.invention-year {
  font-style: italic;
  color: #6a6a6a;
  font-size: 16px;
  margin-bottom: 16px;
}

.species-facts,
.invention-impact {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  margin: 24px 0;
}

.conservation-status {
  display: inline-block;
  background: #ff6b6b;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  margin-top: 16px;
}

/* ===================================
   News Cards
   =================================== */

.news-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.news-card {
  flex: 1 1 300px;
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(217, 119, 87, 0.2);
}

.news-date {
  color: #6a6a6a;
  font-size: 14px;
  margin-top: auto;
}

/* ===================================
   CTA Banners
   =================================== */

.cta-banner,
.cta-premium,
.cta-banner-large {
  background: linear-gradient(135deg, #e8956f 0%, #d97757 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 40px;
  margin: 60px 0;
  box-shadow: 0 8px 32px rgba(217, 119, 87, 0.3);
}

.cta-banner h2,
.cta-premium h2,
.cta-banner-large h2 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 24px;
}

.cta-banner p,
.cta-premium p,
.cta-banner-large p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.price-display {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin: 24px 0;
  font-family: 'Orbitron', sans-serif;
}

.cta-buttons-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

/* ===================================
   Legal Pages
   =================================== */

.legal-content {
  padding: 40px 20px;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.content-wrapper h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #ffe5d9;
}

.content-wrapper ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 20px;
}

.content-wrapper li {
  margin-bottom: 8px;
  color: #4a4a4a;
  line-height: 1.6;
}

.last-updated {
  color: #6a6a6a;
  font-size: 14px;
  margin-top: 8px;
}

/* ===================================
   Tables
   =================================== */

.table-responsive {
  overflow-x: auto;
  margin: 32px 0;
}

.cookies-table-list {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.cookies-table-list thead {
  background: linear-gradient(135deg, #e8956f 0%, #d97757 100%);
  color: #ffffff;
}

.cookies-table-list th,
.cookies-table-list td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #ffe5d9;
}

.cookies-table-list th {
  font-weight: 600;
  font-size: 16px;
}

.cookies-table-list tbody tr:hover {
  background: #fff9f5;
}

/* ===================================
   Thank You Page
   =================================== */

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #e8956f 0%, #d97757 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(217, 119, 87, 0.3);
}

.message-box {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.response-time {
  color: #d97757;
  font-weight: 600;
  margin: 16px 0;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  justify-content: center;
}

.step-item {
  flex: 1 1 250px;
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step-item img {
  width: 60px;
  height: 60px;
}

/* ===================================
   Process Steps
   =================================== */

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.step {
  flex: 1 1 250px;
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.step:before {
  content: '';
  position: absolute;
  top: 50%;
  right: -12px;
  width: 24px;
  height: 2px;
  background: #ffe5d9;
}

.step:last-child:before {
  display: none;
}

/* ===================================
   Newsletter Signup
   =================================== */

.newsletter-signup {
  background: linear-gradient(135deg, #fff3ed 0%, #ffe5d9 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 40px;
  margin: 60px 0;
}

.newsletter-signup h2 {
  color: #d97757;
  margin-bottom: 16px;
}

/* ===================================
   Footer
   =================================== */

footer {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  color: #ffffff;
  padding: 60px 20px 30px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 16px;
}

.footer-column h4 {
  color: #e8956f;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-column p {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.6;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column ul li a {
  color: #cccccc;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #e8956f;
}

.tagline {
  color: #cccccc;
  font-size: 14px;
  font-style: italic;
  margin-top: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #999999;
  font-size: 14px;
}

/* ===================================
   Cookie Consent Banner
   =================================== */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #ffffff 0%, #fff9f5 100%);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
  padding: 24px 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-banner-text {
  flex: 1 1 400px;
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-banner-text a {
  color: #d97757;
  text-decoration: underline;
}

.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

#cookie-accept,
#cookie-reject,
#cookie-settings {
  padding: 10px 24px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

#cookie-accept {
  background: linear-gradient(135deg, #e8956f 0%, #d97757 100%);
  color: #ffffff;
}

#cookie-accept:hover {
  background: linear-gradient(135deg, #d97757 0%, #c76648 100%);
  transform: translateY(-2px);
}

#cookie-reject {
  background: #ffffff;
  color: #4a4a4a;
  border: 2px solid #ffe5d9;
}

#cookie-reject:hover {
  border-color: #d97757;
  color: #d97757;
}

#cookie-settings {
  background: transparent;
  color: #d97757;
  text-decoration: underline;
}

/* ===================================
   Cookie Settings Modal
   =================================== */

#cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #ffe5d9;
  color: #d97757;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #d97757;
  color: #ffffff;
  transform: rotate(90deg);
}

.cookie-modal-content h2 {
  color: #d97757;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background: #fff9f5;
  border-radius: 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-category h3 {
  color: #2c2c2c;
  font-size: 18px;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

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

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

.toggle-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background: #ffffff;
  border-radius: 50%;
  transition: 0.3s;
}

input:checked + .toggle-slider {
  background: #d97757;
}

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

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

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

#cookie-save-preferences {
  flex: 1;
  padding: 14px 32px;
  background: linear-gradient(135deg, #e8956f 0%, #d97757 100%);
  color: #ffffff;
  border-radius: 24px;
  font-weight: 600;
  transition: all 0.3s ease;
}

#cookie-save-preferences:hover {
  background: linear-gradient(135deg, #d97757 0%, #c76648 100%);
  transform: translateY(-2px);
}

/* ===================================
   Responsive Design - Mobile First
   =================================== */

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  /* Mobile Navigation */
  .nav-menu,
  .cta-buttons {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  /* Hero Sections */
  .hero,
  .category-hero,
  .contact-hero,
  .legal-hero {
    padding: 40px 20px;
  }

  /* Forms */
  .newsletter-form {
    flex-direction: column;
  }

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

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }

  /* Cards */
  .categories-grid,
  .services-grid,
  .subcategories-grid,
  .articles-grid,
  .stats-grid,
  .testimonials-grid,
  .content-cards,
  .options-grid,
  .rights-grid {
    gap: 16px;
  }

  .category-card,
  .service-card,
  .subcategory-card,
  .article-card,
  .stat-item,
  .testimonial-card,
  .content-card,
  .option-card,
  .right-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* E-book & Product Cards */
  .ebook-card-large,
  .course-card-large,
  .workshop-card-large {
    padding: 32px 24px;
    flex-direction: column;
  }

  .ebook-cover {
    flex: 1 1 100%;
    text-align: center;
  }

  .ebook-content {
    flex: 1 1 100%;
  }

  /* Service Details */
  .service-card-detailed {
    padding: 32px 24px;
  }

  /* Legal Content */
  .content-wrapper {
    padding: 32px 24px;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-column {
    flex: 1 1 100%;
  }

  /* Cookie Banner */
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }

  #cookie-accept,
  #cookie-reject,
  #cookie-settings {
    width: 100%;
  }

  /* Cookie Modal */
  .cookie-modal-content {
    padding: 32px 24px;
  }

  /* Filter Bar */
  .filter-bar {
    flex-direction: column;
  }

  .filter-select,
  .search-input {
    width: 100%;
  }

  /* CTA Sections */
  .cta-banner,
  .cta-premium,
  .cta-banner-large {
    padding: 40px 20px;
  }

  .cta-banner h2,
  .cta-premium h2,
  .cta-banner-large h2 {
    font-size: 28px;
  }

  .price-display {
    font-size: 32px;
  }

  /* Statistics */
  .stat-number {
    font-size: 36px;
  }

  /* Timeline */
  .timeline-item {
    padding: 20px 24px;
  }

  /* Process Steps */
  .step:before {
    display: none;
  }

  /* Contact Cards */
  .contact-cards-grid {
    gap: 16px;
  }

  .contact-card {
    flex: 1 1 100%;
  }

  /* Pricing Tiers */
  .pricing-tiers {
    flex-direction: column;
  }

  .tier {
    flex: 1 1 100%;
  }

  /* Tables */
  .cookies-table-list {
    font-size: 14px;
  }

  .cookies-table-list th,
  .cookies-table-list td {
    padding: 12px 16px;
  }
}

/* Tablet Adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .category-card,
  .service-card,
  .subcategory-card,
  .article-card {
    flex: 1 1 calc(50% - 12px);
  }

  .stat-item,
  .testimonial-card {
    flex: 1 1 calc(50% - 12px);
  }
}

/* Large Desktop Adjustments */
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }

  h1 {
    font-size: 56px;
  }

  .hero h1 {
    font-size: 64px;
  }
}

/* ===================================
   Utility Classes
   =================================== */

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

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

.subtitle {
  font-size: 20px;
  color: #6a6a6a;
  margin-bottom: 16px;
}

/* ===================================
   Animations
   =================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.6s ease-out;
}

/* ===================================
   Print Styles
   =================================== */

@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal,
  .cta-banner,
  .cta-premium,
  .newsletter-signup {
    display: none;
  }

  body {
    background: #ffffff;
  }

  .container {
    max-width: 100%;
  }
}

/* ===================================
   Accessibility Improvements
   =================================== */

*:focus-visible {
  outline: 3px solid #d97757;
  outline-offset: 2px;
}

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

.footer-column img {
  filter: invert(1);
}

/* ===================================
   End of Stylesheet
   =================================== */