/* =============================================
   KLONDAVERU — DESIGN SYSTEM
   Chromatic Blur Concept | 2026
   ============================================= */


:root {
  
  --color-bg: #f5f3ef;
  --color-bg-alt: #edeae3;
  --color-surface: rgba(255, 252, 248, 0.85);
  --color-surface-glass: rgba(255, 252, 248, 0.6);
  --color-dark-bg: #1a1624;
  --color-dark-surface: rgba(30, 24, 42, 0.85);

  --color-primary: #6b4fa8;
  --color-primary-light: #8b6fc8;
  --color-primary-dark: #4d3680;
  --color-secondary: #e8855a;
  --color-secondary-light: #f0a07a;
  --color-accent: #4ab8c1;
  --color-accent-warm: #d4956a;

  --color-text-dark: #1e1a2e;
  --color-text-mid: #4a4460;
  --color-text-light: #7a7490;
  --color-text-white: #f5f3ef;
  --color-text-white-soft: rgba(245, 243, 239, 0.85);

  --color-border: rgba(107, 79, 168, 0.12);
  --color-border-dark: rgba(245, 243, 239, 0.15);

  
  --gradient-primary: linear-gradient(135deg, #6b4fa8 0%, #4ab8c1 100%);
  --gradient-warm: linear-gradient(135deg, #e8855a 0%, #d4956a 100%);
  --gradient-hero: linear-gradient(135deg, #f5f3ef 0%, #edeae3 100%);
  --gradient-dark: linear-gradient(135deg, #1a1624 0%, #2a1f40 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,252,248,0.7) 0%, rgba(255,252,248,0.4) 100%);

  
  --blob-1: radial-gradient(circle, rgba(107, 79, 168, 0.35) 0%, transparent 70%);
  --blob-2: radial-gradient(circle, rgba(74, 184, 193, 0.3) 0%, transparent 70%);
  --blob-3: radial-gradient(circle, rgba(232, 133, 90, 0.25) 0%, transparent 70%);
  --blob-4: radial-gradient(circle, rgba(212, 149, 106, 0.2) 0%, transparent 70%);
  --blob-5: radial-gradient(circle, rgba(139, 111, 200, 0.3) 0%, transparent 70%);
  --blob-6: radial-gradient(circle, rgba(74, 184, 193, 0.25) 0%, transparent 70%);
  --blob-7: radial-gradient(circle, rgba(232, 133, 90, 0.2) 0%, transparent 70%);
  --blob-8: radial-gradient(circle, rgba(107, 79, 168, 0.4) 0%, transparent 70%);

  
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-2xl: 48px;
  --radius-full: 9999px;

  
  --shadow-sm: 0 1px 3px rgba(30,26,46,0.06), 0 1px 2px rgba(30,26,46,0.04);
  --shadow-md: 0 4px 12px rgba(30,26,46,0.08), 0 2px 4px rgba(30,26,46,0.05);
  --shadow-lg: 0 10px 30px rgba(30,26,46,0.12), 0 4px 8px rgba(30,26,46,0.06);
  --shadow-xl: 0 20px 60px rgba(30,26,46,0.15), 0 8px 20px rgba(30,26,46,0.08);
  --shadow-primary: 0 8px 24px rgba(107,79,168,0.25), 0 2px 6px rgba(107,79,168,0.15);
  --shadow-glass: 0 8px 32px rgba(30,26,46,0.08), inset 0 1px 0 rgba(255,255,255,0.6);

  
  --font-base: 'Work Sans', sans-serif;
  --text-xs: clamp(0.7rem, 1.2vw, 0.8rem);
  --text-sm: clamp(0.85rem, 1.5vw, 0.95rem);
  --text-base: clamp(1rem, 1.8vw, 1.05rem);
  --text-lg: clamp(1.1rem, 2vw, 1.2rem);
  --text-xl: clamp(1.2rem, 2.5vw, 1.4rem);
  --text-2xl: clamp(1.4rem, 3vw, 1.75rem);
  --text-3xl: clamp(1.75rem, 4vw, 2.25rem);
  --text-4xl: clamp(2.2rem, 5vw, 3rem);
  --text-hero: clamp(2.8rem, 7vw, 4.5rem);

  
  --nav-height: 72px;
}


*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-base);
  font-size: var(--text-base);
  color: var(--color-text-dark);
  background-color: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

ul {
  list-style: none;
}


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-5);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-6);
  }
}


.blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.blob--1 {
  width: 600px;
  height: 600px;
  top: -150px;
  left: -200px;
  background: var(--blob-1);
  filter: blur(100px);
  animation: blobFloat 12s ease-in-out infinite;
}

.blob--2 {
  width: 500px;
  height: 500px;
  top: 100px;
  right: -100px;
  background: var(--blob-2);
  filter: blur(90px);
  animation: blobFloat 15s ease-in-out infinite reverse;
}

.blob--3 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: 10%;
  background: var(--blob-3);
  filter: blur(80px);
  animation: blobFloat 18s ease-in-out infinite;
}

.blob--4 {
  width: 350px;
  height: 350px;
  bottom: 50px;
  left: 20%;
  background: var(--blob-4);
  filter: blur(120px);
  animation: blobFloat 20s ease-in-out infinite reverse;
}

.blob--5 {
  width: 700px;
  height: 700px;
  top: -200px;
  right: -200px;
  background: var(--blob-5);
  filter: blur(130px);
  animation: blobFloat 14s ease-in-out infinite;
}

.blob--6 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  left: -150px;
  background: var(--blob-6);
  filter: blur(100px);
  animation: blobFloat 16s ease-in-out infinite reverse;
}

.blob--7 {
  width: 400px;
  height: 400px;
  top: 30%;
  right: 5%;
  background: var(--blob-7);
  filter: blur(90px);
  animation: blobFloat 19s ease-in-out infinite;
}

.blob--8 {
  width: 800px;
  height: 800px;
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blob-8);
  filter: blur(150px);
  animation: blobFloat 22s ease-in-out infinite;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.03); }
  66% { transform: translate(-15px, 20px) scale(0.97); }
}


.sectionLabel {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  padding: var(--space-1) var(--space-3);
  background: rgba(107, 79, 168, 0.08);
  border-radius: var(--radius-full);
  border: 1px solid rgba(107, 79, 168, 0.2);
}

.sectionLabel--light {
  color: var(--color-accent);
  background: rgba(74, 184, 193, 0.12);
  border-color: rgba(74, 184, 193, 0.3);
}

.sectionTitle {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.2;
  margin-bottom: var(--space-4);
}

.sectionTitle--light {
  color: var(--color-text-white);
}

.sectionSubtitle {
  font-size: var(--text-lg);
  color: var(--color-text-mid);
  max-width: 600px;
  line-height: 1.6;
}

.sectionSubtitle--light {
  color: var(--color-text-white-soft);
}

.sectionHeader {
  text-align: center;
  margin-bottom: var(--space-8);
}

.sectionHeader .sectionSubtitle {
  margin: 0 auto;
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 14px 28px;
  font-family: var(--font-base);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
}

.btn--primary {
  background: var(--gradient-primary);
  color: var(--color-text-white);
  border-color: transparent;
  box-shadow: var(--shadow-primary);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(107,79,168,0.35), 0 4px 8px rgba(107,79,168,0.2);
  filter: brightness(1.05);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--ghost {
  background: rgba(255,252,248,0.15);
  color: var(--color-text-white);
  border-color: rgba(255,252,248,0.3);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255,252,248,0.25);
  border-color: rgba(255,252,248,0.5);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-text-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.btn--large {
  padding: 18px 36px;
  font-size: var(--text-base);
}

.btn--full {
  width: 100%;
  justify-content: center;
}


.siteHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background 0.4s ease, box-shadow 0.4s ease, color 0.3s ease;
}

.siteHeader.is-scrolled {
  background: rgba(255, 252, 248, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
}

.siteHeader.is-dark-text .siteHeader_navLink,
.siteHeader.is-dark-text .siteHeader_logoText {
  color: var(--color-text-dark);
}

.siteHeader.is-light-text .siteHeader_navLink,
.siteHeader.is-light-text .siteHeader_logoText {
  color: var(--color-text-white);
}

.siteHeader.is-scrolled .siteHeader_navLink,
.siteHeader.is-scrolled .siteHeader_logoText {
  color: var(--color-text-dark);
}

.siteHeader_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.siteHeader_logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

.siteHeader_logoImg {
  width: 36px;
  height: 36px;
}

.siteHeader_logoText {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text-dark);
  transition: color 0.3s ease;
}

.siteHeader_nav {
  display: none;
  align-items: center;
  gap: var(--space-5);
}

@media (min-width: 900px) {
  .siteHeader_nav {
    display: flex;
  }
}

