:root {
  --color-bg: #f4f3ef;
  --color-bg-dark: #1a1c20;
  --color-bg-card: #ffffff;
  --color-primary: #2d5be3;
  --color-primary-dark: #1e44c8;
  --color-accent: #e85d26;
  --color-accent-light: #fff0ea;
  --color-text: #1e2026;
  --color-text-muted: #6b7280;
  --color-text-light: #f0ede8;
  --color-border: #e2dfd8;
  --color-dark-card: #232630;

  --shadow-sm: 0 1px 3px rgba(30,32,37,0.08), 0 1px 2px rgba(30,32,37,0.04);
  --shadow-md: 0 4px 12px rgba(30,32,37,0.1), 0 2px 4px rgba(30,32,37,0.06);
  --shadow-lg: 0 10px 30px rgba(30,32,37,0.12), 0 4px 8px rgba(30,32,37,0.07);
  --shadow-xl: 0 20px 50px rgba(30,32,37,0.15), 0 8px 16px rgba(30,32,37,0.08);
  --shadow-primary: 0 8px 24px rgba(45,91,227,0.25), 0 2px 6px rgba(45,91,227,0.12);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 7rem;

  --font-display: 'Wix Madefor Display', sans-serif;
  --font-body: 'Wix Madefor Text', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

.container--narrow {
  max-width: 860px;
}


.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(244,243,239,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

.nav--scrolled {
  box-shadow: 0 2px 20px rgba(30,32,37,0.12), 0 1px 4px rgba(30,32,37,0.06);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-text);
  transition: opacity 0.2s;
}
.nav__brand:hover { opacity: 0.8; }
.nav__logo { width: 34px; height: 34px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav__link:hover, .nav__link--active {
  color: var(--color-primary);
  background: rgba(45,91,227,0.07);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 1rem var(--space-md) 1.25rem;
  border-top: 1px solid var(--color-border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.nav__mobile.open {
  max-height: 400px;
  display: flex;
}

.nav__mobile-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid var(--color-border);
  transition: color 0.2s;
}
.nav__mobile-link:last-child { border-bottom: none; }
.nav__mobile-link:hover, .nav__mobile-link--active { color: var(--color-primary); }


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  min-height: 44px;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
}
.btn--primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(45,91,227,0.3), 0 4px 8px rgba(45,91,227,0.15);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn--white {
  background: #fff;
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}
.btn--white:hover {
  background: var(--color-bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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


.section {
  padding: var(--space-2xl) 0;
}

.section--light {
  background: var(--color-bg);
}

.section--dark {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}

.section--features {
  background: #eeecea;
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-xl);
}

.section__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(45,91,227,0.1);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: var(--space-sm);
}

.section__label--light {
  color: #a5bfff;
  background: rgba(165,191,255,0.12);
}

.section__heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.section--dark .section__heading {
  color: var(--color-text-light);
}

.section__subtext {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.section--dark .section__subtext {
  color: #9ca3af;
}


.hero {
  min-height: 100vh;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__blob {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50% 42% 58% 38% / 45% 55% 45% 55%;
  background: radial-gradient(ellipse at center, rgba(45,91,227,0.12) 0%, rgba(45,91,227,0.04) 60%, transparent 80%);
  top: -100px;
  right: -100px;
  animation: blobMove 14s ease-in-out infinite;
  pointer-events: none;
}

.hero__blob--two {
  width: 380px;
  height: 380px;
  background: radial-gradient(ellipse at center, rgba(232,93,38,0.1) 0%, rgba(232,93,38,0.03) 60%, transparent 80%);
  top: auto;
  bottom: 50px;
  right: auto;
  left: -80px;
  animation: blobMove 18s ease-in-out infinite reverse;
}

@keyframes blobMove {
  0%, 100% { border-radius: 50% 42% 58% 38% / 45% 55% 45% 55%; transform: translate(0, 0) scale(1); }
  25% { border-radius: 62% 38% 46% 54% / 55% 42% 58% 45%; transform: translate(20px, -30px) scale(1.04); }
  50% { border-radius: 38% 62% 54% 46% / 42% 58% 42% 58%; transform: translate(-15px, 20px) scale(0.97); }
  75% { border-radius: 55% 45% 38% 62% / 58% 38% 62% 42%; transform: translate(25px, 10px) scale(1.02); }
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.hero__text {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
}

.hero__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.5);
}

.hero__steps {
  position: relative;
  z-index: 1;
  padding: 0 var(--space-md) var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.steps__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  flex-wrap: wrap;
  gap: 1rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
  min-width: 120px;
}

.step__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(45,91,227,0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.step:hover .step__icon {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary);
}

.step__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text);
}

.step__desc {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: center;
}

.step__connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), rgba(45,91,227,0.2));
  flex-shrink: 0;
  display: none;
}


