/* =================================================================
   CRISP RIVER RHETORIK - SCANDINAVIAN CLEAN DESIGN
   Comprehensive CSS Styles for All Pages
   Design Style: Light colors, natural materials, simple fonts, functional beauty
   ================================================================= */

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

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

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

/* SCANDINAVIAN COLOR PALETTE */
:root {
  --primary-color: #1B4B5A;
  --secondary-color: #2E7D8F;
  --accent-color: #F4A261;
  --text-dark: #2C3E50;
  --text-light: #5A6C7D;
  --background-light: #FAFAFA;
  --background-white: #FFFFFF;
  --border-light: #E8ECEF;
  --shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.08);
  --transition-smooth: all 0.3s ease;
}

/* TYPOGRAPHY - SCANDINAVIAN CLEAN */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 600;
}

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;
  color: var(--text-light);
  line-height: 1.7;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--secondary-color);
}

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

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

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

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: var(--background-white);
  border: 1px solid var(--border-light);
  width: 48px;
  height: 48px;
  border-radius: 8px;
  font-size: 24px;
  color: var(--text-dark);
  cursor: pointer;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-smooth);
}

.mobile-menu-toggle:hover {
  background: var(--primary-color);
  color: var(--background-white);
  transform: scale(1.05);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--background-white);
  z-index: 1000;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: var(--text-dark);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

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

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

.mobile-nav a {
  font-size: 18px;
  color: var(--text-dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.mobile-nav a:hover {
  color: var(--primary-color);
  padding-left: 8px;
}

/* HEADER - SCANDINAVIAN CLEAN */
header {
  background: var(--background-white);
  border-bottom: 1px solid var(--border-light);
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-subtle);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-direction: column;
}

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

.tagline {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  white-space: nowrap;
}

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

.main-nav a {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  transition: var(--transition-smooth);
}

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

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

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

/* BUTTONS - SCANDINAVIAN MINIMALIST */
.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--background-white);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  background: var(--background-white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--background-white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(27, 75, 90, 0.05);
}

button {
  font-family: inherit;
}

/* HERO SECTION - CLEAN & SPACIOUS */
.hero {
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

.hero h1 {
  font-size: 56px;
  color: var(--primary-color);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-badge {
  display: inline-block;
  padding: 12px 24px;
  background: var(--background-white);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 14px;
  box-shadow: var(--shadow-subtle);
}

/* PAGE HERO - BREADCRUMB */
.page-hero {
  background: var(--background-white);
  padding: 60px 20px 40px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 60px;
}

.breadcrumb {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--text-light);
}

.breadcrumb a:hover {
  color: var(--primary-color);
}

/* BENEFITS SECTION - FLEXBOX GRID */
.benefits {
  padding: 60px 20px;
  background: var(--background-white);
  margin-bottom: 60px;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 48px;
  color: var(--primary-color);
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 48px;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 250px;
  max-width: 280px;
  padding: 32px 24px;
  background: var(--background-light);
  border-radius: 12px;
  transition: var(--transition-smooth);
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.benefit-item img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.benefit-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.benefit-item p {
  font-size: 15px;
  color: var(--text-light);
}

.statistics-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 32px 24px;
  background: var(--background-light);
  border-radius: 12px;
}

.statistics-bar span {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
}

/* SERVICES PREVIEW - CARD LAYOUT */
.services-preview {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.services-preview h2 {
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 48px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 48px;
}

.service-card {
  flex: 1 1 320px;
  max-width: 380px;
  padding: 32px;
  background: var(--background-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition-smooth);
  position: relative;
}

.service-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
  border-color: var(--accent-color);
}

.service-card h3 {
  font-size: 22px;
  color: var(--primary-color);
}

.service-card p {
  flex-grow: 1;
  font-size: 15px;
}

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  margin: 16px 0;
}

.payment-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 24px;
}

/* METHODOLOGY PREVIEW - PROCESS STEPS */
.methodology-preview {
  padding: 60px 20px;
  background: var(--background-white);
  margin-bottom: 60px;
}

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