.siteHeader_navLink {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-dark);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.25s ease;
}

.siteHeader_navLink::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  transition: width 0.3s ease;
}

.siteHeader_navLink:hover::after,
.siteHeader_navLink.is-active::after {
  width: 100%;
}

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

.siteHeader_cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--gradient-primary);
  color: var(--color-text-white) !important;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  box-shadow: var(--shadow-primary);
  transition: all 0.3s ease;
  min-height: 44px;
}

.siteHeader_cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(107,79,168,0.35);
}

.siteHeader_hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

@media (min-width: 900px) {
  .siteHeader_hamburger {
    display: none;
  }
}

.siteHeader_hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text-dark);
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

.siteHeader.is-light-text .siteHeader_hamburger span {
  background: var(--color-text-white);
}

.siteHeader.is-scrolled .siteHeader_hamburger span {
  background: var(--color-text-dark);
}


.mobileMenu_overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 22, 46, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobileMenu_overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

.mobileMenu_sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  background: var(--color-bg);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: var(--space-4) var(--space-6) var(--space-8);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: 0 -20px 60px rgba(30,22,46,0.2);
}

.mobileMenu_sheet.is-open {
  transform: translateY(0);
}

.mobileMenu_handle {
  width: 40px;
  height: 4px;
  background: var(--color-border);
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-6);
}

.mobileMenu_nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.mobileMenu_link {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text-dark);
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
  min-height: 56px;
}

.mobileMenu_link:hover {
  background: rgba(107, 79, 168, 0.06);
  color: var(--color-primary);
}

.mobileMenu_link i {
  width: 20px;
  color: var(--color-primary);
}

.mobileMenu_link--cta {
  background: var(--gradient-primary);
  color: var(--color-text-white);
  margin-top: var(--space-3);
  box-shadow: var(--shadow-primary);
}

.mobileMenu_link--cta i {
  color: var(--color-text-white);
}

.mobileMenu_link--cta:hover {
  background: var(--gradient-primary);
  color: var(--color-text-white);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(107,79,168,0.35);
}


.mainHero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: calc(var(--nav-height) + var(--space-9)) var(--space-5) var(--space-10);
  overflow: hidden;
  background: var(--gradient-hero);
}

@media (min-width: 900px) {
  .mainHero {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    padding: calc(var(--nav-height) + var(--space-9)) var(--space-8) var(--space-10);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }
}

.mainHero_blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.mainHero_content {
  position: relative;
  z-index: 1;
}

.mainHero_badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(107, 79, 168, 0.08);
  border: 1px solid rgba(107, 79, 168, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.mainHero_badge i {
  font-size: 0.9em;
}

.mainHero_title {
  font-size: var(--text-hero);
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.1;
  margin-bottom: var(--space-5);
}

.mainHero_titleAccent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mainHero_subtitle {
  font-size: var(--text-xl);
  color: var(--color-text-mid);
  line-height: 1.6;
  margin-bottom: var(--space-7);
  max-width: 520px;
}

.mainHero_actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.mainHero_imageWrap {
  position: relative;
  z-index: 1;
  display: none;
}

@media (min-width: 900px) {
  .mainHero_imageWrap {
    display: block;
  }
}

.mainHero_image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}


.pageHero {
  position: relative;
  padding: calc(var(--nav-height) + var(--space-9)) 0 var(--space-9);
  overflow: hidden;
}

.pageHero--light {
  background: var(--gradient-hero);
}

.pageHero_blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.pageHero_content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.pageHero_title {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.15;
  margin-bottom: var(--space-4);
}

.pageHero_subtitle {
  font-size: var(--text-xl);
  color: var(--color-text-mid);
  line-height: 1.6;
}


.introSection {
  padding: var(--space-10) 0;
  background: var(--color-bg);
  position: relative;
  z-index: 2;
  margin-top: -60px;
}

.introSection_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 768px) {
  .introSection_grid {
    grid-template-columns: 1fr 1fr;
  }
}

.introSection_text p {
  color: var(--color-text-mid);
  margin-bottom: var(--space-4);
}

.introSection_text .btn {
  margin-top: var(--space-3);
}

.introSection_imageWrap {
  position: relative;
}

.introSection_image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.introSection_floatCard {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--color-surface);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 600;
  color: var(--color-text-dark);
  box-shadow: var(--shadow-glass);
  font-size: var(--text-sm);
}

