/* ============================================================
   SADIK FINANZSERVICE – MASTER STYLESHEET
   Design: "Wiener Autorität" – Refined Luxury
   ============================================================ */

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

/* 2. CUSTOM PROPERTIES */
:root {
  /* Colors */
  --dark:         #1A1A2E;
  --dark-alt:     #16213E;
  --dark-card:    #1f2040;
  --gold:         #C9A84C;
  --gold-light:   #E8C97A;
  --gold-pale:    #f5e9c8;
  --cream:        #F7F4EE;
  --cream-dark:   #EDE9E0;
  --text:         #2C2C2C;
  --text-light:   #6b6b6b;
  --white:        #FFFFFF;
  --success:      #27ae60;
  --wa-green:     #25D366;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Lato', Arial, sans-serif;

  /* Spacing */
  --section-py:   5rem;
  --container:    1200px;
  --gap:          2rem;

  /* Borders */
  --radius:       4px;
  --radius-lg:    8px;

  /* Shadows */
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.12);
  --shadow-gold:  0 4px 24px rgba(201,168,76,0.25);

  /* Transitions */
  --transition:   all 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
}

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

/* 4. TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p { font-size: 1.0625rem; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.lead { font-size: 1.15rem; line-height: 1.8; }

/* 5. UTILITIES */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: var(--section-py) 0; }

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-light { color: var(--text-light); }

.d-flex { display: flex; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.flex-col { flex-direction: column; }

/* Section heading with gold underline */
.section-heading {
  margin-bottom: 0.75rem;
}
.section-heading::after {
  content: '';
  display: block;
  width: 3.5rem;
  height: 3px;
  background: var(--gold);
  margin-top: 0.75rem;
}
.section-heading.centered::after {
  margin: 0.75rem auto 0;
}

/* 6. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

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

.btn-wa {
  background: var(--wa-green);
  color: var(--white);
  padding: 0.875rem 1.75rem;
}
.btn-wa:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}

.btn-lg { padding: 1rem 2.5rem; font-size: 0.9rem; }

/* 7. NAVIGATION */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  padding: 0;
}

.nav.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}

.nav-logo img {
  height: 52px;
  width: auto;
  transition: opacity 0.2s;
}
.nav-logo img:hover { opacity: 0.8; }

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

.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 0.5rem 0;
  min-width: 220px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
  font-weight: 400;
}
.nav-dropdown-menu a:hover { color: var(--gold); background: rgba(201,168,76,0.08); }
.dropdown-arrow { font-size: 0.7rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 1010;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Nav CTA */
.nav-cta { margin-left: 1rem; }

/* 8. HERO – HOMEPAGE */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 60%);
}

/* Gold geometric accent */
.hero-bg::before {
  content: '';
  position: absolute;
  top: 15%;
  right: 8%;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 50%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 11%;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 7rem 1.5rem 5rem;
}

.hero-content { color: var(--white); }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

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