.process-steps {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 200px;
  max-width: 240px;
  gap: 16px;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--background-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

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

.step p {
  font-size: 14px;
  color: var(--text-light);
}

.methodology-preview .btn-secondary {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* TESTIMONIALS - CLEAN CARDS */
.testimonials {
  padding: 60px 20px;
  background: var(--background-light);
  margin-bottom: 60px;
}

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

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

.testimonial-card {
  flex: 1 1 400px;
  max-width: 550px;
  padding: 32px;
  background: var(--background-white);
  border-radius: 12px;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card .rating {
  color: var(--accent-color);
  font-size: 20px;
  margin-bottom: 8px;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  font-style: italic;
}

.testimonial-card .author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.testimonial-card .author strong {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 16px;
}

.testimonial-card .author span {
  color: var(--text-light);
  font-size: 14px;
}

/* TARGET AUDIENCE */
.target-audience {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.audience-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 200px;
  max-width: 220px;
  padding: 24px;
  background: var(--background-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  transition: var(--transition-smooth);
}

.audience-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-4px);
}

.audience-item img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.audience-item p {
  font-weight: 500;
  color: var(--text-dark);
}

/* CTA CONVERSION SECTION */
.cta-conversion,
.cta-booking,
.cta-join,
.cta-experience,
.cta-action,
.cta-join-success {
  padding: 80px 20px;
  background: var(--primary-color);
  text-align: center;
  margin-bottom: 60px;
  border-radius: 16px;
}

.cta-conversion h2,
.cta-booking h2,
.cta-join h2,
.cta-experience h2,
.cta-action h2,
.cta-join-success h2 {
  color: var(--background-white);
  margin-bottom: 16px;
}

.cta-conversion p,
.cta-booking p,
.cta-join p,
.cta-experience p,
.cta-action p,
.cta-join-success p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 32px;
}

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

.cta-conversion .btn-primary,
.cta-booking .btn-primary {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.cta-conversion .btn-primary:hover,
.cta-booking .btn-primary:hover {
  background: var(--background-white);
  color: var(--primary-color);
  border-color: var(--background-white);
}

.cta-conversion .btn-secondary,
.cta-booking .btn-secondary {
  background: var(--background-white);
  color: var(--primary-color);
}

.guarantee,
.urgency {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
}

.contact-info {
  margin-top: 32px;
}

.contact-info a {
  color: var(--background-white);
  text-decoration: underline;
}

/* LOCATION INFO */
.location-info {
  padding: 60px 20px;
  background: var(--background-white);
  margin-bottom: 60px;
}

.location-info h2 {
  text-align: center;
  margin-bottom: 32px;
}

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

.address {
  padding: 32px;
  background: var(--background-light);
  border-radius: 12px;
}

.address p {
  font-size: 16px;
  margin-bottom: 8px;
}

.hours {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  color: var(--text-light);
}

/* COURSE CATALOG - DETAILED CARDS */
.course-catalog {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.course-card-detailed {
  background: var(--background-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 32px;
  transition: var(--transition-smooth);
}

.course-card-detailed:hover {
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-color);
}

.course-card-detailed.highlight {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #FFF9F5 0%, #FFFFFF 100%);
}

.course-card-detailed h2 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

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

.course-meta span {
  padding: 8px 16px;
  background: var(--background-light);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}

.course-meta .price {
  background: var(--accent-color);
  color: var(--background-white);
  font-size: 20px;
}

.course-meta .level {
  background: var(--primary-color);
  color: var(--background-white);
}

/* COURSE BENEFITS */
.course-benefits {
  padding: 60px 20px;
  background: var(--background-light);
  margin-bottom: 60px;
}

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

/* PAYMENT OPTIONS */
.payment-options {
  padding: 60px 20px;
  background: var(--background-white);
  margin-bottom: 60px;
}

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

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

.payment-option {
  flex: 1 1 280px;
  max-width: 350px;
  padding: 32px;
  background: var(--background-light);
  border-radius: 12px;
  text-align: center;
}

.payment-option h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--primary-color);
}

/* FAQ SECTION */
.faq,
.faq-contact,
.faq-quick {
  padding: 60px 20px;
  background: var(--background-white);
  margin-bottom: 60px;
}

.faq h2,
.faq-contact h2,
.faq-quick h2 {
  text-align: center;
  margin-bottom: 48px;
}

.faq-item {
  background: var(--background-light);
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.faq-item p {
  font-size: 15px;
  margin-bottom: 0;
}

/* MISSION & VISION */
.mission-vision {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.mission-text {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 18px;
  line-height: 1.7;
}

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

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 240px;
  max-width: 280px;
  padding: 32px;
  background: var(--background-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
}

.value-item img {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}

/* OUR STORY */
.our-story {
  padding: 60px 20px;
  background: var(--background-light);
  margin-bottom: 60px;
}

.our-story h2 {
  text-align: center;
  margin-bottom: 32px;
}

.our-story p {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: 16px;
  line-height: 1.7;
}

/* EXPERTISE */
.expertise {
  padding: 60px 20px;
  background: var(--background-white);
  margin-bottom: 60px;
}

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

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

.expertise-item {
  flex: 1 1 240px;
  max-width: 280px;
  padding: 32px;
  background: var(--background-light);
  border-radius: 12px;
  text-align: center;
}

.expertise-item h3 {
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 8px;
}

/* STATISTICS */
.statistics {
  padding: 60px 20px;
  background: var(--primary-color);
  margin-bottom: 60px;
}

.statistics h2 {
  text-align: center;
  color: var(--background-white);
  margin-bottom: 48px;
}

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

.stat-item {
  text-align: center;
  flex: 1 1 200px;
  max-width: 240px;
}

.stat-number {
  font-size: 56px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

/* APPROACH */
.approach {
  padding: 60px 20px;
  background: var(--background-white);
  margin-bottom: 60px;
}

.approach h2 {
  text-align: center;
  margin-bottom: 32px;
}

.approach-list {
  max-width: 700px;
  margin: 0 auto;
  list-style: none;
}

.approach-list li {
  padding: 16px 16px 16px 48px;
  margin-bottom: 16px;
  background: var(--background-light);
  border-radius: 8px;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
}

.approach-list li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 20px;
}

/* METHODOLOGY OVERVIEW */
.methodology-overview {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.methodology-overview > p {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 18px;
}

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

.principle-item {
  flex: 1 1 240px;
  max-width: 280px;
  padding: 32px;
  background: var(--background-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  text-align: center;
}

.principle-item h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
}

/* TRAINING PROCESS */
.training-process {
  padding: 60px 20px;
  background: var(--background-light);
  margin-bottom: 60px;
}

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

.process-phases {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.phase {
  flex: 1 1 300px;
  max-width: 360px;
  padding: 32px;
  background: var(--background-white);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.phase-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--background-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

/* TRAINING METHODS */
.training-methods {
  padding: 60px 20px;
  background: var(--background-white);
  margin-bottom: 60px;
}

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

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

.method-item {
  flex: 1 1 240px;
  max-width: 280px;
  padding: 32px;
  background: var(--background-light);
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.method-item img {
  width: 64px;
  height: 64px;
}

/* CORE TECHNIQUES */
.core-techniques {
  padding: 60px 20px;
  background: var(--background-light);
  margin-bottom: 60px;
}

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

.techniques-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.technique-category {
  padding: 32px;
  background: var(--background-white);
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
}

.technique-category h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
}

/* SCIENTIFIC FOUNDATION */
.scientific-foundation,
.customization,
.success-measurement {
  padding: 60px 20px;
  background: var(--background-white);
  margin-bottom: 60px;
}

.scientific-foundation h2,
.customization h2,
.success-measurement h2 {
  text-align: center;
  margin-bottom: 24px;
}

.scientific-foundation p,
.customization p,
.success-measurement p {
  max-width: 800px;
  margin: 0 auto 24px;
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
}

.customization-list {
  max-width: 600px;
  margin: 32px auto 0;
  list-style: none;
}

.customization-list li {
  padding: 12px 12px 12px 40px;
  margin-bottom: 12px;
  position: relative;
  font-size: 16px;
}

.customization-list li::before {
  content: '→';
  position: absolute;
  left: 12px;
  color: var(--accent-color);
  font-weight: 700;
}

.success-rate {
  margin-top: 32px;
  padding: 24px;
  background: var(--background-light);
  border-radius: 8px;
  text-align: center;
  font-size: 18px;
  color: var(--primary-color);
}

/* SUCCESS STORIES */
.featured-story {
  padding: 60px 20px;
  background: var(--background-light);
  margin-bottom: 60px;
}

.featured-story h2 {
  text-align: center;
  margin-bottom: 32px;
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background: var(--background-white);
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
}

.story-content p {
  font-size: 18px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.story-content .author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

/* SUCCESS STORIES GRID */
.success-stories-grid {
  padding: 60px 20px;
  background: var(--background-white);
  margin-bottom: 60px;
}

.success-stories-grid h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.story-card {
  flex: 1 1 380px;
  max-width: 450px;
  padding: 32px;
  background: var(--background-light);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.story-card h3 {
  font-size: 20px;
  color: var(--primary-color);
}

.story-card .position,
.story-card .course {
  font-size: 14px;
  color: var(--text-light);
}

.story-card .rating {
  color: var(--accent-color);
  font-size: 18px;
  margin-top: 8px;
}

/* CAREER IMPACT */
.career-impact {
  padding: 60px 20px;
  background: var(--background-light);
  margin-bottom: 60px;
}

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

.impact-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
}

.impact-stats .stat-item {
  flex: 1 1 280px;
  max-width: 320px;
  padding: 32px;
  background: var(--background-white);
  border-radius: 12px;
  text-align: center;
}

.impact-stats .stat-number {
  font-size: 48px;
  color: var(--primary-color);
}

.impact-stats p {
  font-size: 15px;
  margin-top: 8px;
}

/* TRANSFORMATION METRICS */
.transformation-metrics {
  padding: 60px 20px;
  background: var(--background-white);
  margin-bottom: 60px;
}

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

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

.metric {
  flex: 1 1 320px;
  max-width: 400px;
  padding: 40px;
  background: var(--background-light);
  border-radius: 12px;
  text-align: center;
}

.metric h3 {
  font-size: 18px;
  margin-bottom: 16px;
}

.metric .score {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
  margin: 16px 0;
}

.metric .label {
  font-size: 14px;
  color: var(--text-light);
}

/* SOCIAL PROOF */
.social-proof {
  padding: 60px 20px;
  background: var(--background-light);
  margin-bottom: 60px;
}

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

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

.rating-item {
  flex: 1 1 280px;
  max-width: 320px;
  padding: 32px;
  background: var(--background-white);
  border-radius: 12px;
  text-align: center;
}

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

.rating-item .score {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  margin: 8px 0;
}

/* CONTACT SECTIONS */
.contact-options {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.option-item {
  flex: 1 1 300px;
  max-width: 360px;
  padding: 40px 32px;
  background: var(--background-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: var(--transition-smooth);
}

.option-item:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
}

.option-item img {
  width: 64px;
  height: 64px;
}

.option-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.option-item p {
  margin-bottom: 16px;
}

/* CONTACT FORM */
.contact-form-section {
  padding: 60px 20px;
  background: var(--background-light);
  margin-bottom: 60px;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 48px;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background: var(--background-white);
  border-radius: 12px;
  box-shadow: var(--shadow-subtle);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.input-field {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: var(--transition-smooth);
  background: var(--background-light);
}

.input-field:focus {
  outline: none;
  border-color: var(--primary-color);
  background: var(--background-white);
}

textarea.input-field {
  resize: vertical;
  min-height: 120px;
}

select.input-field {
  cursor: pointer;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: normal;
}

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

.form-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  margin-top: 16px;
}

/* CONTACT INFORMATION */
.contact-information {
  padding: 60px 20px;
  background: var(--background-white);
  margin-bottom: 60px;
}

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

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

.contact-item {
  flex: 1 1 280px;
  max-width: 320px;
  padding: 32px;
  background: var(--background-light);
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

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

.contact-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

/* LOCATION MAP */
.location-map {
  padding: 60px 20px;
  background: var(--background-light);
  margin-bottom: 60px;
}

.location-map h2 {
  text-align: center;
  margin-bottom: 32px;
}

.map-info {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px;
  background: var(--background-white);
  border-radius: 12px;
}

.map-info p {
  font-size: 15px;
  margin-bottom: 8px;
}

/* OFFICE INFO */
.office-info {
  padding: 60px 20px;
  background: var(--background-white);
  margin-bottom: 60px;
}

.office-info h2 {
  text-align: center;
  margin-bottom: 24px;
}

.office-info > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
}

.facilities-list {
  max-width: 600px;
  margin: 0 auto;
  list-style: none;
}

.facilities-list li {
  padding: 12px 12px 12px 40px;
  margin-bottom: 12px;
  position: relative;
  font-size: 15px;
}

.facilities-list li::before {
  content: '✓';
  position: absolute;
  left: 12px;
  color: var(--accent-color);
  font-weight: 700;
}

/* LEGAL PAGES */
.legal-page {
  padding: 60px 20px;
  background: var(--background-white);
  margin-bottom: 60px;
}

.legal-page h1 {
  margin-bottom: 16px;
}

.legal-page .subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 32px;
}

.last-updated {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 32px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p,
.legal-content ul,
.legal-content ol {
  margin-bottom: 16px;
  line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 8px;
}

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

.cookie-table th,
.cookie-table td {
  padding: 12px;
  border: 1px solid var(--border-light);
  text-align: left;
}

.cookie-table th {
  background: var(--background-light);
  font-weight: 600;
  color: var(--text-dark);
}

.contact-privacy {
  margin-top: 40px;
  padding: 24px;
  background: var(--background-light);
  border-radius: 8px;
}

.contact-privacy h3 {
  margin-bottom: 12px;
}

/* THANK YOU PAGE */
.thank-you-hero,
.thank-you-page {
  padding: 80px 20px 60px;
  background: var(--background-white);
  text-align: center;
  margin-bottom: 60px;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--background-white);
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.thank-you-hero h1,
.thank-you-page h1 {
  font-size: 42px;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.thank-you-hero .subtitle,
.thank-you-page .subtitle {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 32px;
}

.confirmation {
  font-size: 15px;
  color: var(--text-light);
  font-style: italic;
  margin-top: 16px;
}

.contact-reminder {
  margin-top: 40px;
  padding: 24px;
  background: var(--background-light);
  border-radius: 8px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-reminder p {
  margin-bottom: 8px;
}

/* NEXT STEPS */
.next-steps {
  padding: 60px 20px;
  background: var(--background-light);
  margin-bottom: 60px;
}

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

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

.step-item {
  flex: 1 1 240px;
  max-width: 280px;
  padding: 32px;
  background: var(--background-white);
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* EXPLORE MORE */
.explore-more {
  padding: 60px 20px;
  background: var(--background-white);
  margin-bottom: 60px;
}

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

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

.explore-item {
  flex: 1 1 300px;
  max-width: 360px;
  padding: 32px;
  background: var(--background-light);
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.explore-item h3 {
  font-size: 20px;
  color: var(--primary-color);
}

/* TESTIMONIAL SINGLE */
.testimonial-single,
.testimonial-featured {
  padding: 60px 20px;
  background: var(--background-light);
  margin-bottom: 60px;
}

.testimonial-single h2 {
  text-align: center;
  margin-bottom: 32px;
}

.testimonial-featured {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background: var(--background-white);
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
}

.testimonial-featured .rating {
  color: var(--accent-color);
  font-size: 24px;
  margin-bottom: 16px;
}

.testimonial-featured p {
  font-size: 18px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.testimonial-featured .author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.testimonial-featured .author .course {
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
}

/* ALTERNATIVE ACTIONS */
.alternative-actions {
  padding: 60px 20px;
  background: var(--background-white);
  margin-bottom: 60px;
}

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

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

.action-item {
  flex: 1 1 320px;
  max-width: 400px;
  padding: 32px;
  background: var(--background-light);
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.action-item img {
  width: 56px;
  height: 56px;
}

/* TRUST REINFORCEMENT */
.trust-reinforcement {
  padding: 60px 20px;
  background: var(--background-light);
  margin-bottom: 60px;
}

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

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.trust-item {
  flex: 1 1 220px;
  max-width: 260px;
  padding: 32px;
  background: var(--background-white);
  border-radius: 12px;
  text-align: center;
}

.trust-item h3 {
  font-size: 36px;
  color: var(--accent-color);
  margin-bottom: 8px;
}

.trust-item p {
  font-size: 15px;
  margin-bottom: 0;
}

/* FOOTER - SCANDINAVIAN CLEAN */
footer {
  background: var(--primary-color);
  color: rgba(255, 255, 255, 0.9);
  padding: 60px 20px 20px;
}

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

.footer-col {
  flex: 1 1 220px;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--background-white);
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  transition: var(--transition-smooth);
}

.footer-col ul li a:hover {
  color: var(--accent-color);
  padding-left: 4px;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1 1 200px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--background-white);
  font-size: 14px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
  padding: 10px 20px;
  background: var(--accent-color);
  color: var(--background-white);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.newsletter-form button:hover {
  background: var(--background-white);
  color: var(--primary-color);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  transition: var(--transition-smooth);
}

.footer-legal a:hover {
  color: var(--accent-color);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--background-white);
  border-top: 2px solid var(--border-light);
  padding: 24px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

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

.cookie-btn {
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.cookie-btn.accept {
  background: var(--primary-color);
  color: var(--background-white);
}

.cookie-btn.accept:hover {
  background: var(--secondary-color);
}

.cookie-btn.reject {
  background: var(--background-light);
  color: var(--text-dark);
  border: 2px solid var(--border-light);
}

.cookie-btn.reject:hover {
  border-color: var(--text-dark);
}

.cookie-btn.settings {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.cookie-btn.settings:hover {
  background: var(--primary-color);
  color: var(--background-white);
}

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

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

.cookie-modal-content {
  background: var(--background-white);
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: var(--text-dark);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.cookie-modal-close:hover {
  color: var(--accent-color);
  transform: rotate(90deg);
}

.cookie-modal h2 {
  margin-bottom: 24px;
  color: var(--primary-color);
}

.cookie-category {
  padding: 20px;
  background: var(--background-light);
  border-radius: 8px;
  margin-bottom: 16px;
}

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

.cookie-category p {
  font-size: 14px;
  margin: 0;
}

.cookie-toggle {
  width: 48px;
  height: 24px;
  background: var(--border-light);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.cookie-toggle.active {
  background: var(--primary-color);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--background-white);
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: var(--transition-smooth);
}

.cookie-toggle.active::after {
  left: 26px;
}

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

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* Stack layouts */
  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  .benefits-grid,
  .services-grid,
  .process-steps,
  .testimonials-grid,
  .audience-grid,
  .values-grid,
  .expertise-grid,
  .stats-grid {
    flex-direction: column;
  }
  
  .benefit-item,
  .service-card,
  .step,
  .testimonial-card,
  .audience-item,
  .value-item,
  .expertise-item,
  .stat-item {
    max-width: 100%;
  }
  
  .statistics-bar {
    flex-direction: column;
    gap: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    max-width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  /* Cookie banner mobile */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Form adjustments */
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
  
  /* Padding adjustments */
  .section,
  .hero,
  .page-hero {
    padding: 40px 16px;
  }
  
  .container {
    padding: 0 16px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .benefits-grid,
  .services-grid,
  .process-steps {
    justify-content: space-around;
  }
  
  .benefit-item,
  .service-card {
    flex: 1 1 calc(50% - 16px);
  }
}

/* SMOOTH 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);
  }
}

/* Accessibility improvements */
*:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cta-conversion,
  .btn-primary,
  .btn-secondary {
    display: none;
  }
  
  body {
    background: white;
  }
  
  a {
    text-decoration: underline;
  }
}