.introSection_floatCard i {
  color: var(--color-primary);
  font-size: var(--text-xl);
}


.kursinhalteSection {
  position: relative;
  padding: var(--space-10) 0 var(--space-9);
  background: var(--color-bg-alt);
  overflow: hidden;
  z-index: 2;
  margin-top: -60px;
}

.kursinhalteSection_blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.kursinhalteSection_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 600px) {
  .kursinhalteSection_grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1000px) {
  .kursinhalteSection_grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.kursCard {
  position: relative;
  background: var(--color-surface-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: all 0.35s ease;
  box-shadow: var(--shadow-glass);
  overflow: hidden;
}

.kursCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.kursCard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(107, 79, 168, 0.25);
}

.kursCard:hover::before {
  opacity: 1;
}

.kursCard_number {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
  opacity: 0.6;
}

.kursCard_icon {
  width: 52px;
  height: 52px;
  background: rgba(107, 79, 168, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  font-size: var(--text-xl);
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.kursCard:hover .kursCard_icon {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.05);
}

.kursCard_title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--space-3);
}

.kursCard_text {
  font-size: var(--text-sm);
  color: var(--color-text-mid);
  line-height: 1.65;
}


.comparisonSection {
  padding: var(--space-10) 0;
  background: var(--color-bg);
  position: relative;
  z-index: 2;
}

.comparisonSection_cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 768px) {
  .comparisonSection_cards {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}

.compCard {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: all 0.35s ease;
  box-shadow: var(--shadow-md);
}

.compCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.compCard--featured {
  background: var(--color-dark-bg);
  border-color: rgba(107, 79, 168, 0.4);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(107,79,168,0.2);
}

.compCard_badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-warm);
  color: white;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.compCard_header {
  text-align: center;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-border);
}

.compCard--featured .compCard_header {
  border-bottom-color: var(--color-border-dark);
}

.compCard_icon {
  width: 64px;
  height: 64px;
  background: rgba(107, 79, 168, 0.12);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  color: var(--color-primary);
  margin: 0 auto var(--space-4);
  transition: all 0.3s ease;
}

.compCard--featured .compCard_icon {
  background: rgba(107, 79, 168, 0.25);
  color: var(--color-primary-light);
}

.compCard:hover .compCard_icon {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.05);
}

.compCard_title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--space-2);
}

.compCard--featured .compCard_title {
  color: var(--color-text-white);
}

.compCard_tagline {
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

.compCard--featured .compCard_tagline {
  color: var(--color-text-white-soft);
}

.compCard_features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.compCard_features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-mid);
}

.compCard--featured .compCard_features li {
  color: var(--color-text-white-soft);
}

.compCard_features i {
  color: var(--color-accent);
  font-size: 0.85em;
  flex-shrink: 0;
}


.valuesSection {
  position: relative;
  padding: var(--space-10) 0;
  background: var(--gradient-dark);
  overflow: hidden;
  z-index: 2;
  margin-top: -60px;
}

.valuesSection_blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.valuesSection_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 600px) {
  .valuesSection_grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1000px) {
  .valuesSection_grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.valueCard {
  background: rgba(255, 252, 248, 0.06);
  backdrop-filter: blur(16px);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: all 0.35s ease;
}

.valueCard:hover {
  background: rgba(255, 252, 248, 0.1);
  transform: translateY(-4px);
  border-color: rgba(107, 79, 168, 0.4);
}

.valueCard_icon {
  width: 52px;
  height: 52px;
  background: rgba(107, 79, 168, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  color: var(--color-accent);
  margin-bottom: var(--space-4);
  transition: all 0.3s ease;
}

.valueCard:hover .valueCard_icon {
  background: rgba(107, 79, 168, 0.35);
  transform: scale(1.05);
}

.valueCard_title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text-white);
  margin-bottom: var(--space-3);
}

.valueCard_text {
  font-size: var(--text-sm);
  color: var(--color-text-white-soft);
  line-height: 1.65;
}


.aboutPreviewSection {
  padding: var(--space-10) 0;
  background: var(--color-bg);
  position: relative;
  z-index: 2;
  margin-top: -60px;
}

.aboutPreviewSection_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 768px) {
  .aboutPreviewSection_grid {
    grid-template-columns: 1fr 1fr;
  }
}

.aboutPreviewSection_imageWrap {
  position: relative;
}

.aboutPreviewSection_image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.aboutPreviewSection_content p {
  color: var(--color-text-mid);
  margin-bottom: var(--space-4);
}

