/* ============================================
   CRYPTIC ARC - MINIMALIST DESIGN STYLE
   Professional Rhetoric Training Club, Vienna
   ============================================ */

/* CSS RESET & BASE STYLES */
* {
  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', sans-serif;
  line-height: 1.7;
  color: #2C3E50;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* TYPOGRAPHY - MINIMALIST STYLE */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #2C3E50;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: #2C3E50;
}

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

a:hover {
  color: #A93226;
}

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

li {
  margin-bottom: 8px;
}

blockquote {
  padding: 24px;
  margin: 32px 0;
  border-left: 4px solid #C0392B;
  background-color: #F8F9FA;
  font-style: italic;
  color: #2C3E50;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

th, td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ECF0F1;
}

th {
  background-color: #F8F9FA;
  font-weight: 600;
  color: #2C3E50;
}

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

/* HEADER - MINIMALIST CLEAN */
header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #ECF0F1;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  transition: box-shadow 0.3s ease;
}

header.scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

/* MAIN NAVIGATION - MINIMALIST */
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  color: #2C3E50;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  position: relative;
}

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

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

.main-nav a:hover {
  color: #C0392B;
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1001;
  background-color: #2C3E50;
  color: #FFFFFF;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #C0392B;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 1000;
  transition: right 0.3s ease;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background-color: transparent;
  border: none;
  font-size: 32px;
  color: #2C3E50;
  cursor: pointer;
  width: 40px;
  height: 40px;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #C0392B;
}

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

.mobile-nav a {
  color: #2C3E50;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid #ECF0F1;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

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

/* HERO SECTIONS - MINIMALIST */
.hero {
  background-color: #F8F9FA;
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

.hero h1 {
  margin-bottom: 24px;
}

.hero-subheadline {
  font-size: 18px;
  color: #2C3E50;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-internal {
  background-color: #F8F9FA;
  padding: 60px 20px 40px;
  margin-bottom: 60px;
}

.hero-internal h1 {
  text-align: center;
  margin-bottom: 16px;
}

.hero-internal .hero-subheadline {
  text-align: center;
  font-size: 18px;
  color: #2C3E50;
}

/* BREADCRUMB */
.breadcrumb {
  text-align: center;
  margin-bottom: 24px;
  font-size: 14px;
  color: #2C3E50;
}

.breadcrumb a {
  color: #C0392B;
}

/* BUTTONS - MINIMALIST CLEAN */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border: 2px solid #2C3E50;
  background-color: transparent;
  color: #2C3E50;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
}

.btn:hover {
  background-color: #2C3E50;
  color: #FFFFFF;
}

.btn-primary {
  background-color: #C0392B;
  border-color: #C0392B;
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: #A93226;
  border-color: #A93226;
  color: #FFFFFF;
}

.btn-secondary {
  background-color: transparent;
  border-color: #2C3E50;
  color: #2C3E50;
}

.btn-secondary:hover {
  background-color: #2C3E50;
  color: #FFFFFF;
}

/* CTA BUTTONS CONTAINER */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}

/* SECTIONS - MINIMALIST SPACING */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subheadline {
  text-align: center;
  font-size: 18px;
  color: #2C3E50;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* FLEXBOX GRID LAYOUTS - NO CSS GRID */
.benefits-grid,
.services-grid,
.testimonial-grid,
.stats-grid,
.values-grid,
.pillars-grid,
.principles,
.options-grid,
.info-grid,
.signals-grid,
.actions-grid,
.steps-grid,
.stories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

/* CARD STYLES - MINIMALIST */
.benefit,
.service-card,
.testimonial-card,
.stat,
.value,
.pillar-card,
.principle,
.option-card,
.info-item,
.signal,
.action-card,
.step,
.story-card,
.course-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  padding: 32px;
  background-color: #FFFFFF;
  border: 1px solid #ECF0F1;
  position: relative;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.benefit:hover,
.service-card:hover,
.option-card:hover,
.action-card:hover,
.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.benefit h3,
.service-card h3,
.value h3,
.pillar-card h3,
.principle h3,
.option-card h3,
.action-card h3,
.step h3,
.story-card h3,
.course-card h3 {
  color: #C0392B;
  margin-bottom: 16px;
}

/* PRICE DISPLAY */
.price {
  font-size: 24px;
  font-weight: 700;
  color: #C0392B;
  margin: 16px 0;
}

/* TESTIMONIALS - HIGH CONTRAST */
.testimonial-card {
  background-color: #FFFFFF;
  border-left: 4px solid #C0392B;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.testimonial-card .author {
  font-weight: 600;
  color: #2C3E50;
  font-style: normal;
}

/* STATS - MINIMALIST */
.stat {
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
}

.stat h3 {
  font-size: 48px;
  color: #C0392B;
  margin-bottom: 8px;
}

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

/* TRANSFORMATION SECTION */
.transformation-content {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px 0;
}

.before,
.after {
  flex: 1 1 300px;
  padding: 24px;
  background-color: #F8F9FA;
  border: 1px solid #ECF0F1;
  text-align: center;
}

.before p,
.after p {
  color: #2C3E50;
  font-weight: 600;
}

.arrow {
  font-size: 32px;
  color: #C0392B;
  font-weight: 700;
}

/* PILLARS */
.pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 40px 0;
}

