/* ============================================
   ARTIKULATION - MINIMALIST DESIGN SYSTEM
   Modern, Clean, Professional Speech Training
   ============================================ */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  color: #333333;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1A4566;
  margin-bottom: 20px;
}

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

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

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

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

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

a {
  color: #2C5F8D;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #1A4566;
}

ul, ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
  color: #444444;
}

strong {
  font-weight: 600;
  color: #1A4566;
}

em {
  font-style: italic;
  color: #666666;
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* SECTIONS */
section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

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

/* HEADER */
header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E8E8E8;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
}

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

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

.main-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 16px;
  font-weight: 500;
  color: #1A4566;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #E8A87C;
  transition: width 0.3s ease;
}

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

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  background-color: transparent;
  border: 2px solid #1A4566;
  color: #1A4566;
  font-size: 24px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
}

.mobile-menu-toggle:hover {
  background-color: #1A4566;
  color: #FFFFFF;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 1999;
  transition: right 0.3s ease;
  padding: 80px 30px 30px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  font-size: 32px;
  color: #1A4566;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg);
}

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 500;
  color: #1A4566;
  padding: 12px 0;
  border-bottom: 1px solid #E8E8E8;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  padding-left: 8px;
  color: #E8A87C;
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background-color: #1A4566;
  color: #FFFFFF;
  border: 2px solid #1A4566;
}

.btn-primary:hover {
  background-color: #FFFFFF;
  color: #1A4566;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 69, 102, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: #1A4566;
  border: 2px solid #1A4566;
}

.btn-secondary:hover {
  background-color: #1A4566;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 69, 102, 0.2);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 32px 0;
}

/* HERO SECTIONS */
.hero,
.hero-internal,
.hero-error,
.hero-legal,
.hero-confirmation {
  background-color: #F8F9FA;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #1A4566;
}

.hero-subheadline {
  font-size: 24px;
  color: #2C5F8D;
  margin-bottom: 16px;
  font-weight: 500;
}