.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.bento__cell {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
}

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

.bento__cell--wide {
  grid-column: span 2;
  padding: 0;
  overflow: hidden;
  min-height: 280px;
}

.bento__cell--tall {
  grid-row: span 2;
  padding: 0;
  overflow: hidden;
}

.bento__cell--accent {
  background: linear-gradient(135deg, rgba(45,91,227,0.08) 0%, rgba(45,91,227,0.02) 100%);
  border-color: rgba(45,91,227,0.2);
}

.bento__cell--dark {
  background: var(--color-bg-dark);
  border-color: #2d3148;
  color: var(--color-text-light);
}

.bento__cell--dark .bento__title { color: var(--color-text-light); }
.bento__cell--dark .bento__text { color: #9ca3af; }
.bento__cell--dark .bento__icon-wrap { background: rgba(165,191,255,0.1); color: #a5bfff; }

.bento__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento__img--cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bento__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md) var(--space-lg);
  background: linear-gradient(to top, rgba(20,22,28,0.88) 0%, rgba(20,22,28,0.4) 60%, transparent 100%);
  color: #fff;
}

.bento__overlay .bento__title { color: #fff; }
.bento__overlay .bento__text { color: rgba(255,255,255,0.82); }

.bento__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(45,91,227,0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--space-md);
  transition: all 0.3s ease;
}

.bento__cell:hover .bento__icon-wrap {
  background: var(--color-primary);
  color: #fff;
  transform: scale(1.08);
}

.bento__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-text);
  margin-bottom: 0.6rem;
}

.bento__text {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}


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

.features__intro {
  position: sticky;
  top: 100px;
}

.features__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border);
  transition: all 0.2s ease;
}

.feature:first-child { border-top: 1px solid var(--color-border); }

.feature:hover {
  padding-left: 0.5rem;
}

.feature__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(45,91,227,0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature:hover .feature__icon {
  background: var(--color-primary);
  color: #fff;
}

.feature__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.feature__text {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}


.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all 0.3s ease;
}

.card--service {
  background: var(--color-dark-card);
  border: 1px solid #2d3148;
  position: relative;
  overflow: hidden;
}

.card--service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card--service:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 4px 8px rgba(0,0,0,0.2);
  border-color: rgba(45,91,227,0.3);
}

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

.card--featured {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-color: transparent;
}

.card--featured .card__title { color: #fff; }
.card--featured .card__text { color: rgba(255,255,255,0.8); }
.card--featured .card__icon { background: rgba(255,255,255,0.15); color: #fff; }

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(45,91,227,0.15);
  color: #a5bfff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--space-md);
  transition: all 0.3s ease;
}

.card--service:hover .card__icon {
  background: rgba(45,91,227,0.25);
  transform: scale(1.1);
}

.card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: 0.6rem;
}

.card__text {
  font-size: 0.9rem;
  color: #9ca3af;
  line-height: 1.65;
}

.card__badge {
  display: inline-block;
  margin-top: var(--space-sm);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.2);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}


.section--cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a3db5 100%);
}

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

.cta__heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.cta__text {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

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


.footer {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: var(--space-2xl) 0 0;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid #2d3148;
}

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

.footer__story {
  font-size: 0.95rem;
  color: #9ca3af;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 360px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.footer__col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}

.footer__link {
  display: block;
  font-size: 0.9rem;
  color: #9ca3af;
  padding: 0.3rem 0;
  transition: color 0.2s;
}
.footer__link:hover { color: var(--color-text-light); }

.footer__info {
  font-size: 0.9rem;
  color: #9ca3af;
  line-height: 1.7;
  margin-bottom: 0.4rem;
}

.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-md) var(--space-md);
  font-size: 0.85rem;
  color: #6b7280;
}