.aboutPreviewSection_content .btn {
  margin-top: var(--space-3);
}


.ctaBannerSection {
  position: relative;
  padding: var(--space-10) 0;
  background: var(--gradient-dark);
  overflow: hidden;
  z-index: 2;
  margin-top: -60px;
}

.ctaBannerSection_blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ctaBannerSection_content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.ctaBannerSection_title {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-text-white);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.ctaBannerSection_text {
  font-size: var(--text-lg);
  color: var(--color-text-white-soft);
  margin-bottom: var(--space-7);
  line-height: 1.6;
}

.ctaBannerSection_actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}


.storySection {
  padding: var(--space-10) 0;
  background: var(--color-bg);
  position: relative;
  z-index: 2;
}

.storySection_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 768px) {
  .storySection_grid {
    grid-template-columns: 1fr 1fr;
  }
}

.storySection_content p {
  color: var(--color-text-mid);
  margin-bottom: var(--space-4);
}

.storySection_image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}


.approachSection {
  position: relative;
  padding: var(--space-10) 0;
  background: var(--gradient-dark);
  overflow: hidden;
  z-index: 2;
  margin-top: -60px;
}

.approachSection_blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.approachSection_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 600px) {
  .approachSection_grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1000px) {
  .approachSection_grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.approachCard {
  background: rgba(255, 252, 248, 0.06);
  backdrop-filter: blur(16px);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: all 0.35s ease;
}

.approachCard:hover {
  background: rgba(255, 252, 248, 0.1);
  transform: translateY(-4px);
  border-color: rgba(74, 184, 193, 0.35);
}

.approachCard_icon {
  width: 52px;
  height: 52px;
  background: rgba(74, 184, 193, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  color: var(--color-accent);
  margin-bottom: var(--space-4);
  transition: all 0.3s ease;
}

.approachCard:hover .approachCard_icon {
  background: var(--color-accent);
  color: white;
}

.approachCard_title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text-white);
  margin-bottom: var(--space-3);
}

.approachCard p {
  font-size: var(--text-sm);
  color: var(--color-text-white-soft);
  line-height: 1.65;
}


.locationSection {
  padding: var(--space-10) 0;
  background: var(--color-bg);
  position: relative;
  z-index: 2;
  margin-top: -60px;
}

.locationSection_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 768px) {
  .locationSection_grid {
    grid-template-columns: 1fr 1fr;
  }
}

.locationSection_image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.locationSection_content p {
  color: var(--color-text-mid);
  margin-bottom: var(--space-4);
}

.locationSection_details {
  margin-top: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.locationDetail {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-mid);
}

.locationDetail i {
  color: var(--color-primary);
  width: 20px;
}


.methodeSection {
  padding: var(--space-10) 0;
  background: var(--color-bg);
  position: relative;
  z-index: 2;
}

.methodeSection_timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.timelineItem {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-6);
  padding: var(--space-6) 0;
  position: relative;
}

.timelineItem:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 39px;
  top: calc(var(--space-6) + 48px);
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), transparent);
}

.timelineItem_marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timelineItem_step {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  font-weight: 700;
  color: white;
  box-shadow: var(--shadow-primary);
  flex-shrink: 0;
}

.timelineItem_title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--space-3);
}

.timelineItem_content p {
  color: var(--color-text-mid);
  margin-bottom: var(--space-4);
}

.timelineItem_tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.timelineItem_tags span {
  padding: var(--space-1) var(--space-3);
  background: rgba(107, 79, 168, 0.08);
  border: 1px solid rgba(107, 79, 168, 0.15);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-primary);
}


.uebungenSection {
  position: relative;
  padding: var(--space-10) 0;
  background: var(--gradient-dark);
  overflow: hidden;
  z-index: 2;
  margin-top: -60px;
}

.uebungenSection_blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.uebungenSection_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 768px) {
  .uebungenSection_grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.uebungCard {
  background: rgba(255, 252, 248, 0.06);
  backdrop-filter: blur(16px);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.35s ease;
}

.uebungCard:hover {
  transform: translateY(-6px);
  border-color: rgba(74, 184, 193, 0.3);
  box-shadow: var(--shadow-xl);
}

.uebungCard_image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.uebungCard_content {
  padding: var(--space-5);
}

.uebungCard_title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text-white);
  margin-bottom: var(--space-3);
}

