/* ===================================
   CYGNUS RHETORIK AKADEMIE - CSS
   Geometric & Structured Design Style
   =================================== */

/* 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', sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background: #FFFFFF;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1A4D8F;
  margin-bottom: 16px;
}

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

h2 {
  font-size: 36px;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

a {
  color: #1A4D8F;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #C49A3A;
}

ul {
  list-style: none;
}

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

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

/* BUTTONS - GEOMETRIC STYLE */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
}

.btn:hover::before {
  left: 100%;
}

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

.btn-primary:hover {
  background: #154078;
  border-color: #154078;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 77, 143, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #1A4D8F;
  border-color: #1A4D8F;
}

.btn-secondary:hover {
  background: #1A4D8F;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 77, 143, 0.2);
}

/* HEADER - GEOMETRIC STRUCTURE */
.site-header {
  background: #FFFFFF;
  border-bottom: 3px solid #1A4D8F;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  gap: 32px;
}

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

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

.main-nav a {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #2C3E50;
  padding: 8px 0;
  position: relative;
}

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

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

.header-cta {
  display: flex;
  align-items: center;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #1A4D8F;
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #154078;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #1A4D8F;
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #FFFFFF;
  color: #1A4D8F;
}

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 16px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  border-left-color: #C49A3A;
  padding-left: 24px;
  background: rgba(255, 255, 255, 0.1);
}

/* HERO SECTION - GEOMETRIC DESIGN */
.hero {
  background: linear-gradient(135deg, #1A4D8F 0%, #2563A8 100%);
  color: #FFFFFF;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(196, 154, 58, 0.1);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  transform: rotate(30deg);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(196, 154, 58, 0.08);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

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

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

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.trust-indicator {
  font-size: 14px;
  color: #F4F1E8;
  font-weight: 600;
}

/* PAGE HERO - GEOMETRIC */
.page-hero {
  background: linear-gradient(135deg, #1A4D8F 0%, #2563A8 100%);
  color: #FFFFFF;
  padding: 80px 0 60px;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: rgba(196, 154, 58, 0.1);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 16px;
  color: #F4F1E8;
}

.breadcrumb a {
  color: #F4F1E8;
}

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

.page-hero h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

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

section {
  padding: 60px 0;
}

.section-intro {
  font-size: 18px;
  color: #5A6C7D;
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.intro-text {
  font-size: 18px;
  color: #5A6C7D;
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
  line-height: 1.8;
}

/* VALUE PROPOSITION - GEOMETRIC CARDS */
.value-proposition {
  background: #F4F1E8;
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 16px;
}

.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.value-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  background: #FFFFFF;
  padding: 32px;
  text-align: center;
  position: relative;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: all 0.3s ease;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #C49A3A;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(26, 77, 143, 0.15);
}

.value-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
}

.value-card h3 {
  margin-bottom: 16px;
  font-size: 22px;
}

.value-card p {
  color: #5A6C7D;
  line-height: 1.6;
}

/* SERVICES GRID - STRUCTURED LAYOUT */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.service-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 40px;
  border: 2px solid #E8E8E8;
  position: relative;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  transition: all 0.3s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #1A4D8F, #C49A3A);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 77, 143, 0.2);
}

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

.service-card p {
  color: #5A6C7D;
  margin-bottom: 20px;
}

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #C49A3A;
  margin: 20px 0;
}

.course-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.tag {
  display: inline-block;
  padding: 6px 16px;
  background: #F4F1E8;
  color: #1A4D8F;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
}

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

/* METHODOLOGY - GEOMETRIC STEPS */
.methodology {
  background: #F4F1E8;
}

.methodology h2 {
  text-align: center;
  margin-bottom: 48px;
}

.methodology-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.step {
  flex: 1 1 calc(20% - 20px);
  min-width: 180px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  background: #1A4D8F;
  color: #FFFFFF;
  font-size: 32px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: all 0.3s ease;
}

.step:hover .step-number {
  background: #C49A3A;
  transform: scale(1.1) rotate(10deg);
}

.step h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.step p {
  color: #5A6C7D;
  font-size: 14px;
}

/* TESTIMONIALS - GEOMETRIC CARDS */
.testimonials {
  background: #FFFFFF;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background: #F4F1E8;
  padding: 32px;
  position: relative;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: all 0.3s ease;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 80px;
  color: #C49A3A;
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 77, 143, 0.15);
}

.testimonial-card .quote {
  font-size: 16px;
  line-height: 1.7;
  color: #2C3E50;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  font-weight: 600;
  color: #1A4D8F;
  margin-bottom: 12px;
}

.testimonial-card .author strong {
  display: block;
  margin-bottom: 4px;
}