.page-hero {
  padding: 120px 0 var(--space-2xl);
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.page-hero__content {
  max-width: 720px;
}

.page-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.page-hero__text {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}


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

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

.story__text p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}


.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

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

.timeline__marker {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(45,91,227,0.15);
  line-height: 1;
  padding-top: 0.25rem;
  transition: color 0.3s;
}

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

.timeline__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: 0.6rem;
}

.timeline__text {
  font-size: 0.97rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}


.values__grid { }

.values__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: var(--space-xl);
}

.value__card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

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

.value__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(45,91,227,0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
  transition: all 0.3s ease;
}

.value__card:hover .value__icon {
  background: var(--color-primary);
  color: #fff;
}

.value__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.value__text {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}


.process__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.process__card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  position: relative;
}

.process__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(45,91,227,0.2);
}

.process__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(45,91,227,0.1);
  line-height: 1;
  margin-bottom: var(--space-sm);
  transition: color 0.3s;
}

.process__card:hover .process__num { color: rgba(45,91,227,0.2); }

.process__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(45,91,227,0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
  transition: all 0.3s ease;
}

.process__card:hover .process__icon {
  background: var(--color-primary);
  color: #fff;
}

.process__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: 0.6rem;
}

.process__text {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.process__detail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.process__tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(45,91,227,0.08);
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
}


.formats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: var(--space-xl);
}

.format__item {
  background: var(--color-dark-card);
  border: 1px solid #2d3148;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all 0.3s ease;
}

.format__item:hover {
  transform: translateY(-4px);
  border-color: rgba(45,91,227,0.3);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.format__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(165,191,255,0.1);
  color: #a5bfff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
  transition: all 0.3s ease;
}

.format__item:hover .format__icon {
  background: var(--color-primary);
  color: #fff;
}

.format__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.format__text {
  font-size: 0.92rem;
  color: #9ca3af;
  line-height: 1.65;
}


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

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

.collab__text p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}


.check__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-bottom: var(--space-xl);
}

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

.check__intro-text p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.selfcheck__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.check__area {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.check__area-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid rgba(45,91,227,0.15);
}

.check__area-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(45,91,227,0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.check__area-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-text);
}

.check__questions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.check__q {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 0.75rem;
  align-items: start;
}

.check__q-marker {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-primary);
  background: rgba(45,91,227,0.1);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  text-align: center;
  margin-top: 0.15rem;
}

.check__q p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.check__cta {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.check__cta-text {
  font-size: 1.05rem;
  color: #9ca3af;
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}


.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  align-items: start;
}

.method__card {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  margin-bottom: var(--space-sm);
  background: var(--color-bg-card);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.method__card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(45,91,227,0.2);
}

.method__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.method__card--email .method__icon { background: rgba(45,91,227,0.1); color: var(--color-primary); }
.method__card--phone .method__icon { background: rgba(16,185,129,0.1); color: #059669; }
.method__card--form .method__icon { background: rgba(232,93,38,0.1); color: var(--color-accent); }
.method__card--visit .method__icon { background: rgba(124,58,237,0.1); color: #7c3aed; }

.method__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 0.3rem;
}

.method__text {
  font-size: 0.87rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 0.4rem;
}

.method__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: color 0.2s;
}
.method__link:hover { color: var(--color-primary-dark); }


.contact__form-wrap {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.accordion {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.accordion.open {
  box-shadow: var(--shadow-md);
  border-color: rgba(45,91,227,0.25);
}

.accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--space-md);
  cursor: pointer;
  background: var(--color-bg);
  transition: background 0.2s;
  min-height: 56px;
}

.accordion__header:hover {
  background: rgba(45,91,227,0.04);
}

.accordion.open .accordion__header {
  background: rgba(45,91,227,0.05);
  border-bottom: 1px solid var(--color-border);
}

.accordion__title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text);
}

.accordion__num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  background: rgba(45,91,227,0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.accordion__arrow {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.accordion.open .accordion__arrow {
  transform: rotate(180deg);
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 var(--space-md);
}

.accordion.open .accordion__body {
  max-height: 600px;
  padding: var(--space-md);
}

.form__field {
  margin-bottom: var(--space-md);
}

.form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.form__input, .form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form__input:focus, .form__textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(45,91,227,0.12);
}

.form__textarea { resize: vertical; }

.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
}

