@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --pink: #f472b6;
  --pink-light: #fce7f3;
  --pink-dark: #db2777;
  --violet: #a78bfa;
  --violet-light: #ede9fe;
  --violet-dark: #7c3aed;
  --sky: #38bdf8;
  --sky-light: #e0f2fe;
  --sky-dark: #0284c7;
  --teal: #2dd4bf;
  --teal-light: #ccfbf1;

  --grad-main: linear-gradient(135deg, #f472b6 0%, #a78bfa 50%, #38bdf8 100%);
  --grad-soft: linear-gradient(135deg, #fce7f3 0%, #ede9fe 50%, #e0f2fe 100%);
  --grad-warm: linear-gradient(135deg, #f472b6 0%, #a78bfa 100%);
  --grad-cool: linear-gradient(135deg, #a78bfa 0%, #38bdf8 100%);
  --grad-text: linear-gradient(135deg, #ec4899 0%, #8b5cf6 50%, #0ea5e9 100%);

  --bg: #fafafa;
  --bg-card: #ffffff;
  --text-dark: #1e1b4b;
  --text-mid: #4b5563;
  --text-light: #9ca3af;
  --border: #e5e7eb;
  --border-light: #f3f4f6;

  --shadow-sm: 0 1px 3px rgba(167,139,250,0.08), 0 1px 2px rgba(167,139,250,0.05);
  --shadow-md: 0 4px 16px rgba(167,139,250,0.12), 0 2px 8px rgba(244,114,182,0.06);
  --shadow-lg: 0 10px 40px rgba(167,139,250,0.18), 0 4px 16px rgba(244,114,182,0.08);
  --shadow-xl: 0 20px 60px rgba(167,139,250,0.22), 0 8px 24px rgba(56,189,248,0.08);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --space-md: clamp(1rem, 2vw, 1.5rem);
  --space-lg: clamp(1.5rem, 3vw, 2.5rem);
  --space-xl: clamp(2.5rem, 5vw, 4rem);
  --space-2xl: clamp(4rem, 8vw, 7rem);

  --nav-height: 80px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Albert Sans', sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.section {
  padding: var(--space-2xl) 0;
}
.section--tight {
  padding: var(--space-xl) 0;
}
.section--dark {
  background: var(--text-dark);
  color: #f8f7ff;
}
.section--soft {
  background: linear-gradient(160deg, #fdf4ff 0%, #f0f4ff 50%, #f0feff 100%);
}
.section--wide .container {
  max-width: 1320px;
}


h1, h2, h3, h4 { line-height: 1.15; font-weight: 700; }

.heading--display {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.heading--section {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.heading--sub {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
  color: var(--text-mid);
}

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

.label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet-dark);
  background: var(--violet-light);
  padding: 0.3em 0.9em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--grad-main);
  color: white;
  box-shadow: 0 4px 20px rgba(167,139,250,0.35), 0 2px 8px rgba(244,114,182,0.2);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(167,139,250,0.45), 0 4px 12px rgba(244,114,182,0.3);
}
.btn--primary:active { transform: translateY(0); }

.btn--outline {
  background: transparent;
  color: var(--violet-dark);
  border-color: var(--violet);
}
.btn--outline:hover {
  background: var(--violet-light);
  border-color: var(--violet-dark);
  transform: translateY(-2px);
}

.btn--white {
  background: white;
  color: var(--violet-dark);
  box-shadow: var(--shadow-md);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
}


.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition);
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.4);
}
.nav.nav--scrolled {
  padding: 0.65rem 0;
  background: rgba(255,255,255,0.88);
  box-shadow: 0 2px 20px rgba(167,139,250,0.12);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav__logo img {
  height: 44px;
  width: auto;
  transition: height var(--transition);
}
.nav--scrolled .nav__logo img {
  height: 36px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}
.nav__link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 0.35rem 0;
  position: relative;
  transition: color var(--transition);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--grad-main);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav__link:hover { color: var(--violet-dark); }
.nav__link:hover::after { width: 100%; }
.nav__link--active { color: var(--violet-dark); }
.nav__link--active::after { width: 100%; }

.nav__cta { margin-left: 0.5rem; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
.nav__hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: flex;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-slow);
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu__left {
  width: 55%;
  background: var(--text-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 8vw, 5rem) clamp(1.5rem, 4vw, 3rem);
  transform: translateX(-100%);
  transition: transform var(--transition-slow);
}
.mobile-menu.is-open .mobile-menu__left {
  transform: translateX(0);
}
.mobile-menu__right {
  width: 45%;
  background: var(--grad-soft);
  overflow: hidden;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.mobile-menu.is-open .mobile-menu__right {
  transform: translateX(0);
}
.mobile-menu__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.mobile-menu__right-decor {
  position: absolute;
  inset: 0;
  background: var(--grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu__right-decor svg {
  width: 60%;
  opacity: 0.5;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu__nav a {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  color: white;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.mobile-menu__nav a:hover { color: var(--pink); }
.mobile-menu__nav a i { font-size: 0.9em; opacity: 0.6; }

.mobile-menu__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  z-index: 1060;
}
.mobile-menu__close:hover { background: rgba(255,255,255,0.2); }


.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--nav-height) + 2rem);
  padding-bottom: var(--space-2xl);
  background: linear-gradient(160deg, #fdf4ff 0%, #f5f0ff 30%, #eff6ff 60%, #f0feff 100%);
}
.hero__bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
}
.hero__bg-blob--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #f472b6 0%, transparent 70%);
  top: -150px; right: -100px;
}
.hero__bg-blob--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #a78bfa 0%, transparent 70%);
  bottom: -100px; left: -80px;
}
.hero__bg-blob--3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #38bdf8 0%, transparent 70%);
  top: 30%; right: 20%;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero__content { animation: heroFadeUp 0.9s ease-out both; }
