@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #0a1a3a;
  --navy-light: #142a55;
  --navy-dark: #050f25;
  --gold: #c9a961;
  --gold-light: #e0c88a;
  --gold-dark: #a8894a;
  --cream: #f7f4ec;
  --gray-50: #fafafa;
  --gray-100: #f1f1f1;
  --gray-200: #e5e5e5;
  --gray-400: #a3a3a3;
  --gray-600: #525252;
  --gray-800: #262626;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(10, 26, 58, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 26, 58, 0.08);
  --shadow-lg: 0 20px 60px rgba(10, 26, 58, 0.12);
  --shadow-gold: 0 8px 32px rgba(201, 169, 97, 0.25);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1 0 auto;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { color: var(--gray-600); }

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

img {
  display: block;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
  padding-left: 36px;
  position: relative;
}

.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-head .eyebrow { padding-left: 0; }
.section-head .eyebrow::before { display: none; }
.section-head p { margin-top: 16px; font-size: 1.05rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 169, 97, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
}

.btn-light:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
}

.logo-line1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.main-nav {
  display: flex;
  gap: 32px;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-800);
  position: relative;
  padding: 4px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.main-nav a:hover { color: var(--navy); }
.main-nav a:hover::after { width: 100%; }

.hero {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  min-width: 0;
  max-width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--gold);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-badge i { color: var(--gold-dark); }

.hero h1 { margin-bottom: 24px; }
.hero h1 span { color: var(--gold-dark); }

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}

.trust-item { display: flex; flex-direction: column; }
.trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.trust-label {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-md);
}

.hero-card-icon {
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.hero-card strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--navy);
}

.hero-card span {
  font-size: 0.85rem;
  color: var(--gray-600);
}

.advantages {
  padding: 80px 0;
  background: var(--white);
}

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

.adv-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.adv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.adv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.adv-card:hover::before { transform: scaleX(1); }

.adv-card.featured {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  border-color: transparent;
  color: var(--white);
}

.adv-card.featured h3, .adv-card.featured p { color: var(--white); }
.adv-card.featured p { opacity: 0.85; }

.adv-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.adv-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
  box-shadow: var(--shadow-gold);
}

.adv-card.featured .adv-icon {
  background: var(--gold);
}

.adv-card h3 { margin-bottom: 14px; }
.adv-card p { font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }

.adv-card.featured p { color: rgba(255, 255, 255, 0.85); }

.adv-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.adv-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.adv-card.featured .adv-list li { color: rgba(255, 255, 255, 0.85); }

.adv-list i {
  color: var(--gold-dark);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.quote-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.15), transparent 70%);
  border-radius: 50%;
}

.quote-section blockquote {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
  z-index: 1;
}

.quote-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0.6;
}

.quote-section blockquote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  line-height: 1.5;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 32px;
}

.quote-section footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.quote-section cite {
  font-style: normal;
  font-weight: 600;
  color: var(--gold-light);
  font-size: 1rem;
}

.cite-role {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.process {
  padding: 80px 0;
  background: var(--gray-50);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  min-width: 0;
  max-width: 100%;
}

.process-step {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  gap: 24px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  min-width: 0;
  max-width: 100%;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.8;
}

.step-content h3 { margin-bottom: 10px; }
.step-content p { font-size: 0.95rem; line-height: 1.7; margin-bottom: 16px; }

.step-content {
  min-width: 0;
  max-width: 100%;
}

.step-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--cream);
  color: var(--navy);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
}

.step-tag i { color: var(--gold-dark); }

.stats {
  padding: 80px 0;
  background: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  min-width: 0;
  max-width: 100%;
}

.stat-card {
  text-align: center;
  padding: 36px 20px;
  background: linear-gradient(145deg, var(--cream), var(--white));
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.stat-icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin: 0 auto 20px;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.stat-suffix {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-top: 4px;
  display: block;
}

.stat-card p {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.services-detail {
  padding: 80px 0;
  background: var(--gray-50);
}

.tabs-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.tab-btn i {
  font-size: 1.5rem;
  color: var(--navy);
  transition: color var(--transition);
}

.tab-btn span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-800);
}

.tab-btn:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.tab-btn.active {
  background: var(--navy);
  border-color: var(--navy);
}

.tab-btn.active i, .tab-btn.active span { color: var(--gold-light); }

.tab-panel {
  display: none;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.tab-panel.active { display: block; animation: fadeIn 0.4s ease; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  min-width: 0;
  max-width: 100%;
}

.tab-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--cream);
  color: var(--gold-dark);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.tab-text h3 { margin-bottom: 16px; }
.tab-text > p { margin-bottom: 24px; line-height: 1.7; }

.tab-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature i {
  color: var(--gold-dark);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.feature strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.feature span {
  font-size: 0.85rem;
  color: var(--gray-600);
}

.tab-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric-card {
  background: linear-gradient(145deg, var(--cream), var(--white));
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px;
}

.metric-label {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-600);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.metric-value {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.metric-bar {
  height: 6px;
  background: var(--gray-200);
  border-radius: 100px;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 100px;
  transition: width 1s ease;
}

.gemeinsam {
  padding: 80px 0;
  background: var(--white);
}

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

.gemeinsam-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

.gemeinsam-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.gemeinsam-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gemeinsam-card:hover img { transform: scale(1.08); }

.gemeinsam-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 15, 37, 0.95) 0%, rgba(5, 15, 37, 0.4) 50%, transparent 100%);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
}

.gemeinsam-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  width: fit-content;
}

.gemeinsam-overlay h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.gemeinsam-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold-light);
  transition: gap var(--transition);
}

.gemeinsam-card:hover .gemeinsam-more { gap: 14px; }

.modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 15, 37, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.active {
  display: flex;
  opacity: 1;
  animation: modalFade 0.3s ease;
}

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

.modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalSlide 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlide {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: var(--gray-800);
  transition: all var(--transition);
}

.modal-close:hover {
  background: var(--navy);
  color: var(--white);
  transform: rotate(90deg);
}

.modal-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  box-shadow: var(--shadow-gold);
}

.modal-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}

.modal-content h2 {
  margin-bottom: 20px;
}

.modal-content p {
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}

.modal-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-200);
}

.modal-stats div {
  display: flex;
  flex-direction: column;
}

.modal-stats strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--navy);
}

.modal-stats span {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-top: 4px;
}

.testimonials {
  padding: 80px 0;
  background: var(--cream);
}

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

.testimonial {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 0.95rem;
  display: flex;
  gap: 2px;
}

.testimonial p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-800);
  font-style: italic;
  margin-bottom: 24px;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gray-600);
}

.contact-section {
  padding: 80px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
  min-width: 0;
  max-width: 100%;
}

.contact-info h2 { margin-bottom: 20px; }
.contact-info > p { margin-bottom: 32px; line-height: 1.7; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item i {
  width: 44px;
  height: 44px;
  background: var(--cream);
  color: var(--gold-dark);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.contact-item span {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--cream);
  border: 1px solid var(--gold);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
}

.badge-item i { color: var(--gold-dark); }

.contact-form-wrap {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-form {
  position: relative;
  z-index: 1;
}

.contact-form h3 {
  color: var(--white);
  margin-bottom: 28px;
  font-size: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold);
}

.form-group select option {
  background: var(--navy);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 20px 0 24px;
}

.form-check input {
  margin-top: 3px;
  accent-color: var(--gold);
  flex-shrink: 0;
}

.form-check label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.form-check a {
  color: var(--gold-light);
  text-decoration: underline;
}

.contact-form .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  margin-bottom: 32px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item[open] {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 500;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
  font-size: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary i {
  color: var(--gold-dark);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item[open] summary i { transform: rotate(45deg); }

.faq-item p {
  padding: 0 24px 20px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.cta-section {
  padding: 64px 0;
  background: var(--cream);
}

.cta-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.2), transparent 70%);
  border-radius: 50%;
}

.cta-content { position: relative; z-index: 1; }
.cta-content h2 { color: var(--white); margin-bottom: 12px; }
.cta-content p { color: rgba(255, 255, 255, 0.8); font-size: 1.05rem; }

.cta-card .btn { position: relative; z-index: 1; flex-shrink: 0; }

.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 24px;
  margin-top: auto;
  font-size: 0.95rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo a { color: var(--white); }
.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-links h4, .footer-contact h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold-light); }

.footer-contact p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-contact strong { color: var(--white); }

.footer-disclaimer {
  padding: 24px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer strong { color: rgba(255, 255, 255, 0.7); }

.footer-bottom {
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 90;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-4px);
}

.legal-main {
  padding: 64px 24px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  min-height: calc(100vh - 200px);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  word-break: break-word;
}

.legal-content h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 12px;
  color: var(--navy);
}

.legal-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--navy);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

.legal-content h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--navy-light);
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-800);
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  margin: 16px 0;
  padding-left: 1.5rem;
  color: var(--gray-800);
}

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

.legal-content a {
  color: var(--gold-dark);
  text-decoration: underline;
  transition: color var(--transition);
}

.legal-content a:hover {
  color: var(--navy);
}