.hero-meta {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.hero-stat span { font-size: 0.8rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.1em; }

/* Hero photo */
.hero-photo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-photo-frame {
  position: relative;
  width: 440px;
  max-width: 100%;
}
.hero-photo-frame::before {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  right: 1.5rem;
  top: 1.5rem;
  border: 2px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.hero-photo-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  filter: brightness(0.95);
}

/* 9. INNER PAGE HERO (for subpages) */
.page-hero {
  background: var(--dark);
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 50% 80% at 100% 50%, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero .lead { color: rgba(255,255,255,0.7); max-width: 620px; }
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: inline-flex;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2rem;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* 10. TRUST STRIP */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 1.75rem 0;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
}
.trust-item-icon {
  font-size: 1.4rem;
}
.trust-item strong { font-weight: 700; }
.trust-divider {
  width: 1px;
  height: 2rem;
  background: rgba(0,0,0,0.1);
}

/* 11. SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.3);
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.service-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  display: block;
  margin-bottom: 1rem;
}
.service-link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}
.service-link:hover { gap: 0.7rem; }

/* 12. USP SECTION */
.usp-section {
  background: var(--dark);
  color: var(--white);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.usp-item {
  padding: 2rem;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.usp-item:hover {
  border-color: rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.04);
}

.usp-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.usp-item h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.usp-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* 13. TESTIMONIALS */
.testimonials-section { background: var(--cream-dark); }

.testimonials-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.google-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0.875rem 1.25rem;
  box-shadow: var(--shadow-sm);
}
.google-badge .stars { color: #FBBC05; font-size: 1rem; letter-spacing: 2px; }
.google-badge strong { font-size: 1.1rem; }
.google-badge span { font-size: 0.8rem; color: var(--text-light); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-stars { color: #FBBC05; font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text {
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.testimonial-author { font-size: 0.85rem; font-weight: 700; color: var(--text-light); }

/* 14. ABOUT TEASER */
.about-teaser {
  background: var(--white);
}
.about-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-photo-wrap {
  position: relative;
}
.about-photo-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  object-position: top center;
  max-height: 560px;
}
.about-photo-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--dark);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-photo-badge strong {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.about-photo-badge span { font-size: 0.75rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; }
.about-content h2 { margin-bottom: 1.25rem; }
.about-content p { margin-bottom: 1rem; color: var(--text-light); }
.about-values {
  margin: 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.about-value {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}
.about-value::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* 15. CTA SECTION */
.cta-section {
  background: var(--dark);
  color: var(--white);
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.65); margin-bottom: 2.5rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.cta-contact-row {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}
.cta-contact-item a { color: var(--gold); }
.cta-contact-item a:hover { color: var(--gold-light); }

/* 16. SERVICE DETAIL PAGE */
.service-detail-content {
  background: var(--white);
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}

/* Service includes list */
.includes-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.includes-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  background: var(--cream);
  border-radius: var(--radius);
  font-size: 0.95rem;
}
.includes-item::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* Sidebar price card */
.price-card {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: 6rem;
}
.price-card-header { margin-bottom: 1.5rem; }
.price-card-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.price-card-note { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 0.25rem; }
.price-card-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 1.25rem 0; }
.price-card-features { display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 1.75rem; }
.price-feature {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
}
.price-feature::before { content: '✓'; color: var(--gold); }
.price-card .btn { width: 100%; justify-content: center; }
.price-card-contact {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* FAQ */
.faq-section { background: var(--cream); }
.faq-list { max-width: 720px; margin: 2.5rem auto 0; }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s;
  gap: 1rem;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  font-size: 1.25rem;
  transition: transform 0.3s;
  color: var(--gold);
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer-inner {
  padding-bottom: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* 17. ABOUT PAGE */
.about-hero-photo {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  margin: 0 auto;
  display: block;
}
.about-story h2 { margin-bottom: 1.25rem; }
.about-story p { margin-bottom: 1rem; color: var(--text-light); }
.about-quals {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.about-qual {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem 1.125rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.about-qual-icon { font-size: 1.25rem; }
.about-qual-text { font-size: 0.9rem; }
.about-qual-text strong { display: block; font-weight: 700; color: var(--text); }
.about-qual-text span { color: var(--text-light); }

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--white);
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-card .icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h4 { margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9rem; color: var(--text-light); }

/* 18. CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: var(--text-light); margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-item-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item-text strong { display: block; font-weight: 700; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.25rem; }
.contact-item-text a, .contact-item-text span { color: var(--text-light); font-size: 0.95rem; }
.contact-item-text a:hover { color: var(--gold); }
.contact-response {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: var(--cream-dark);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  font-size: 0.875rem;
  color: var(--text-light);
}
.contact-response strong { color: var(--text); display: block; margin-bottom: 0.25rem; }

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { margin-bottom: 0.5rem; }
.contact-form > p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 2rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group input[type="checkbox"] { width: auto; margin-right: 0.5rem; }
.form-check { display: flex; align-items: flex-start; gap: 0.5rem; }
.form-check label { text-transform: none; letter-spacing: 0; font-weight: 400; font-size: 0.85rem; color: var(--text-light); }
.form-submit { width: 100%; justify-content: center; margin-top: 1.5rem; }

/* 19. BLOG PAGE */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gold);
  border-bottom: 3px solid var(--gold);
}
.blog-card-body { padding: 1.5rem; }
.blog-card-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.blog-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.blog-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1rem; }
.blog-card-meta { font-size: 0.8rem; color: var(--text-light); display: flex; gap: 1rem; }
.blog-card-meta span { display: flex; align-items: center; gap: 0.25rem; }
.blog-coming-soon {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  max-width: 480px;
  margin: 0 auto;
}
.blog-coming-soon .icon { font-size: 3rem; margin-bottom: 1rem; }
.blog-coming-soon h3 { margin-bottom: 0.75rem; }
.blog-coming-soon p { color: var(--text-light); font-size: 0.95rem; }

/* Blog categories */
.blog-cats {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  margin-top: 2rem;
}
.blog-cat-btn {
  padding: 0.4rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.blog-cat-btn:hover,
.blog-cat-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

/* 20. FOOTER */
.footer {
  background: #0f0f20;
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 52px; margin-bottom: 1.25rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.8; max-width: 280px; }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.85rem;
}
.footer-contact-item a { color: rgba(255,255,255,0.55); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a { color: rgba(255,255,255,0.4); }
.footer-legal a:hover { color: var(--gold); }

/* 21. WHATSAPP FLOAT */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 58px;
  height: 58px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}
.wa-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--wa-green);
  animation: wa-pulse 2s infinite;
  z-index: -1;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* 22. ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Hero entrance animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: none; }
}
.hero-content > * {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}
.hero-eyebrow { animation-delay: 0.2s; }
.hero-title { animation-delay: 0.4s; }
.hero-subtitle { animation-delay: 0.55s; }
.hero-actions { animation-delay: 0.7s; }
.hero-meta { animation-delay: 0.85s; }
.hero-photo {
  opacity: 0;
  animation: fadeInRight 0.9s ease 0.5s forwards;
}

