/* CSS Reset and 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', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2C2C2C;
  background: #FFFFFF;
  overflow-x: hidden;
}

/* GEOMETRIC STRUCTURED DESIGN - Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

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 {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

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

li {
  margin-bottom: 8px;
}

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

a:hover {
  color: #B71C1C;
  text-decoration: none;
}

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

/* Container - Geometric Structure */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* GEOMETRIC HEADER - Angular Design */
header {
  background: #FFFFFF;
  border-bottom: 4px solid #D84315;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 0 rgba(215, 67, 21, 0.1);
}

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

header img {
  height: 48px;
  width: auto;
}

header nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

header nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #2C2C2C;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

header nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #D84315;
  transition: width 0.3s ease;
}

header nav a:hover::after {
  width: 100%;
}

header nav a:hover {
  color: #D84315;
}

/* GEOMETRIC CTA BUTTONS - Sharp Angles */
.cta-button,
.cta-primary,
.cta-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  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);
}

.cta-button,
.cta-primary {
  background: #D84315;
  color: #FFFFFF;
  border: 3px solid #D84315;
}

.cta-button:hover,
.cta-primary:hover {
  background: #B71C1C;
  border-color: #B71C1C;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(183, 28, 28, 0.3);
}

.cta-secondary {
  background: transparent;
  color: #D84315;
  border: 3px solid #D84315;
}

.cta-secondary:hover {
  background: #D84315;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(215, 67, 21, 0.3);
}

/* MOBILE MENU - Geometric Slide */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 2000;
  background: #D84315;
  color: #FFFFFF;
  border: none;
  width: 48px;
  height: 48px;
  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: #B71C1C;
  transform: rotate(90deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: -4px 0 0 #D84315;
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #D84315;
  color: #FFFFFF;
  border: none;
  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: #B71C1C;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #2C2C2C;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 0;
  border-bottom: 2px solid #E0E0E0;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #D84315;
  border-bottom-color: #D84315;
  padding-left: 16px;
}