.hero p {
  font-size: 18px;
  color: #666666;
  margin-bottom: 32px;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-indicators span {
  font-size: 14px;
  color: #666666;
  font-weight: 500;
  padding: 8px 16px;
  background-color: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* ERROR PAGE */
.error-code {
  font-size: 120px;
  font-weight: 700;
  color: #E8A87C;
  line-height: 1;
  margin-bottom: 24px;
}

.error-explanation,
.navigation-help,
.popular-pages,
.quick-contact {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.help-options,
.page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.help-card {
  flex: 1;
  min-width: 280px;
  padding: 32px;
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  text-align: center;
}

.page-links a {
  flex: 1;
  min-width: 240px;
  padding: 24px;
  background-color: #F8F9FA;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-links a:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-links h3 {
  color: #1A4566;
  margin-bottom: 8px;
}

.page-links p {
  color: #666666;
  font-size: 14px;
}

/* CARDS & GRIDS */
.benefits-grid,
.services-grid,
.usp-grid,
.stats-grid,
.team-grid,
.pricing-grid,
.package-grid,
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.benefit-card,
.service-card,
.usp-card,
.stat,
.team-member,
.price-card,
.package-card,
.contact-card {
  flex: 1;
  min-width: 280px;
  padding: 32px;
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

.benefit-card:hover,
.service-card:hover,
.usp-card:hover,
.price-card:hover,
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #E8A87C;
}

.service-card h3,
.benefit-card h3,
.usp-card h3 {
  color: #1A4566;
  margin-bottom: 16px;
}

.price {
  font-size: 14px;
  color: #E8A87C;
  font-weight: 600;
  margin-top: 16px;
}

.price-amount {
  font-size: 48px;
  font-weight: 700;
  color: #1A4566;
  margin: 16px 0;
}

.original-price {
  font-size: 16px;
  color: #999999;
  text-decoration: line-through;
  margin-bottom: 8px;
}

.package-card.highlight {
  border: 2px solid #E8A87C;
  box-shadow: 0 4px 16px rgba(232, 168, 124, 0.2);
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: #E8A87C;
  color: #FFFFFF;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
}

/* PROCESS STEPS */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.step {
  flex: 1;
  min-width: 240px;
  padding: 24px;
  background-color: #F8F9FA;
  border-left: 4px solid #E8A87C;
  border-radius: 4px;
}

.step h3 {
  color: #1A4566;
  font-size: 20px;
  margin-bottom: 12px;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.testimonial-card {
  flex: 1;
  min-width: 300px;
  padding: 32px;
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-card p {
  color: #333333;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-card .author {
  color: #1A4566;
  font-weight: 600;
  font-size: 14px;
  font-style: italic;
}

/* STATISTICS */
.stat {
  text-align: center;
  min-width: 200px;
}

.stat-number {
  font-size: 56px;
  font-weight: 700;
  color: #E8A87C;
  margin-bottom: 8px;
}

.stat p {
  color: #666666;
  font-size: 16px;
}

/* MILESTONES */
.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.milestone {
  flex: 1;
  min-width: 200px;
  padding: 20px;
  background-color: #F8F9FA;
  border-radius: 4px;
  text-align: center;
  font-weight: 500;
  color: #1A4566;
}

/* TEXT & IMAGE SECTIONS */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.text-image-section > * {
  flex: 1;
  min-width: 280px;
}

/* SERVICE DETAILS */
.service-detail {
  padding: 40px 20px;
  margin-bottom: 40px;
  background-color: #F8F9FA;
  border-radius: 4px;
}

.service-detail h2 {
  color: #1A4566;
  margin-bottom: 16px;
}

.service-detail .price {
  font-size: 24px;
  color: #E8A87C;
  font-weight: 700;
  margin-bottom: 16px;
}

/* METHOD DETAILS */
.method-detail {
  padding: 40px 20px;
  margin-bottom: 40px;
  border-left: 4px solid #E8A87C;
  background-color: #F8F9FA;
}

/* CONTACT SECTIONS */
.contact-info {
  margin: 32px 0;
  padding: 32px;
  background-color: #F8F9FA;
  border-radius: 4px;
}

.contact-info p {
  margin-bottom: 12px;
  font-size: 16px;
}

/* LEGAL CONTENT */
.legal-content {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #1A4566;
}

.legal-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: #2C5F8D;
}

/* CONFIRMATION PAGES */
.next-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.suggestion-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.suggestion-links a {
  flex: 1;
  min-width: 280px;
  padding: 24px;
  background-color: #F8F9FA;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.suggestion-links a:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* CTA SECTIONS */
.cta-section,
.cta-final,
.cta-final-contact {
  padding: 80px 20px;
  text-align: center;
  background-color: #F8F9FA;
  margin: 60px 0;
}

.cta-section h2,
.cta-final h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

/* FOOTER */
footer {
  background-color: #1A4566;
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-section {
  flex: 1;
  min-width: 240px;
}

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

.footer-section p,
.footer-section a {
  color: #FFFFFF;
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-nav a {
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #E8A87C;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  border-top: 2px solid #E8E8E8;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

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

.cookie-banner-text {
  flex: 1;
  min-width: 280px;
}

.cookie-banner-text p {
  margin-bottom: 0;
  color: #444444;
  font-size: 14px;
}

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

.cookie-banner-buttons button {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.cookie-accept-all {
  background-color: #1A4566;
  color: #FFFFFF;
}

.cookie-accept-all:hover {
  background-color: #2C5F8D;
}

.cookie-reject-all {
  background-color: transparent;
  color: #1A4566;
  border: 2px solid #1A4566;
}

.cookie-reject-all:hover {
  background-color: #F8F9FA;
}

.cookie-settings-btn {
  background-color: transparent;
  color: #666666;
  border: 1px solid #E8E8E8;
}

.cookie-settings-btn:hover {
  background-color: #F8F9FA;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: translateY(0);
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: #666666;
  cursor: pointer;
  transition: color 0.3s ease;
}

.cookie-modal-close:hover {
  color: #1A4566;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #F8F9FA;
  border-radius: 4px;
}

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

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 0;
}

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

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

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

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

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: #1A4566;
}

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

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

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

.cookie-save-preferences {
  flex: 1;
  padding: 12px 24px;
  background-color: #1A4566;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-save-preferences:hover {
  background-color: #2C5F8D;
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

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

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

.margin-top-large {
  margin-top: 60px;
}

.margin-bottom-large {
  margin-bottom: 60px;
}

.padding-large {
  padding: 60px 20px;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subheadline {
    font-size: 18px;
  }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Sections */
  section {
    padding: 40px 20px;
  }
  
  /* Grids */
  .benefits-grid,
  .services-grid,
  .usp-grid,
  .stats-grid,
  .team-grid,
  .pricing-grid,
  .package-grid,
  .contact-grid,
  .process-steps,
  .testimonials-grid,
  .milestones,
  .next-steps,
  .help-options,
  .page-links {
    flex-direction: column;
  }
  
  /* Cards */
  .benefit-card,
  .service-card,
  .usp-card,
  .stat,
  .team-member,
  .price-card,
  .package-card,
  .contact-card,
  .step,
  .testimonial-card,
  .help-card {
    min-width: 100%;
  }
  
  /* Text & Image */
  .text-image-section {
    flex-direction: column;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  /* Cookie Banner */
  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-banner-buttons {
    width: 100%;
  }
  
  .cookie-banner-buttons button {
    flex: 1;
  }
  
  /* Error Page */
  .error-code {
    font-size: 80px;
  }
  
  /* Stats */
  .stat-number {
    font-size: 40px;
  }
  
  /* Price */
  .price-amount {
    font-size: 36px;
  }
  
  /* Trust Indicators */
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .container {
    padding: 0 40px;
  }
  
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-banner,
  .cookie-modal,
  .cta-section,
  .cta-buttons {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  h1 {
    font-size: 24pt;
  }
  
  h2 {
    font-size: 18pt;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
}

/* 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 {
  outline: 2px solid #E8A87C;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #E8A87C;
  outline-offset: 2px;
}

/* HIGH CONTRAST MODE */
@media (prefers-contrast: high) {
  body {
    background-color: #FFFFFF;
    color: #000000;
  }
  
  a {
    text-decoration: underline;
  }
  
  .btn-primary,
  .btn-secondary {
    border-width: 3px;
  }
}

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

/* DARK MODE SUPPORT (OPTIONAL) */
@media (prefers-color-scheme: dark) {
  /* Intentionally left minimal as minimalist design works best in light mode */
  body {
    background-color: #FFFFFF;
    color: #333333;
  }
}