/* 23. PLACEHOLDER STYLES */
.photo-placeholder {
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
  border: 2px dashed rgba(201,168,76,0.35);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}
.photo-placeholder .icon { font-size: 2.5rem; }

/* 24. COOKIE BANNER */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--dark);
  border-top: 2px solid var(--gold);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}

.cookie-banner-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner-text {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  flex: 1;
  min-width: 200px;
}

.cookie-banner-text strong {
  display: block;
  color: var(--white);
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.cookie-banner-text p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
  color: rgba(255,255,255,0.75);
}

.cookie-banner-text a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.cookie-btn-accept {
  background: var(--gold);
  color: var(--dark);
}

.cookie-btn-accept:hover {
  background: var(--gold-light);
}

.cookie-btn-reject {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
}

.cookie-btn-reject:hover {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

@media (max-width: 600px) {
  .cookie-banner-inner {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .cookie-banner-actions {
    width: 100%;
  }
  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}

/* 25. RESPONSIVE */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-inner { gap: 2.5rem; }
  .about-teaser-inner { gap: 3rem; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .price-card { position: static; }
}

@media (max-width: 768px) {
  :root { --section-py: 3.5rem; }

  /* Nav mobile */
  .nav-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 1005;
  }
  .nav-menu.open { transform: none; }
  .nav-link { font-size: 1rem; padding: 0.75rem 1.5rem; }
  .nav-toggle { display: flex; }
  .nav-cta { margin-left: 0; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: rgba(255,255,255,0.05);
    box-shadow: none;
    border: none;
    border-radius: 0;
    display: none;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }

  /* Hero mobile */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 6rem 1.25rem 3rem;
    min-width: 0;
  }
  .hero-content { min-width: 0; max-width: 100%; }
  .hero-photo { display: none; }
  .hero-eyebrow {
    justify-content: center;
    font-size: 0.65rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
  .hero-title {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
    word-break: break-word;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.65;
    word-break: break-word;
  }
  .hero-actions {
    justify-content: center;
    flex-direction: column;
    gap: 0.75rem;
  }
  .hero-actions .btn { width: 100%; justify-content: center; text-align: center; }
  .hero-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding-top: 1.25rem;
  }
  .hero-stat {
    text-align: center;
    min-width: 0;
  }
  .hero-stat strong {
    font-size: 1.3rem;
    display: block;
  }
  .hero-stat span {
    font-size: 0.65rem;
    line-height: 1.3;
    display: block;
    word-break: break-word;
  }

  /* Grids */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .usp-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-teaser-inner { grid-template-columns: 1fr; }
  .about-photo-wrap { max-width: 340px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Trust strip – sauber untereinander */
  .trust-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1.5rem 1.25rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .trust-divider { display: none; }
  .trust-item {
    font-size: 0.875rem;
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
  }
  .trust-item div {
    flex: 1;
    min-width: 0;
    word-break: break-word;
  }

  /* Wien Visual – kleinere Höhe auf Mobile */
  .wien-visual { height: 220px !important; }

  /* Testimonials header */
  .testimonials-header { flex-direction: column; align-items: flex-start; }

  /* CTA */
  .cta-contact-row { gap: 1.25rem; flex-direction: column; align-items: center; }
  .cta-actions { flex-wrap: wrap; justify-content: center; }

  /* Service cards */
  .service-card { padding: 1.25rem 1rem; }
  .service-icon { font-size: 1.75rem; }

  /* USP items */
  .usp-item { padding: 1.25rem 1rem; }

  /* About badge position fix */
  .about-photo-badge { bottom: 0.75rem; right: 0.75rem; padding: 0.5rem 0.75rem; }

  /* Page hero */
  .page-hero-inner { padding: 6rem 1rem 2.5rem; }
  .page-hero-badge { font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .btn-lg { padding: 0.875rem 1.5rem; font-size: 0.95rem; }
  .contact-form { padding: 1.25rem; }

  /* 1 Spalte auf sehr kleinen Screens */
  .services-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }

  /* Abschnitt-Überschriften */
  .section-heading { font-size: 1.75rem; }
  .section-heading.centered { font-size: 1.75rem; }

  /* Trust strip kompakter */
  .trust-strip-inner { gap: 0.75rem; padding: 1.25rem 1rem; }

  /* Footer kompakter */
  .footer-brand img { height: 40px; }
}