.hero__visual { animation: heroFadeIn 1.1s ease-out 0.2s both; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero__heading {
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-md);
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-mid);
  max-width: 480px;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__image-wrap {
  position: relative;
}
.hero__image-wrap::before {
  content: '';
  position: absolute;
  inset: -12px;
  background: var(--grad-main);
  border-radius: var(--radius-xl);
  opacity: 0.15;
  z-index: 0;
  filter: blur(20px);
}
.hero__image-wrap img {
  border-radius: var(--radius-xl);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-xl);
}
.hero__badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: badgePop 1s ease-out 0.6s both;
}
@keyframes badgePop {
  from { opacity: 0; transform: scale(0.8) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.hero__badge-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-cool);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hero__badge-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}
.hero__badge-text span {
  display: block;
  font-weight: 400;
  color: var(--text-light);
  font-size: 0.75rem;
}


.overlap-zone {
  position: relative;
  z-index: 2;
  margin-top: -4rem;
  padding-bottom: var(--space-xl);
}
.overlap-zone .container {
  position: relative;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-main);
  opacity: 0;
  transition: opacity var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.card:hover::before { opacity: 1; }

.card--featured {
  background: var(--grad-main);
  color: white;
  border: none;
}
.card--featured::before { display: none; }
.card--featured .card__icon { background: rgba(255,255,255,0.2); color: white; }
.card--featured .card__title { color: white; }
.card--featured .card__text { color: rgba(255,255,255,0.85); }

.card--compact {
  padding: var(--space-md);
}

.card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  color: var(--violet-dark);
  flex-shrink: 0;
}
.card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}
.card__text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}


.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.feature-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.feature-item:hover { background: var(--grad-soft); }
.feature-item:nth-child(odd) { border-right: 1px solid var(--border); }
.feature-item__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet-dark);
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: background var(--transition);
}
.feature-item:hover .feature-item__icon {
  background: var(--grad-main);
  color: white;
}
.feature-item__content h4 {
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text-dark);
}
.feature-item__content p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
}


.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--grad-main);
  opacity: 0.3;
}
.step {
  text-align: center;
  position: relative;
}
.step__number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--grad-main);
  color: white;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  box-shadow: 0 4px 16px rgba(167,139,250,0.4);
}
.step__title {
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}
.step__text {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}


.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-md);
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}
.gallery-item--tall { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-item--tall img { height: 100%; min-height: 360px; }
.gallery-item:not(.gallery-item--tall) img { aspect-ratio: 4/3; }


.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.contact-card__icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-md);
  background: var(--grad-main);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}
