@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,800&family=Inter:wght@400;500;600&display=swap');

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #F8F7F4;
  background: #0F1F3D;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --navy:       #0F1F3D;
  --navy-dark:  #091628;
  --navy-mid:   #142847;
  --mint:       #2EC4A0;
  --mint-dark:  #0C7A62;
  --white:      #F8F7F4;
  --white-60:   rgba(248,247,244,0.6);
  --white-40:   rgba(248,247,244,0.4);
  --white-12:   rgba(248,247,244,0.12);
  --white-08:   rgba(248,247,244,0.08);
  --white-05:   rgba(248,247,244,0.05);
  --mint-12:    rgba(46,196,160,0.12);
  --mint-15:    rgba(46,196,160,0.15);
  --mint-20:    rgba(46,196,160,0.20);
  --mint-30:    rgba(46,196,160,0.30);
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body:    'Inter', sans-serif;
  --radius-sm:  6px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;
  --container:  1160px;
  --gutter:     clamp(20px, 5vw, 40px);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--mint-12);
  border: 1px solid var(--mint-30);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  color: var(--mint);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  flex-shrink: 0;
}

.section-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--mint);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--mint);
  color: var(--navy);
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  text-decoration: none;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white-60);
  border: 1px solid var(--white-12);
  padding: 13px 22px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: var(--font-body);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}

.btn-ghost:hover {
  border-color: var(--white-40);
  color: var(--white);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.tp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid var(--white-08);
  backdrop-filter: blur(12px);
}

.tp-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.tp-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--white);
  flex-shrink: 0;
}

.tp-logo span {
  color: var(--mint);
}

.tp-nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.tp-nav-links a {
  color: var(--white-60);
  font-size: 14px;
  transition: color 0.2s;
}

.tp-nav-links a:hover {
  color: var(--white);
}

.tp-nav-cta {
  background: var(--mint);
  color: var(--navy);
  border: none;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.2s;
  text-decoration: none;
  display: inline-block;
}

.tp-nav-cta:hover {
  opacity: 0.9;
}

/* Mobile menu toggle */
.tp-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--white);
  flex-direction: column;
  gap: 5px;
}

.tp-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 6vw, 80px);
  background: var(--navy);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 22px;
}

.hero-headline .ac {
  color: var(--mint);
}

.hero-headline .ul {
  position: relative;
  display: inline-block;
}

.hero-headline .ul::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--mint);
  border-radius: 2px;
}

.hero-sub {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--white-60);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* Hero right: info cards */
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-profile-card {
  background: var(--white-05);
  border: 1px solid var(--white-12);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--navy);
  flex-shrink: 0;
  overflow: hidden;
}

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

.profile-name {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 2px;
}

.profile-role {
  font-size: 13px;
  color: var(--white-40);
}

.digital-badge {
  margin-left: auto;
  background: var(--mint-12);
  border: 1px solid var(--mint-20);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--mint);
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.stat-card {
  background: var(--white-05);
  border: 1px solid var(--white-12);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--mint-15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--mint);
  flex-shrink: 0;
}

.stat-label {
  font-size: 12px;
  color: rgba(248,247,244,0.45);
  margin-bottom: 3px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.tp-trust {
  background: var(--navy);
  padding: 18px 0;
  border-top: 1px solid var(--white-08);
}

.tp-trust .container {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 11px;
  color: rgba(248,247,244,0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  white-space: nowrap;
}

.trust-items {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--white-60);
}

.trust-item svg {
  color: var(--mint);
  flex-shrink: 0;
}

/* ============================================================
   ÜBER MICH
   ============================================================ */
#ueber-mich {
  background: var(--navy-mid);
  padding: clamp(56px, 8vw, 88px) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}

.about-image-wrap {
  background: var(--mint-12);
  border: 1px solid rgba(46,196,160,0.18);
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px;
  text-align: center;
}

.about-avatar-lg {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  color: var(--navy);
}

.about-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}

.about-title {
  font-size: 14px;
  color: var(--white-40);
}

.about-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.about-h2 span {
  color: var(--mint);
}

.about-text {
  font-size: 15px;
  color: var(--white-60);
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(248,247,244,0.8);
  line-height: 1.5;
}

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--mint-15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-icon svg {
  color: var(--mint);
}

/* ============================================================
   LEISTUNGEN
   ============================================================ */
#leistungen {
  background: #F8F7F4;
  color: var(--navy);
  padding: clamp(56px, 8vw, 88px) 0;
}

.services-header {
  margin-bottom: 48px;
}

.services-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--navy);
  line-height: 1.1;
}

.services-h2 span {
  color: var(--mint-dark);
}

.services-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--mint-dark);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

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

.service-card {
  background: white;
  border: 1px solid rgba(15,31,61,0.08);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover {
  border-color: rgba(46,196,160,0.4);
  transform: translateY(-2px);
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(46,196,160,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--mint-dark);
}

.service-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-desc {
  font-size: 14px;
  color: rgba(15,31,61,0.55);
  line-height: 1.7;
}

/* ============================================================
   KONTAKT
   ============================================================ */
#kontakt {
  background: var(--navy);
  padding: clamp(56px, 8vw, 88px) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}

.contact-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.contact-h2 span {
  color: var(--mint);
}

.contact-sub {
  font-size: 15px;
  color: var(--white-60);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--mint-12);
  border: 1px solid var(--mint-20);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--mint);
}

.contact-item-label {
  font-size: 12px;
  color: rgba(248,247,244,0.4);
  margin-bottom: 2px;
}

.contact-item-value {
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
}

.contact-item-value a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item-value a:hover {
  color: var(--mint);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  color: var(--white-60);
}

.form-input,
.form-textarea {
  background: var(--white-05);
  border: 1px solid var(--white-12);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--white);
  font-family: var(--font-body);
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  border-color: rgba(46,196,160,0.5);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(248,247,244,0.3);
}

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

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--white-40);
  line-height: 1.5;
}

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

.form-check a {
  color: var(--mint);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.tp-footer {
  background: var(--navy-dark);
  border-top: 1px solid var(--white-08);
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-logo span {
  color: var(--mint);
}

.footer-address {
  font-size: 12px;
  color: rgba(248,247,244,0.3);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-links a {
  font-size: 13px;
  color: rgba(248,247,244,0.4);
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 12px;
  color: rgba(248,247,244,0.2);
  text-align: right;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE – TABLET (max 900px)
   ============================================================ */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero-profile-card {
    grid-column: 1 / -1;
  }

  .hero-stats-grid {
    display: contents;
  }

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

  .about-image-wrap {
    aspect-ratio: 3 / 2;
    max-height: 320px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .tp-nav-links {
    display: none;
  }

  .tp-nav-toggle {
    display: flex;
  }

  .tp-nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy);
    border-bottom: 1px solid var(--white-08);
    padding: 16px var(--gutter);
    gap: 16px;
    z-index: 99;
  }

  .tp-nav {
    position: sticky;
    top: 0;
  }
}

/* ============================================================
   RESPONSIVE – MOBILE (max 600px)
   ============================================================ */
@media (max-width: 600px) {
  .hero-headline {
    font-size: clamp(36px, 10vw, 48px);
  }

  .hero-cards {
    grid-template-columns: 1fr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-copy {
    text-align: left;
  }

  .trust-items {
    gap: 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }
}