.uebungCard p {
  font-size: var(--text-sm);
  color: var(--color-text-white-soft);
  line-height: 1.65;
}


.faqSection {
  padding: var(--space-10) 0;
  background: var(--color-bg);
  position: relative;
  z-index: 2;
  margin-top: -60px;
}

.faqSection_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
  .faqSection_grid {
    grid-template-columns: 1fr 1fr;
  }
}

.faqItem {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  transition: all 0.3s ease;
}

.faqItem:hover {
  border-color: rgba(107, 79, 168, 0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.faqItem_question {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.faqItem_question i {
  color: var(--color-primary);
  margin-top: 3px;
  flex-shrink: 0;
}

.faqItem_answer {
  font-size: var(--text-sm);
  color: var(--color-text-mid);
  line-height: 1.65;
  padding-left: calc(var(--text-base) + var(--space-3));
}

.faqSection_cta {
  text-align: center;
}

.faqSection_cta p {
  color: var(--color-text-mid);
  margin-bottom: var(--space-4);
  font-size: var(--text-lg);
}


.formPageSection {
  position: relative;
  padding: calc(var(--nav-height) + var(--space-9)) 0 var(--space-10);
  background: var(--gradient-hero);
  overflow: hidden;
  min-height: 100vh;
}

.formPageSection_blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.formPageSection_grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: start;
}

@media (min-width: 900px) {
  .formPageSection_grid {
    grid-template-columns: 1fr 1fr;
  }
}

.formPageSection_title {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.formPageSection_info > p {
  color: var(--color-text-mid);
  margin-bottom: var(--space-6);
  font-size: var(--text-lg);
}

.formPageSection_details {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.formDetail {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--color-surface-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.formDetail_icon {
  width: 44px;
  height: 44px;
  background: rgba(107, 79, 168, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: var(--text-lg);
  flex-shrink: 0;
}

.formDetail strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text-dark);
}

.formDetail span {
  font-size: var(--text-xs);
  color: var(--color-text-light);
}

.formPageSection_formWrap {
  background: var(--color-surface);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-7);
  box-shadow: var(--shadow-xl);
}


.contactForm {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.contactForm_field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.contactForm_label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-dark);
}

.contactForm_input,
.contactForm_textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-base);
  font-size: var(--text-sm);
  color: var(--color-text-dark);
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
  outline: none;
  resize: vertical;
}

.contactForm_input:focus,
.contactForm_textarea:focus {
  border-color: var(--color-primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(107, 79, 168, 0.1);
}

.contactForm_input::placeholder,
.contactForm_textarea::placeholder {
  color: var(--color-text-light);
}

.contactForm_privacyRow {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.contactForm_checkbox {
  width: 20px;
  height: 20px;
  accent-color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.contactForm_privacyLabel {
  font-size: var(--text-xs);
  color: var(--color-text-mid);
  line-height: 1.5;
  cursor: pointer;
}

.contactForm_privacyLabel a {
  color: var(--color-primary);
  text-decoration: underline;
}


.contactPageSection {
  padding: var(--space-10) 0;
  background: var(--color-bg);
  position: relative;
  z-index: 2;
}

.contactPageSection_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: start;
}

@media (min-width: 900px) {
  .contactPageSection_grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contactPageSection_formTitle {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--space-6);
}

.contactInfoCard {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-5);
}

.contactInfoCard_title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--space-5);
}

.contactInfoCard_item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border);
}

.contactInfoCard_item:last-child {
  border-bottom: none;
}

.contactInfoCard_item i {
  color: var(--color-primary);
  width: 20px;
  margin-top: 3px;
  flex-shrink: 0;
}

.contactInfoCard_item strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 2px;
}

.contactInfoCard_item a,
.contactInfoCard_item span {
  font-size: var(--text-sm);
  color: var(--color-text-mid);
}

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

.officeDescCard {
  background: var(--color-surface-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-glass);
}

.officeDescCard_title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--space-4);
}

.officeDescCard p {
  font-size: var(--text-sm);
  color: var(--color-text-mid);
  line-height: 1.65;
  margin-bottom: var(--space-3);
}

.officeDescCard p:last-child {
  margin-bottom: 0;
}


.mapSection {
  padding: 0 0 var(--space-10);
  background: var(--color-bg);
  position: relative;
  z-index: 2;
}

.mapSection_wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.mapSection_iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}


.thanksPage {
  min-height: 100vh;
}