/* HERO SECTION - Geometric Grid */
.hero {
  background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
  color: #FFFFFF;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(45deg, rgba(255,255,255,0.03) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,0.03) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.03) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.03) 75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

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

.hero p {
  font-size: 20px;
  margin-bottom: 24px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.cta-group {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

.trust-indicator {
  font-size: 16px;
  font-weight: 600;
  margin-top: 32px;
  padding: 16px 32px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  display: inline-block;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

/* SECTION SPACING - Structured Layout */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}

section h2 {
  text-align: center;
  color: #2C2C2C;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 40px;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #D84315;
}

/* GEOMETRIC CARDS - Angular Design */
.benefit-grid,
.service-grid,
.testimonial-grid,
.story-grid,
.team-grid,
.stats-grid,
.category-grid,
.resource-grid,
.tips-grid,
.methods-grid,
.reasons-grid,
.links-grid,
.steps-grid,
.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.benefit-card,
.service-card,
.testimonial-card,
.story-card,
.team-member,
.stat,
.category-card,
.resource-card,
.tip-card,
.method-card,
.reason,
.link-card,
.step,
.course-card {
  background: #FFFFFF;
  padding: 32px;
  border: 3px solid #E0E0E0;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  position: relative;
  transition: all 0.3s ease;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  margin-bottom: 20px;
}

.benefit-card:hover,
.service-card:hover,
.story-card:hover,
.category-card:hover,
.resource-card:hover,
.tip-card:hover,
.method-card:hover,
.reason:hover,
.link-card:hover,
.course-card:hover {
  border-color: #D84315;
  transform: translateY(-4px);
  box-shadow: 0 8px 0 rgba(215, 67, 21, 0.2);
}

.benefit-card h3,
.service-card h3,
.story-card h3,
.category-card h3,
.resource-card h3,
.tip-card h3,
.method-card h3,
.reason h3,
.link-card h3,
.course-card h3 {
  color: #D84315;
  margin-bottom: 16px;
  font-size: 20px;
}

/* TESTIMONIALS - High Contrast */
.testimonial-card {
  background: #F5F5F5;
  border: 3px solid #D84315;
  padding: 32px;
  flex: 1 1 100%;
  margin-bottom: 24px;
}

.testimonial-card p {
  font-size: 18px;
  line-height: 1.8;
  color: #2C2C2C;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-card .author {
  font-weight: 700;
  color: #D84315;
  font-style: normal;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

/* STATS - Bold Geometric Numbers */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 40px 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px;
  background: #FFFFFF;
  border: 4px solid #D84315;
  flex: 1 1 200px;
  min-width: 200px;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #D84315;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: #2C2C2C;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  display: block;
}

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

.step {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  text-align: center;
  padding: 32px 24px;
  background: #F5F5F5;
  border: 3px solid #E0E0E0;
  position: relative;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.step-number {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #D84315;
  margin-bottom: 16px;
}

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

/* PRICE DISPLAY - Angular Tags */
.price {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #D84315;
  margin: 20px 0;
}

.original-price {
  font-size: 20px;
  color: #9E9E9E;
  text-decoration: line-through;
  margin-left: 12px;
}

.savings {
  display: inline-block;
  background: #FFA726;
  color: #2C2C2C;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  margin: 8px 0;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

/* COURSE HIGHLIGHTS - Structured Lists */
.course-highlights {
  margin: 24px 0;
  padding: 24px;
  background: #F5F5F5;
  border-left: 4px solid #D84315;
}

.course-highlights h3 {
  font-size: 16px;
  color: #2C2C2C;
  margin-bottom: 16px;
}

.course-highlights ul {
  list-style: none;
  padding: 0;
}

.course-highlights li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
}

.course-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background: #D84315;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* FEATURED COURSE - Special Highlight */
.course-card.featured {
  border-color: #FFA726;
  border-width: 4px;
  background: linear-gradient(135deg, #FFF8E1 0%, #FFFFFF 100%);
  position: relative;
}

.course-card.featured::before {
  content: 'BEST VALUE';
  position: absolute;
  top: 16px;
  right: 16px;
  background: #FFA726;
  color: #2C2C2C;
  padding: 8px 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1px;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

/* PROBLEM-SOLUTION - Bold Statement */
.problem-solution {
  background: linear-gradient(135deg, #D84315 0%, #B71C1C 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.problem-solution h2,
.problem-solution p {
  color: #FFFFFF;
}

.transformation {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-top: 32px;
  padding: 24px;
  background: rgba(255,255,255,0.15);
  border: 3px solid rgba(255,255,255,0.3);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

/* FOOTER - Structured Grid */
footer {
  background: #2C2C2C;
  color: #FFFFFF;
  padding: 60px 20px 24px;
  margin-top: 80px;
  border-top: 6px solid #D84315;
}

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

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

.footer-section h3 {
  color: #FFA726;
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section a {
  display: block;
  color: #E0E0E0;
  margin-bottom: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-section a:hover {
  color: #FFA726;
  padding-left: 8px;
}

.footer-section p {
  color: #E0E0E0;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-section img {
  height: 48px;
  margin-bottom: 16px;
}

.footer-bottom {
  border-top: 2px solid #424242;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: #9E9E9E;
  font-size: 14px;
  margin: 0;
}

.legal-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.legal-links a {
  color: #9E9E9E;
  font-size: 14px;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  color: #FFA726;
}

/* COOKIE CONSENT BANNER - Fixed Geometric */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2C2C2C;
  color: #FFFFFF;
  padding: 24px;
  z-index: 1500;
  box-shadow: 0 -4px 0 #D84315;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-banner p {
  flex: 1 1 300px;
  margin: 0;
  font-size: 14px;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.cookie-accept {
  background: #D84315;
  color: #FFFFFF;
  border: 2px solid #D84315;
}

.cookie-accept:hover {
  background: #B71C1C;
  border-color: #B71C1C;
}

.cookie-reject {
  background: transparent;
  color: #E0E0E0;
  border: 2px solid #757575;
}

.cookie-reject:hover {
  border-color: #E0E0E0;
  color: #FFFFFF;
}

.cookie-settings {
  background: transparent;
  color: #FFA726;
  border: 2px solid #FFA726;
}

.cookie-settings:hover {
  background: #FFA726;
  color: #2C2C2C;
}

/* COOKIE MODAL - Geometric Popup */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 24px;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal-content {
  background: #FFFFFF;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  border: 4px solid #D84315;
}

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

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

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #2C2C2C;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
  background: #BDBDBD;
  cursor: pointer;
  clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: #D84315;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: #FFFFFF;
  transition: transform 0.3s ease;
  clip-path: polygon(3px 0, 100% 0, 100% calc(100% - 3px), calc(100% - 3px) 100%, 0 100%, 0 3px);
}

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

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

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

.legal-content h1 {
  color: #D84315;
  margin-bottom: 16px;
}

.legal-content h2 {
  text-align: left;
  color: #2C2C2C;
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content h2::after {
  display: none;
}

.legal-content h3 {
  color: #2C2C2C;
  font-size: 18px;
  margin-top: 24px;
}

.effective-date {
  color: #757575;
  font-style: italic;
  margin-bottom: 32px;
}

/* TIMELINE - Geometric Progress */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0;
  padding-left: 40px;
  border-left: 4px solid #D84315;
}

.timeline-item {
  padding: 24px;
  background: #F5F5F5;
  border: 3px solid #E0E0E0;
  position: relative;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -52px;
  top: 24px;
  width: 16px;
  height: 16px;
  background: #D84315;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.timeline-item .year {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #D84315;
  display: block;
  margin-bottom: 12px;
}

/* CONTENT WRAPPERS - Flexible Layouts */
.content-wrapper,
.text-image-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  margin: 40px 0;
}

.mission,
.vision,
.values {
  flex: 1 1 300px;
  padding: 32px;
  background: #F5F5F5;
  border: 3px solid #E0E0E0;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.mission h3,
.vision h3 {
  color: #D84315;
  font-size: 24px;
  margin-bottom: 16px;
}

.value-item {
  margin-bottom: 24px;
  padding: 16px;
  border-left: 4px solid #D84315;
  background: #FFFFFF;
}

.value-item h4 {
  color: #D84315;
  font-size: 16px;
  margin-bottom: 8px;
}

/* COMPONENTS - Structured Elements */
.components {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.component {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  padding: 32px;
  background: #FFFFFF;
  border: 3px solid #E0E0E0;
  text-align: center;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.component h3 {
  color: #D84315;
  font-size: 20px;
  margin-bottom: 16px;
}

/* TAGS AND LABELS - Angular Badges */
.tagline,
.type,
.category,
.course-tag,
.best-for {
  display: block;
  font-weight: 700;
  color: #757575;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.course-tag {
  background: #FFA726;
  color: #2C2C2C;
  padding: 8px 16px;
  display: inline-block;
  margin-top: 16px;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.count {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #D84315;
  margin-top: 12px;
}

/* BUTTONS AND DOWNLOADS */
.download-button {
  display: inline-block;
  padding: 12px 24px;
  background: #1565C0;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 16px;
  transition: all 0.3s ease;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  border: 2px solid #1565C0;
}

.download-button:hover {
  background: #0D47A1;
  border-color: #0D47A1;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* URGENCY AND GUARANTEES - Highlight Elements */
.urgency {
  color: #D84315;
  font-weight: 700;
  font-size: 16px;
  margin-top: 16px;
}

.guarantee {
  background: #E8F5E9;
  color: #2E7D32;
  padding: 16px 24px;
  font-weight: 700;
  text-align: center;
  margin: 24px 0;
  border: 3px solid #4CAF50;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

/* EFFECTIVENESS METRICS */
.effectiveness {
  display: block;
  font-size: 14px;
  color: #2E7D32;
  font-weight: 700;
  margin-top: 12px;
  padding: 8px 12px;
  background: #E8F5E9;
  border-left: 4px solid #4CAF50;
}

/* RESPONSIVE DESIGN - Mobile First */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 18px;
  }
  
  header nav {
    display: none;
  }
  
  header .cta-button {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .benefit-card,
  .service-card,
  .story-card,
  .category-card,
  .resource-card,
  .tip-card,
  .method-card,
  .reason,
  .link-card,
  .course-card,
  .stat,
  .step,
  .component {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .stats-grid {
    gap: 16px;
  }
  
  .process-steps {
    flex-direction: column;
  }
  
  .footer-grid {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
  
  .cookie-banner .container {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  .text-image-section {
    flex-direction: column;
  }
  
  .timeline {
    padding-left: 24px;
  }
  
  .timeline-item::before {
    left: -36px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  section {
    padding: 32px 16px;
  }
  
  .benefit-card,
  .service-card,
  .story-card,
  .course-card {
    padding: 24px;
  }
  
  .cta-button,
  .cta-primary,
  .cta-secondary {
    padding: 14px 24px;
    font-size: 13px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-banner,
  .cookie-modal,
  .cta-button,
  .cta-primary,
  .cta-secondary {
    display: none;
  }
  
  body {
    color: #000000;
  }
  
  a {
    color: #000000;
    text-decoration: underline;
  }
}

/* ACCESSIBILITY ENHANCEMENTS */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: 3px solid #1565C0;
  outline-offset: 2px;
}

/* ANIMATIONS */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease;
}

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

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

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }