/* ===== GOOGLE FONTS: EXO ===== */
@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ===== THEME: DARK (permanent default) ===== */
:root {
  --bg-primary: #242428;
  --bg-secondary: #1a1a1a;
  --bg-card: #242428;
  --text-primary: #F4F4F5;
  --text-secondary: #A1A1AA;
  --text-muted: #71717A;
  --accent: #15B8AE;
  --accent-hover: #0FA39A;
  --accent-light: rgba(21, 184, 174, 0.12);
  --border: #3F3F46;
  --shadow: rgba(0, 0, 0, 0.4);
  --nav-bg: rgba(26, 26, 29, 0.92);
}

/* ===== BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Exo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  margin: 0;
  padding: 0;
}

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

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  height: 2.75rem;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.nav-logo-subtitle {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 0.375rem;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: var(--bg-card);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.nav-dropdown-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-trigger svg,
.nav-dropdown.open .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 230px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  box-shadow: 0 8px 24px var(--shadow);
  padding: 0.375rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 0.875rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
}

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--bg-card);
  cursor: pointer;
  padding: 0.5rem;
  transition: background 0.2s;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 4.5rem 0 0 0;
  background: var(--bg-primary);
  padding: 1.5rem;
  z-index: 99;
  overflow-y: auto;
  border-top: 1px solid var(--border);
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
}

.mobile-menu .mobile-submenu a {
  font-size: 0.975rem;
  font-weight: 400;
  color: var(--text-secondary);
  padding-left: 1rem;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--bg-secondary);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  color: var(--text-primary);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0;
  font-family: 'Exo', sans-serif;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.375rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p { margin: 0; color: var(--text-secondary); }

.lead {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.8;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  line-height: 1;
  font-family: 'Exo', sans-serif;
}

.btn-primary {
  background: var(--accent);
  color: #0D1117;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(21, 184, 174, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent-light);
}

/* ===== HERO ===== */
.hero {
  padding: 5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-image {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 4/5;
}

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

.hero-content h1 {
  margin-bottom: 1.5rem;
}

.hero-content .lead {
  margin-bottom: 2rem;
}

/* Landing page hero */
.lp-hero {
  padding: 4rem 0 3rem;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.lp-hero h1 {
  max-width: 920px;  /* ~20% breiter als 920px */
}

.lp-hero .lead {
  max-width: 920px;  /* ~20% breiter als 920px */
}

/* ===== BRANCH IMAGE ===== */
.branch-image {
  width: 100%;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 3rem;
  display: block;
}

/* ===== CARDS ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px var(--shadow);
  transform: translateY(-2px);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.625rem;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card-icon svg {
  width: 20px;
  height: 20px;
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s;
}

.card-link:hover { gap: 0.625rem; }

/* ===== TESTIMONIALS ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem;
}

.testimonial-quote {
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.75rem;
  font-family: Georgia, serif;
}

.testimonial p {
  font-size: 0.9375rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.testimonial-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--accent);
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  color: #0D1117;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(0,0,0,0.75);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn {
  background: #0D1117;
  color: var(--accent);
}

.cta-section .btn:hover {
  background: #1a1a1d;
  transform: translateY(-1px);
}

/* ===== INQA BLOCK ===== */
.inqa-block {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
}

.inqa-logo {
  flex-shrink: 0;
  max-width: 140px;
}

.inqa-logo img {
  width: 100%;
  height: auto;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.0625rem;
}

/* ===== LANDING PAGE STYLES ===== */
.challenge-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.challenge-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0.5rem;
  padding: 1.25rem 1.5rem;
}

.challenge-item h4 {
  margin-bottom: 0.375rem;
  color: var(--text-primary);
}

.challenge-item p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.offer-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.offer-item h4 {
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.offer-item p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.why-me-box {
  background: var(--bg-secondary);
  border-radius: 1rem;
  padding: 2.5rem;
  border: 1px solid var(--border);
}

/* ===== HOW I WORK ===== */
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-item {
  position: relative;
  padding-top: 1.5rem;
}

.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--accent);
  color: #0D1117;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.step-item h3 { margin-bottom: 0.75rem; }
.step-item p { font-size: 0.9375rem; line-height: 1.7; }

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.tool-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.tool-item h4 {
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.tool-item p {
  font-size: 0.875rem;
  line-height: 1.65;
}

/* Wider intro text on lp-hero style pages */
.intro-text-wide {
  max-width: 912px;
}

.expect-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.expect-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  color: var(--text-secondary);
  font-size: 1rem;
}

.expect-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* ===== ABOUT ===== */
.about-hero {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: start;
}

.about-photos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-photo-main {
  border-radius: 1rem;
  overflow: hidden;
}

.about-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-secondary {
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 3/2;
}

.about-photo-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1.5rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  padding-bottom: 1.75rem;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 86px;
  top: 1.5rem;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.timeline-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  padding-top: 0.2rem;
  text-align: right;
}

.timeline-dot {
  position: absolute;
  left: 80px;
  top: 0.3rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg-primary);
}

.timeline-content h4 { margin-bottom: 0.25rem; }
.timeline-content p { font-size: 0.9rem; line-height: 1.6; }

.at-a-glance {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.glance-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
}

.glance-item h4 {
  color: var(--accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.625rem;
}

.glance-item p {
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-photo {
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 3/4;
  margin-bottom: 1.5rem;
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  max-width: 920px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.375rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.legal-content h2:first-of-type {
  border-top: none;
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.legal-content ul {
  padding-left: 1.5rem;
}

.placeholder {
  background: rgba(255, 200, 0, 0.15);
  border: 1px dashed #d97706;
  color: #fbbf24;
  padding: 0.1em 0.3em;
  border-radius: 0.25rem;
  font-family: monospace;
  font-size: 0.875em;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}

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

.footer-logo {
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.9375rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ===== UTILS ===== */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.mt-4 { margin-top: 2rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .card-grid,
  .testimonial-grid,
  .offer-grid,
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .step-grid { grid-template-columns: 1fr; }
  .about-hero { grid-template-columns: 1fr; }
  .about-photos { flex-direction: row; }
  .about-photo-main { aspect-ratio: 1; }
}

@media (max-width: 768px) {
  .hero { padding: 3rem 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-image { aspect-ratio: 3/2; order: -1; }
  .section { padding: 3.5rem 0; }
  .card-grid,
  .testimonial-grid,
  .challenge-list,
  .offer-grid,
  .tools-grid,
  .at-a-glance,
  .expect-list { grid-template-columns: 1fr; }
  .inqa-block { flex-direction: column; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .about-photos { flex-direction: column; }
  .nav-logo-subtitle { display: none; }
}