.rating {
  color: #C49A3A;
  font-size: 18px;
  letter-spacing: 2px;
}

/* STATS - GEOMETRIC BLOCKS */
.stats {
  background: linear-gradient(135deg, #1A4D8F 0%, #2563A8 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 100%;
  background: rgba(196, 154, 58, 0.1);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.stat-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 32px;
  background: rgba(255, 255, 255, 0.1);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #C49A3A;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}

.stat-item p {
  color: #F4F1E8;
  font-size: 16px;
  margin: 0;
}

/* TARGET AUDIENCE - GRID */
.target-audience {
  background: #F4F1E8;
}

.target-audience h2 {
  text-align: center;
  margin-bottom: 48px;
}

.audience-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.audience-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: #FFFFFF;
  padding: 32px;
  text-align: center;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: all 0.3s ease;
}

.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(26, 77, 143, 0.15);
}

.audience-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.audience-card h3 {
  margin-bottom: 12px;
}

.audience-card p {
  color: #5A6C7D;
  font-size: 14px;
}

/* CTA BANNER - GEOMETRIC */
.cta-banner {
  background: linear-gradient(135deg, #C49A3A 0%, #D4AA4A 100%);
  color: #FFFFFF;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: rgba(26, 77, 143, 0.1);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  transform: rotate(45deg);
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 32px;
}

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

.cta-section {
  background: #F4F1E8;
  padding: 60px 0;
}

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

.benefits-list {
  list-style: none;
  margin: 32px 0;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-list li {
  padding: 12px 0;
  font-size: 16px;
  color: #2C3E50;
  position: relative;
  padding-left: 32px;
}

.benefits-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: #C49A3A;
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.contact-info {
  margin-top: 24px;
  font-size: 16px;
}

/* LOCATION */
.location-contact {
  background: #FFFFFF;
}

.location-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
}

.location-info {
  flex: 1 1 45%;
  min-width: 300px;
}

.location-info h3 {
  margin-bottom: 16px;
  margin-top: 24px;
}

.location-info p {
  margin-bottom: 16px;
}

.location-map {
  flex: 1 1 45%;
  min-width: 300px;
  background: #F4F1E8;
  padding: 60px 32px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.map-placeholder {
  text-align: center;
  color: #5A6C7D;
  font-size: 16px;
}

/* TRAINER PAGE */
.trainer-intro {
  background: #FFFFFF;
}

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

.stats-row .stat-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background: #F4F1E8;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.stats-row .stat-item strong {
  display: block;
  font-size: 36px;
  color: #1A4D8F;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}

.stats-row .stat-item p {
  color: #5A6C7D;
  margin: 0;
}

.trainer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.trainer-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 300px;
  background: #FFFFFF;
  border: 2px solid #E8E8E8;
  padding: 32px;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: all 0.3s ease;
}

.trainer-card:hover {
  border-color: #1A4D8F;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 77, 143, 0.15);
}

.trainer-photo-placeholder {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #F4F1E8 0%, #E8E8E8 100%);
  margin-bottom: 24px;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.trainer-card h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.trainer-title {
  color: #C49A3A;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.specialization {
  color: #5A6C7D;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.bio {
  color: #5A6C7D;
  font-size: 14px;
  line-height: 1.6;
}

.trainer-expertise {
  background: #F4F1E8;
}

.expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.expertise-item {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background: #FFFFFF;
  padding: 24px;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.expertise-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1A4D8F;
}

.expertise-item p {
  font-size: 14px;
  color: #5A6C7D;
}

/* SUCCESS STORIES */
.impact-stats {
  background: #F4F1E8;
}

.story-card {
  background: #FFFFFF;
  padding: 40px;
  margin-bottom: 32px;
  border-left: 4px solid #C49A3A;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: all 0.3s ease;
}

.story-card.featured {
  border-left-width: 6px;
}

.story-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(26, 77, 143, 0.15);
}

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

.participant-name {
  font-weight: 600;
  color: #1A4D8F;
  margin-bottom: 16px;
}

.story-text {
  font-size: 16px;
  line-height: 1.7;
  color: #2C3E50;
  margin-bottom: 20px;
}

.results {
  padding: 16px;
  background: #F4F1E8;
  border-left: 3px solid #C49A3A;
  font-size: 14px;
  color: #2C3E50;
}

.transformation-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.transformation-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background: #F4F1E8;
  padding: 32px;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.transformation-card .before {
  font-size: 14px;
  color: #5A6C7D;
  margin-bottom: 8px;
}

.transformation-card .after {
  font-size: 14px;
  color: #1A4D8F;
  font-weight: 600;
  margin-bottom: 16px;
}

.improvement {
  color: #2C3E50;
  font-size: 14px;
  line-height: 1.6;
}

/* CONTACT PAGE */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.contact-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: #FFFFFF;
  padding: 32px;
  text-align: center;
  border: 2px solid #E8E8E8;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: #1A4D8F;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 77, 143, 0.15);
}