.thanksSection {
  position: relative;
  padding: calc(var(--nav-height) + var(--space-9)) 0 var(--space-10);
  background: var(--gradient-hero);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.thanksSection_blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.thanksSection_content {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: var(--space-9);
}

.thanksSection_title {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.thanksSection_subtitle {
  font-size: var(--text-xl);
  color: var(--color-text-mid);
  margin-bottom: var(--space-7);
}

.thanksTimeline {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

.thanksTimeline_item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--space-5);
  align-items: start;
  padding: var(--space-5);
  background: var(--color-surface-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-3);
  transition: all 0.3s ease;
}

.thanksTimeline_item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.thanksTimeline_item--done {
  border-color: rgba(107, 79, 168, 0.2);
}

.thanksTimeline_item--current {
  border-color: rgba(107, 79, 168, 0.4);
  background: rgba(107, 79, 168, 0.06);
  box-shadow: var(--shadow-primary);
}

.thanksTimeline_item--upcoming {
  opacity: 0.6;
}

.thanksTimeline_marker {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  flex-shrink: 0;
}

.thanksTimeline_item--done .thanksTimeline_marker,
.thanksTimeline_item--current .thanksTimeline_marker {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-primary);
}

.thanksTimeline_item--upcoming .thanksTimeline_marker {
  background: var(--color-bg-alt);
  color: var(--color-text-light);
  border: 2px solid var(--color-border);
}

.thanksTimeline_title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--space-2);
}

.thanksTimeline_item--upcoming .thanksTimeline_title {
  color: var(--color-text-light);
}

.thanksTimeline_content p {
  font-size: var(--text-sm);
  color: var(--color-text-mid);
  line-height: 1.5;
}

.thanksTimeline_item--upcoming .thanksTimeline_content p {
  color: var(--color-text-light);
}

.thanksTimeline_connector {
  width: 2px;
  height: 20px;
  background: linear-gradient(to bottom, var(--color-primary), transparent);
  margin: 0 auto;
  margin-left: calc(var(--space-5) + 24px - 1px);
}


.legalPage {
  padding: calc(var(--nav-height) + var(--space-8)) 0 var(--space-10);
  background: var(--color-bg);
  min-height: 100vh;
  position: relative;
}

.legalPage_header {
  margin-bottom: var(--space-8);
}

.legalPage_title {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--space-3);
}

.legalPage_meta {
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

.legalPage_body {
  max-width: 820px;
}

.legalPage_body h2 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--color-border);
}

.legalPage_body h2:first-child {
  margin-top: 0;
}

.legalPage_body p {
  font-size: var(--text-sm);
  color: var(--color-text-mid);
  line-height: 1.75;
  margin-bottom: var(--space-4);
}

.legalPage_body p a {
  color: var(--color-primary);
  text-decoration: underline;
}

.legalPage_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-5);
  font-size: var(--text-sm);
}

.legalPage_table th,
.legalPage_table td {
  padding: var(--space-3) var(--space-4);
  text-align: left;
  border: 1px solid var(--color-border);
  color: var(--color-text-mid);
}

.legalPage_table th {
  background: rgba(107, 79, 168, 0.06);
  font-weight: 700;
  color: var(--color-text-dark);
}

.legalPage_table tr:nth-child(even) td {
  background: rgba(107, 79, 168, 0.02);
}

.legalPage_table strong {
  color: var(--color-text-dark);
  font-weight: 600;
}


.pageFooter {
  background: var(--color-dark-bg);
  padding: var(--space-9) 0 0;
  position: relative;
  z-index: 2;
}

.pageFooter_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

@media (min-width: 600px) {
  .pageFooter_grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1000px) {
  .pageFooter_grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.pageFooter_card {
  padding: var(--space-5);
  background: rgba(255, 252, 248, 0.04);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
}

.pageFooter_logoImg {
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-4);
}

.pageFooter_about {
  font-size: var(--text-sm);
  color: var(--color-text-white-soft);
  line-height: 1.65;
  margin-bottom: var(--space-4);
}

.pageFooter_address {
  font-size: var(--text-xs);
  color: rgba(245, 243, 239, 0.5);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.pageFooter_address i {
  color: var(--color-primary-light);
}

.pageFooter_cardTitle {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text-white);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pageFooter_links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.pageFooter_links li a {
  font-size: var(--text-sm);
  color: var(--color-text-white-soft);
  transition: color 0.25s ease;
  display: inline-block;
  padding: var(--space-1) 0;
}

.pageFooter_links li a:hover {
  color: var(--color-accent);
}

.pageFooter_contactList {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.pageFooter_contactList li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-white-soft);
}

.pageFooter_contactList i {
  color: var(--color-primary-light);
  width: 16px;
  flex-shrink: 0;
}

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

.pageFooter_bottom {
  border-top: 1px solid var(--color-border-dark);
  padding: var(--space-5) 0;
  text-align: center;
}

.pageFooter_bottom p {
  font-size: var(--text-xs);
  color: rgba(245, 243, 239, 0.4);
}


.cookieConsent {
  position: fixed;
  bottom: var(--space-5);
  left: var(--space-5);
  z-index: 9999;
  width: 100%;
  max-width: 360px;
  background: var(--color-surface);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: var(--space-5);
  transform: translateY(calc(100% + var(--space-5)));
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.35s ease;
}

.cookieConsent.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookieConsent_title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.cookieConsent_title i {
  color: var(--color-secondary);
}

.cookieConsent_text {
  font-size: var(--text-xs);
  color: var(--color-text-mid);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.cookieConsent_text a {
  color: var(--color-primary);
  text-decoration: underline;
}

.cookieConsent_buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.cookieConsent_btn {
  padding: 10px 20px;
  font-family: var(--font-base);
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  min-height: 44px;
}

.cookieConsent_btn--accept {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-primary);
}

.cookieConsent_btn--accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(107,79,168,0.3);
}

.cookieConsent_btn--decline {
  background: transparent;
  color: var(--color-text-mid);
  border-color: var(--color-border);
}

.cookieConsent_btn--decline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.cookieConsent_btn--customize {
  background: none;
  border: none;
  color: var(--color-text-light);
  font-size: var(--text-xs);
  cursor: pointer;
  text-decoration: underline;
  padding: var(--space-2);
  min-height: 36px;
}

.cookieConsent_btn--customize:hover {
  color: var(--color-primary);
}

.cookieConsent_customize {
  display: none;
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}

.cookieConsent_customize.is-open {
  display: block;
}

.cookieConsent_category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-2) 0;
}

.cookieConsent_categoryLabel {
  font-size: var(--text-xs);
  color: var(--color-text-mid);
}

.cookieConsent_toggle {
  position: relative;
  width: 36px;
  height: 20px;
}

.cookieConsent_toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookieConsent_toggleSlider {
  position: absolute;
  inset: 0;
  background: var(--color-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookieConsent_toggleSlider::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookieConsent_toggle input:checked + .cookieConsent_toggleSlider {
  background: var(--color-primary);
}

.cookieConsent_toggle input:checked + .cookieConsent_toggleSlider::before {
  transform: translateX(16px);
}

.cookieConsent_toggle input:disabled + .cookieConsent_toggleSlider {
  opacity: 0.5;
  cursor: not-allowed;
}


.tippy-box[data-theme~='custom'] {
  background: var(--color-dark-bg);
  color: var(--color-text-white);
  font-family: var(--font-base);
  font-size: var(--text-xs);
  border-radius: var(--radius-md);
  border: 1px solid rgba(107, 79, 168, 0.3);
  box-shadow: var(--shadow-lg);
  padding: var(--space-2) var(--space-3);
  line-height: 1.5;
  max-width: 240px;
}

.tippy-box[data-theme~='custom'] .tippy-arrow::before {
  color: var(--color-dark-bg);
}


@media (max-width: 599px) {
  .mainHero {
    padding: calc(var(--nav-height) + var(--space-7)) var(--space-5) var(--space-8);
    min-height: auto;
  }

  .mainHero_title {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .mainHero_actions {
    flex-direction: column;
  }

  .mainHero_actions .btn {
    width: 100%;
    justify-content: center;
  }

  .ctaBannerSection_actions {
    flex-direction: column;
    align-items: center;
  }

  .thanksTimeline_item {
    grid-template-columns: 48px 1fr;
    gap: var(--space-4);
  }

  .timelineItem {
    grid-template-columns: 60px 1fr;
    gap: var(--space-4);
  }

  .comparisonSection_cards {
    gap: var(--space-6);
  }

  .compCard--featured {
    order: -1;
  }
}

@media (max-width: 767px) {
  .introSection_floatCard {
    display: none;
  }
}


section {
  position: relative;
}


[id] {
  scroll-margin-top: calc(var(--nav-height) + var(--space-4));
}