.legal-date {
  display: inline-block;
  padding: 6px 14px;
  background: var(--cream);
  color: var(--gold-dark);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 32px;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.9rem;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.legal-table thead {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}

.legal-table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.legal-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-800);
}

.legal-table tbody tr:last-child td {
  border-bottom: none;
}

.legal-table tbody tr:nth-child(even) {
  background: var(--gray-50);
}

.legal-table tbody tr:hover {
  background: var(--cream);
}

.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.thanks-main::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.thanks-main::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.1), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.thanks-card {
  position: relative;
  z-index: 1;
  max-width: 640px;
  width: 100%;
  text-align: center;
  background: var(--white);
  padding: 56px 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  animation: thanksFadeIn 0.6s ease;
}

@keyframes thanksFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.thanks-logo {
  width: 50px;
  height: 50px;
  margin: 0 auto 24px;
  border-radius: 8px;
  display: block;
}

.thanks-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  background: var(--cream);
  color: var(--gold-dark);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.thanks-card h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.3;
}

.thanks-card h1 span {
  color: var(--gold-dark);
  font-weight: 700;
}

.thanks-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--gray-800);
  margin-bottom: 16px;
}

.thanks-text strong {
  color: var(--navy);
  font-weight: 600;
}

.thanks-text-secondary {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 32px;
}

.thanks-card .btn {
  margin-top: 8px;
}

[data-aos="fade-right"]:not(.aos-animate) {
  transform: translate3d(-32px, 0, 0) !important;
}

[data-aos="fade-left"]:not(.aos-animate) {
  transform: translate3d(32px, 0, 0) !important;
}

[data-aos="flip-left"]:not(.aos-animate) {
  transform: translate3d(0, 24px, 0) !important;
  opacity: 0;
}

[data-aos="flip-left"].aos-animate {
  transform: translate3d(0, 0, 0) !important;
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .adv-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .tabs-nav { grid-template-columns: repeat(2, 1fr); }
  .tab-grid { grid-template-columns: 1fr; }
  .gemeinsam-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-card { flex-direction: column; text-align: center; padding: 40px 28px; }
  .legal-content { padding: 36px 28px; }
  .legal-table { font-size: 0.8rem; }
  .legal-table th, .legal-table td { padding: 10px 12px; }
}

@media (max-width: 900px) {
  [data-aos] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }

  .hero-grid > *,
  .story-layout > *,
  .order-grid > *,
  .testimonial-grid > * {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .hero { padding: 40px 0; }
  .hero-trust { flex-direction: column; gap: 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .process-step {
    padding: 20px 14px;
    gap: 12px;
    flex-wrap: wrap;
  }
  .step-num {
    font-size: 2.1rem;
  }
  .step-content {
    width: 100%;
  }
  .step-content h3,
  .step-content p,
  .step-tag {
    word-break: break-word;
  }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .tabs-nav { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .modal-content { padding: 32px 24px; }
  .contact-form-wrap { padding: 28px 20px; }
  .back-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; }
  .legal-main { padding: 40px 16px; }
  .legal-content { padding: 28px 20px; }
  .legal-content h1 { font-size: 1.8rem; }
  .legal-content h2 { font-size: 1.4rem; margin-top: 32px; }
  .legal-content h3 { font-size: 1.1rem; }
  .legal-table {
    display: block;
    overflow-x: visible;
    border: none;
    box-shadow: none;
  }
  .legal-table thead {
    display: none;
  }
  .legal-table tbody,
  .legal-table tr,
  .legal-table td {
    display: block;
    width: 100%;
  }
  .legal-table tr {
    margin-bottom: 10px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    padding: 10px 12px;
  }
  .legal-table td {
    padding: 4px 0;
    border: none;
    word-break: break-word;
  }
  .legal-table td:nth-child(1)::before { content: "Name: "; font-weight: 600; color: var(--navy); }
  .legal-table td:nth-child(2)::before { content: "Anbieter: "; font-weight: 600; color: var(--navy); }
  .legal-table td:nth-child(3)::before { content: "Zweck: "; font-weight: 600; color: var(--navy); }
  .legal-table td:nth-child(4)::before { content: "Ablauf: "; font-weight: 600; color: var(--navy); }
  .thanks-card { padding: 40px 24px; }
  .thanks-text { font-size: 1.1rem; }
  .logo a { flex-direction: column; }
  .logo a span,
  .footer-contact,
  .footer-links {
    word-break: break-all;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .header-inner {
    padding: 12px 14px;
    gap: 16px;
    flex-wrap: wrap;
  }

  .contact-form-wrap {
    padding: 20px 14px;
  }

  .btn {
    width: 100%;
    max-width: 100%;
  }
}