.contact-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.contact-card h3 {
  margin-bottom: 16px;
}

.contact-card p {
  color: #5A6C7D;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 40px;
  border: 2px solid #E8E8E8;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.form-intro {
  text-align: center;
  color: #5A6C7D;
  margin-bottom: 32px;
}

.form-note {
  background: #F4F1E8;
  padding: 20px;
  border-left: 4px solid #C49A3A;
  margin-bottom: 24px;
  font-size: 14px;
}

.form-fields-display {
  color: #5A6C7D;
}

.form-fields-display ul {
  list-style: none;
  padding-left: 0;
}

.form-fields-display li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.form-fields-display li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #1A4D8F;
  font-weight: 700;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.info-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  text-align: center;
  background: #FFFFFF;
  padding: 32px;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.info-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

/* FAQ */
.faq-section {
  background: #F4F1E8;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto 40px;
}

.faq-item {
  background: #FFFFFF;
  padding: 28px;
  margin-bottom: 20px;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 24px rgba(26, 77, 143, 0.1);
  transform: translateX(4px);
}

.faq-item h3 {
  margin-bottom: 12px;
  font-size: 18px;
  color: #1A4D8F;
}

.faq-item p {
  color: #5A6C7D;
  margin: 0;
}

.faq-section .btn {
  display: block;
  margin: 0 auto;
  width: fit-content;
}

/* COURSE FORMATS */
.formats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.format-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: #FFFFFF;
  padding: 32px;
  text-align: center;
  border: 2px solid #E8E8E8;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: all 0.3s ease;
}

.format-card:hover {
  border-color: #1A4D8F;
  transform: translateY(-4px);
}

.format-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

/* LEGAL PAGES */
.legal-content {
  background: #FFFFFF;
  padding: 60px 0;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 48px;
  border: 1px solid #E8E8E8;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

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

.content-wrapper h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: #1A4D8F;
}

.content-wrapper ul {
  list-style: none;
  padding-left: 0;
}

.content-wrapper ul li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: #2C3E50;
}

.content-wrapper ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #1A4D8F;
  font-weight: 700;
}

.last-updated {
  color: #5A6C7D;
  font-size: 14px;
}

/* 404 PAGE */
.error-hero {
  background: linear-gradient(135deg, #1A4D8F 0%, #2563A8 100%);
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: #C49A3A;
  font-family: 'Playfair Display', serif;
  margin-bottom: 24px;
}

.error-message {
  font-size: 18px;
  color: #F4F1E8;
}

.helpful-links {
  background: #FFFFFF;
}

.helpful-links h2 {
  text-align: center;
  margin-bottom: 48px;
}

.link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.link-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: #F4F1E8;
  padding: 32px;
  text-align: center;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: all 0.3s ease;
}

.link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 77, 143, 0.15);
}

.link-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.link-card h3 {
  margin-bottom: 12px;
}

.link-card p {
  color: #5A6C7D;
  margin-bottom: 20px;
  font-size: 14px;
}

.contact-help {
  background: #F4F1E8;
}

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

.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 32px 0;
}

.contact-item {
  flex: 1 1 300px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-item img {
  width: 48px;
  height: 48px;
}

.contact-item p {
  margin: 0;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #1A4D8F 0%, #2563A8 100%);
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: #C49A3A;
  color: #FFFFFF;
  font-size: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  border-radius: 50%;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-you-content h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.confirmation-message {
  font-size: 18px;
  color: #F4F1E8;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.next-steps {
  background: #FFFFFF;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.step-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: #F4F1E8;
  padding: 32px;
  text-align: center;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.step-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.step-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 14px;
  color: #5A6C7D;
}

.while-you-wait {
  background: #F4F1E8;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.contact-reminder {
  background: #FFFFFF;
  text-align: center;
}

/* PRINCIPLES & PHILOSOPHY */
.principles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.principle-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background: #FFFFFF;
  padding: 32px;
  border-left: 4px solid #C49A3A;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: all 0.3s ease;
}

.principle-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(26, 77, 143, 0.15);
}

.principle-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.principle-card p {
  color: #5A6C7D;
  font-size: 14px;
}

.diff-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.diff-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: all 0.3s ease;
}

.diff-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 77, 143, 0.15);
}

.diff-item img {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.diff-item h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.diff-item p {
  color: #5A6C7D;
  font-size: 14px;
}

/* FOOTER - GEOMETRIC */
.site-footer {
  background: #1A4D8F;
  color: #F4F1E8;
  padding: 60px 0 0;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #C49A3A 0%, #1A4D8F 100%);
}

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

.footer-column {
  flex: 1 1 calc(25% - 36px);
  min-width: 220px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
}

.tagline {
  font-weight: 600;
  color: #C49A3A;
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-column h4 {
  color: #FFFFFF;
  margin-bottom: 20px;
  font-size: 18px;
  border-bottom: 2px solid #C49A3A;
  padding-bottom: 8px;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column a {
  color: #F4F1E8;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #C49A3A;
  padding-left: 4px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.legal-links a {
  color: #F4F1E8;
  font-size: 12px;
  position: relative;
}

.legal-links a::after {
  content: '|';
  position: absolute;
  right: -12px;
  color: rgba(255, 255, 255, 0.3);
}

.legal-links a:last-child::after {
  display: none;
}

.copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  text-align: center;
}

/* COOKIE CONSENT BANNER - GEOMETRIC */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1A4D8F;
  color: #FFFFFF;
  padding: 24px;
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

.cookie-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #C49A3A 0%, #D4AA4A 100%);
}

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

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

.cookie-text h3 {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 8px;
}

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

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

.cookie-buttons .btn {
  padding: 12px 24px;
  font-size: 14px;
}

.btn-accept {
  background: #C49A3A;
  color: #FFFFFF;
  border-color: #C49A3A;
}

.btn-accept:hover {
  background: #D4AA4A;
  border-color: #D4AA4A;
}

.btn-reject {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.btn-settings {
  background: transparent;
  color: #F4F1E8;
  border: none;
  padding: 12px 24px;
  text-decoration: underline;
  font-size: 14px;
  cursor: pointer;
}

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

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

.modal-content {
  background: #FFFFFF;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  position: relative;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #2C3E50;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  color: #1A4D8F;
  transform: rotate(90deg);
}

.modal-content h2 {
  margin-bottom: 24px;
  color: #1A4D8F;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background: #F4F1E8;
  border-left: 4px solid #C49A3A;
}

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

.cookie-category p {
  font-size: 14px;
  color: #5A6C7D;
  margin: 0;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background: #ccc;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: #1A4D8F;
}

.toggle-switch.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-switch.active::after {
  transform: translateX(24px);
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
  
  .value-card {
    flex: 1 1 calc(50% - 16px);
  }
  
  .stat-item {
    flex: 1 1 calc(50% - 16px);
  }
  
  .trainer-card {
    flex: 1 1 calc(50% - 16px);
  }
}

@media (max-width: 768px) {
  /* Mobile Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* Mobile Header */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Mobile Sections */
  section {
    padding: 40px 0;
  }
  
  .hero {
    padding: 60px 0 40px;
  }
  
  .page-hero {
    padding: 60px 0 40px;
  }
  
  /* Mobile Grids */
  .value-card,
  .service-card,
  .audience-card,
  .format-card,
  .link-card,
  .contact-card,
  .step-card,
  .trainer-card,
  .transformation-card,
  .principle-card,
  .diff-item,
  .expertise-item {
    flex: 1 1 100%;
  }
  
  .stat-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 140px;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .step {
    flex: 1 1 calc(50% - 12px);
  }
  
  /* Mobile CTA */
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Mobile Footer */
  .footer-column {
    flex: 1 1 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 12px;
  }
  
  .legal-links a::after {
    display: none;
  }
  
  /* Mobile Location */
  .location-info,
  .location-map {
    flex: 1 1 100%;
  }
  
  /* Mobile Cookie Banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-text {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  /* Mobile Modal */
  .modal-content {
    padding: 32px 24px;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
  
  .modal-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .error-code {
    font-size: 80px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .stat-item {
    flex: 1 1 100%;
  }
  
  .step {
    flex: 1 1 100%;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
  
  .site-header {
    position: static;
    box-shadow: none;
  }
  
  .hero,
  .page-hero,
  .cta-banner {
    background: #FFFFFF;
    color: #000000;
  }
  
  a {
    color: #000000;
  }
}

/* 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 Styles */
*:focus-visible {
  outline: 3px solid #C49A3A;
  outline-offset: 2px;
}

button:focus-visible,
.btn:focus-visible {
  outline: 3px solid #C49A3A;
  outline-offset: 2px;
}

/* HIGH CONTRAST MODE */
@media (prefers-contrast: high) {
  .btn-primary {
    border-width: 3px;
  }
  
  .service-card,
  .value-card,
  .testimonial-card {
    border: 2px solid #000000;
  }
}

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

/* END OF CSS */