.contact-card__value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}
.contact-card__value a {
  color: inherit;
  transition: color var(--transition);
}
.contact-card__value a:hover { color: var(--violet-dark); }


.form {
  width: 100%;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  align-items: start;
}
.form__row--bottom {
  grid-template-columns: 1fr auto;
  align-items: center;
}
.form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.04em;
}
.form__input,
.form__textarea {
  font-family: inherit;
  font-size: 0.92rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: white;
  color: var(--text-dark);
  transition: all var(--transition);
  width: 100%;
}
.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(167,139,250,0.15);
}
.form__textarea { resize: vertical; min-height: 80px; }
.form__checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-mid);
  cursor: pointer;
}
.form__checkbox-wrap input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--violet-dark);
  cursor: pointer;
  flex-shrink: 0;
}
.form__checkbox-wrap a { color: var(--violet-dark); text-decoration: underline; }


.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.75);
  margin-top: auto;
}
.footer__stats {
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-md) 0;
}
.footer__stats-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.footer__stat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
}
.footer__stat i {
  color: var(--pink);
  font-size: 0.95rem;
}
.footer__stat strong {
  color: white;
  font-weight: 600;
}

.footer__main {
  padding: var(--space-xl) 0 var(--space-lg);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: var(--space-sm);
  max-width: 280px;
}
.footer__brand img { filter: brightness(10); opacity: 0.9; height: 36px; }
.footer__col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  margin-bottom: var(--space-md);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer__links a:hover { color: var(--pink); }
.footer__links a i { font-size: 0.75rem; opacity: 0.6; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-md) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
}
.footer__legal {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.footer__legal a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__legal a:hover { color: white; }


.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 360px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}


.accordion {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.accordion__item {
  border-bottom: 1px solid var(--border);
}
.accordion__item:last-child { border-bottom: none; }
.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  background: white;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: background var(--transition);
  gap: 1rem;
}
.accordion__trigger:hover { background: var(--grad-soft); }
.accordion__trigger.is-open { background: var(--grad-soft); color: var(--violet-dark); }
.accordion__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-mid);
  flex-shrink: 0;
  transition: all var(--transition);
}
.accordion__trigger.is-open .accordion__icon {
  background: var(--grad-main);
  color: white;
  transform: rotate(45deg);
}
.accordion__panel {
  display: none;
  padding: 0 var(--space-lg) var(--space-md);
  background: var(--grad-soft);
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.accordion__panel.is-open { display: block; }


.page-hero {
  padding: calc(var(--nav-height) + 3rem) 0 var(--space-xl);
  background: linear-gradient(160deg, #fdf4ff 0%, #f0f4ff 60%, #f0feff 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(167,139,250,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero__label {
  margin-bottom: var(--space-sm);
}
.page-hero__heading {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
}
.page-hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.7;
}


.cta-strip {
  background: var(--grad-main);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3.5rem) clamp(2rem, 5vw, 4rem);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.cta-strip h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}
.cta-strip p {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: var(--space-lg);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-strip .btn--white:hover { box-shadow: 0 8px 30px rgba(255,255,255,0.3); }


.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--left {
  transform: translateX(-30px);
}
.reveal--left.is-visible {
  transform: translateX(0);
}
.reveal--right {
  transform: translateX(30px);
}
.reveal--right.is-visible {
  transform: translateX(0);
}


.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}
.news-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.news-card__date {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--violet-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}
.news-card__body {
  padding: var(--space-md);
}
.news-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}
.news-card__text {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.news-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}


.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: var(--space-xl) 0 var(--space-2xl);
}
.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--text-dark);
}
.legal-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: var(--space-md) 0 var(--space-xs);
  color: var(--text-dark);
}
.legal-content p {
  font-size: 0.92rem;
  color: var(--text-mid);
  margin-bottom: var(--space-sm);
  line-height: 1.75;
}
.legal-content a { color: var(--violet-dark); text-decoration: underline; }
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-md) 0;
  font-size: 0.88rem;
}
.legal-content table th,
.legal-content table td {
  padding: 0.65rem 1rem;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
.legal-content table th {
  background: var(--grad-soft);
  font-weight: 700;
  color: var(--text-dark);
}
.legal-content table td { color: var(--text-mid); }
.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
}
.legal-content ul li {
  font-size: 0.92rem;
  color: var(--text-mid);
  margin-bottom: 0.35rem;
  line-height: 1.65;
}


.thanks-hero {
  min-height: 100vh;
  background: var(--grad-main);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
  color: white;
}
.thanks-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-md);
}
.thanks-hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  opacity: 0.88;
  max-width: 500px;
  margin: 0 auto var(--space-lg);
  line-height: 1.7;
}


.cookie-trigger {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-mid);
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  font-family: inherit;
}
.cookie-trigger:hover {
  color: var(--violet-dark);
  border-color: var(--violet);
  box-shadow: var(--shadow-md);
}
.cookie-trigger i { color: var(--pink); font-size: 0.85rem; }
.cookie-trigger.pulse {
  animation: cookiePulse 2s ease-in-out 2;
}
@keyframes cookiePulse {
  0%, 100% { box-shadow: var(--shadow-sm); }
  50% { box-shadow: 0 0 0 6px rgba(167,139,250,0.2), var(--shadow-md); }
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,27,75,0.45);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.cookie-modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: white;
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  transform: scale(0.95) translateY(10px);
  transition: transform var(--transition);
}
.cookie-modal-overlay.is-open .cookie-modal {
  transform: scale(1) translateY(0);
}
.cookie-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  gap: 1rem;
}
.cookie-modal__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
}
.cookie-modal__close {
  background: var(--border-light);
  border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 0.85rem;
  transition: all var(--transition);
  flex-shrink: 0;
}
.cookie-modal__close:hover { background: var(--grad-main); color: white; }
.cookie-modal__desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: var(--space-md);
  line-height: 1.65;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  background: var(--border-light);
  border-radius: var(--radius-md);
  gap: 1rem;
}
.cookie-category__info h4 { font-size: 0.88rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.2rem; }
.cookie-category__info p { font-size: 0.77rem; color: var(--text-light); line-height: 1.4; }
.cookie-toggle {
  position: relative;
  width: 44px; height: 24px;
  flex-shrink: 0;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle__slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-toggle__slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: white;
  top: 3px; left: 3px;
  transition: transform var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.cookie-toggle input:checked + .cookie-toggle__slider { background: var(--violet-dark); }
.cookie-toggle input:checked + .cookie-toggle__slider::before { transform: translateX(20px); }
.cookie-toggle input:disabled + .cookie-toggle__slider { background: var(--violet-dark); opacity: 0.6; cursor: not-allowed; }

.cookie-modal__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.cookie-modal__actions .btn { flex: 1; justify-content: center; font-size: 0.85rem; }


.impressum-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-md) 0;
  font-size: 0.88rem;
}
.impressum-table th,
.impressum-table td {
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  vertical-align: top;
}
.impressum-table th {
  background: var(--grad-soft);
  font-weight: 700;
  color: var(--text-dark);
  width: 35%;
}
.impressum-table td { color: var(--text-mid); }


@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 500px; margin: 0 auto; }
  .hero__content { text-align: center; }
  .hero__sub { margin: 0 auto var(--space-lg); }
  .hero__actions { justify-content: center; }
  .hero__badge { left: 0; bottom: -1rem; }

  .footer__main { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--tall { grid-row: span 1; }
  .gallery-item--tall img { min-height: auto; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero__heading { font-size: clamp(2.2rem, 8vw, 3.5rem); }

  .features-grid { grid-template-columns: 1fr; }
  .feature-item:nth-child(odd) { border-right: none; }
  .feature-item { border-right: none !important; }

  .form__row { grid-template-columns: 1fr; }
  .form__row--bottom { grid-template-columns: 1fr; }

  .footer__main { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--tall img { min-height: auto; }

  .process-steps::before { display: none; }

  .cta-strip { padding: var(--space-xl) var(--space-lg); }
}

@media (max-width: 480px) {
  .hero__badge { position: static; margin-top: var(--space-md); display: inline-flex; }
  .hero__image-wrap::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__stats-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .cookie-modal__actions { flex-direction: column; }
  .cookie-modal__actions .btn { flex: none; }
}