.form__checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.form__checkbox-label {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.form__link {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}


.section--map {
  padding: 0 0 var(--space-2xl);
  background: var(--color-bg);
}

.map__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.map__frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
}


.thanks__main {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px var(--space-md) var(--space-2xl);
}

.thanks__wrap {
  max-width: 600px;
  text-align: center;
}

.thanks__icon {
  font-size: 4rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.thanks__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.thanks__text {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.thanks__next {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  text-align: left;
  margin-bottom: var(--space-lg);
}

.thanks__next-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.thanks__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.thanks__step-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(45,91,227,0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.thanks__step h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 0.3rem;
}

.thanks__step p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}


.legal__main {
  padding: 120px 0 var(--space-2xl);
}

.legal__header {
  margin-bottom: var(--space-xl);
}

.legal__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.legal__date {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.legal__card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  margin-bottom: var(--space-md);
}

.legal__card--highlight {
  border-left: 4px solid var(--color-primary);
  background: rgba(45,91,227,0.03);
}

.legal__card--intro {
  background: rgba(45,91,227,0.04);
  border-left: 4px solid var(--color-primary);
}

.legal__card h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.legal__card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

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

.legal__card ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

.legal__card ul li {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}

.legal__link {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.legal__link:hover { color: var(--color-primary-dark); }


.impressum__table {
  width: 100%;
  border-collapse: collapse;
}

.impressum__table tr {
  border-bottom: 1px solid var(--color-border);
}

.impressum__table tr:last-child { border-bottom: none; }

.impressum__table td {
  padding: 0.75rem 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  vertical-align: top;
}

.impressum__label {
  font-weight: 600;
  color: var(--color-text);
  width: 180px;
  flex-shrink: 0;
}


.cookie__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-md);
  font-size: 0.88rem;
}

.cookie__table th {
  text-align: left;
  padding: 0.6rem 0.75rem;
  background: rgba(45,91,227,0.06);
  color: var(--color-text);
  font-weight: 700;
  border-bottom: 2px solid rgba(45,91,227,0.15);
}

.cookie__table td {
  padding: 0.6rem 0.75rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}

.cookie__table tr:last-child td { border-bottom: none; }


[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento__cell--wide { grid-column: span 2; }
  .bento__cell--tall { grid-row: span 1; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .features__grid { gap: var(--space-xl); }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile { display: flex; max-height: 0; }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--space-lg) var(--space-md);
  }
  .hero__text { max-width: 100%; }
  .hero__actions { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__img { height: 260px; }

  .steps__bar { padding: var(--space-sm); }
  .step { min-width: 80px; }

  .bento { grid-template-columns: 1fr; }
  .bento__cell--wide { grid-column: span 1; }

  .features__grid { grid-template-columns: 1fr; }
  .features__intro { position: static; }

  .services__grid { grid-template-columns: 1fr; }

  .cta__block { grid-template-columns: 1fr; }
  .cta__img { height: 240px; }

  .footer__inner { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer__links { grid-template-columns: repeat(2, 1fr); }

  .story__grid { grid-template-columns: 1fr; }
  .story__img { height: 280px; }

  .values__cards { grid-template-columns: 1fr; }

  .process__grid { grid-template-columns: 1fr; }
  .formats__grid { grid-template-columns: 1fr; }
  .collab__block { grid-template-columns: 1fr; }
  .collab__photo { height: 280px; }

  .check__intro { grid-template-columns: 1fr; }
  .check__photo { height: 240px; }
  .selfcheck__grid { grid-template-columns: 1fr; }

  .contact__grid { grid-template-columns: 1fr; }

  .section { padding: var(--space-xl) 0; }
  .page-hero { padding: 100px 0 var(--space-xl); }

  .timeline__item { grid-template-columns: 50px 1fr; gap: var(--space-sm); }
  .timeline__marker { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .footer__links { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .steps__bar { flex-direction: column; align-items: flex-start; }
  .step { flex-direction: row; min-width: auto; gap: 0.75rem; }
  .step__desc { display: none; }
}