.pillar {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  text-align: center;
  padding: 32px;
  background-color: #F8F9FA;
  border: 1px solid #ECF0F1;
}

.pillar h3 {
  color: #C0392B;
  margin-bottom: 16px;
}

/* TIMELINE */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 40px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.timeline-item {
  padding: 24px;
  background-color: #F8F9FA;
  border-left: 4px solid #C0392B;
  position: relative;
}

.timeline-item h3 {
  color: #C0392B;
  font-size: 24px;
  margin-bottom: 12px;
}

/* PROCESS STEPS */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 40px 0;
}

/* STORY HIGHLIGHT */
.story-highlight {
  background-color: #F8F9FA;
  padding: 48px;
  margin: 40px 0;
  border-left: 6px solid #C0392B;
}

.label {
  display: inline-block;
  background-color: #C0392B;
  color: #FFFFFF;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.role {
  color: #C0392B;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 24px;
}

.story-content {
  margin-top: 24px;
}

/* TRANSFORMATIONS LIST */
.transformations {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0;
}

.transformation {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px;
  background-color: #F8F9FA;
  border: 1px solid #ECF0F1;
}

/* TRUST INDICATOR */
.trust-indicator {
  text-align: center;
  font-size: 14px;
  color: #2C3E50;
  font-weight: 600;
  margin-top: 24px;
}

/* GUARANTEE */
.guarantee {
  text-align: center;
  font-size: 14px;
  color: #2C3E50;
  margin-top: 16px;
}

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

.faq-item {
  padding: 24px;
  margin-bottom: 16px;
  background-color: #F8F9FA;
  border-left: 4px solid #C0392B;
}

.faq-item h3 {
  color: #2C3E50;
  margin-bottom: 12px;
}

/* WHAT'S INCLUDED */
.what-included ul {
  max-width: 700px;
  margin: 32px auto;
  padding: 32px;
  background-color: #F8F9FA;
  border: 1px solid #ECF0F1;
}

.what-included li {
  padding: 8px 0;
  border-bottom: 1px solid #ECF0F1;
  color: #2C3E50;
}

.what-included li:last-child {
  border-bottom: none;
}

/* THANK YOU PAGE */
.thank-you-hero {
  text-align: center;
  padding: 80px 20px;
  background-color: #F8F9FA;
}

.success-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background-color: #27AE60;
  color: #FFFFFF;
  font-size: 48px;
  border-radius: 50%;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* LEGAL CONTENT */
.legal-content {
  padding: 40px 20px;
}

.text-section {
  max-width: 900px;
  margin: 0 auto;
}

.text-section h2 {
  text-align: left;
  margin-top: 40px;
  margin-bottom: 20px;
}

.text-section h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

/* FOOTER - MINIMALIST */
footer {
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 60px 20px 24px;
  margin-top: 80px;
}

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

.footer-section {
  flex: 1 1 250px;
}

.footer-section h4 {
  color: #FFFFFF;
  margin-bottom: 16px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-logo {
  height: 48px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

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

.footer-nav a {
  color: #ECF0F1;
  font-size: 14px;
  transition: color 0.3s ease;
}

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

.copyright {
  text-align: center;
  color: #ECF0F1;
  font-size: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(236, 240, 241, 0.2);
}

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

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

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-consent p {
  flex: 1 1 400px;
  color: #2C3E50;
  margin-bottom: 0;
  font-size: 14px;
}

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

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 14px;
  white-space: nowrap;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.cookie-modal-content {
  background-color: #FFFFFF;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal h2 {
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background-color: #F8F9FA;
  border: 1px solid #ECF0F1;
}

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

.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: #ccc;
  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: #27AE60;
}

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

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

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Hide desktop navigation, show mobile menu button */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Hero sections */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-internal {
    padding: 40px 20px 32px;
  }
  
  /* Cards and grids */
  .benefit,
  .service-card,
  .testimonial-card,
  .stat,
  .value,
  .pillar-card,
  .principle,
  .option-card,
  .info-item,
  .signal,
  .action-card,
  .step,
  .story-card,
  .course-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .pillar {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Transformation */
  .transformation-content {
    flex-direction: column;
  }
  
  .arrow {
    transform: rotate(90deg);
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie consent */
  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Story highlight */
  .story-highlight {
    padding: 24px;
  }
  
  /* Stats */
  .stat {
    flex: 1 1 calc(50% - 24px);
    min-width: 140px;
  }
}

@media (max-width: 480px) {
  /* Further mobile adjustments */
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .stat h3 {
    font-size: 36px;
  }
  
  .hero {
    padding: 40px 16px;
  }
  
  section {
    padding: 32px 16px;
  }
  
  .benefit,
  .service-card,
  .testimonial-card,
  .value,
  .pillar-card,
  .principle,
  .option-card,
  .info-item,
  .action-card,
  .step,
  .story-card,
  .course-card {
    padding: 24px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .stat {
    flex: 1 1 100%;
  }
}

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

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

/* SMOOTH HOVER TRANSITIONS */
.benefit,
.service-card,
.testimonial-card,
.option-card,
.action-card,
.course-card,
.btn,
a,
.mobile-menu {
  transition: all 0.3s ease;
}

/* ACCESSIBILITY */
*:focus {
  outline: 2px solid #C0392B;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .btn {
    display: none;
  }
  
  body {
    color: #000;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
}