/* ============================================================
   Gluexxkind Website — Enhanced Stylesheet
   Mystical Warm Design — Numerologie, Astrologie & NLP
   ============================================================ */

/* ---------- @font-face (self-hosted, DSGVO-compliant) ---------- */
@font-face {
  font-family: 'Cinzel';
  src: url('../assets/fonts/Cinzel-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cinzel';
  src: url('../assets/fonts/Cinzel-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design Tokens ---------- */
:root {
  --bg: #faf8f4;
  --bg-warm: #f5f0e8;
  --bg-dark: #1a1625;
  --bg-dark-alt: #231e30;
  --surface: rgba(255, 255, 255, 0.85);
  --surface-dark: rgba(255, 255, 255, 0.05);
  --border: rgba(0, 0, 0, 0.08);
  --border-light: rgba(255, 255, 255, 0.1);
  --teal: #008c99;
  --teal-light: #00b4c5;
  --teal-dark: #006d77;
  --gold: #c4a484;
  --gold-light: #d4bb9a;
  --gold-dark: #a68a6a;
  --purple: #6b5b95;
  --purple-light: #8b7bb5;
  --purple-dark: #4a3d6e;
  --rose: #b76e79;
  --text: #1d1e20;
  --text-muted: #6b6d73;
  --text-light: #faf8f4;
  --text-light-muted: rgba(250, 248, 244, 0.65);
  --accent: var(--teal);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 40px rgba(0, 140, 153, 0.15);
}

/* ============================================================
   1. Reset & Base Typography
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', Georgia, 'Times New Roman', serif;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold);
}

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

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--teal-light), var(--gold), var(--purple-light));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

/* ============================================================
   2. Section Utilities
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  background: rgba(0, 140, 153, 0.08);
  border: 1px solid rgba(0, 140, 153, 0.15);
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-heading {
  text-align: center;
  margin-bottom: 1rem;
  font-family: 'Cinzel', Georgia, serif;
}

.section-description {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============================================================
   3. Navigation
   ============================================================ */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-light);
  padding: 0 1.5rem;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.main-nav.scrolled {
  background: rgba(26, 22, 37, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 56px;
  width: auto;
}

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

.nav-item {
  position: relative;
}

.nav-item > a {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color 0.3s ease, background 0.3s ease;
  white-space: nowrap;
}

.nav-item > a:hover,
.nav-item > a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* Dropdown (desktop: hover) */
.dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 220px;
  background: var(--bg-dark-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

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

.dropdown a {
  display: block;
  padding: 0.65rem 1rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-light);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   4. Hero Section
   ============================================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-bg-effects {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.constellation {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.constellation-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
  top: -15%;
  right: -10%;
  animation: float-slow 8s ease-in-out infinite;
}

.constellation-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
  bottom: -10%;
  left: -5%;
  animation: float-slow 10s ease-in-out infinite reverse;
}

.hero-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(100px);
  opacity: 0.15;
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.hero-logo {
  max-width: 320px;
  margin: 0 auto 2rem;
  opacity: 0.95;
}

.hero-subtitle {
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
}

.hero-heading {
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-light-muted);
  max-width: 550px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light-muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  animation: bob 2s ease-in-out infinite;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  opacity: 0.5;
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Hero small — for sub-pages */
.hero-small {
  min-height: 35vh;
  padding: 8rem 1.5rem 3rem;
  background: var(--bg-dark);
}

/* ============================================================
   5. Trust Bar
   ============================================================ */
.trust-bar {
  background: var(--bg-dark-alt);
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem 0;
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-light-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-icon {
  font-size: 1.2rem;
  color: var(--gold);
}

/* ============================================================
   6. Service Cards
   ============================================================ */
.services {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
  background: var(--bg);
}

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

.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem 2rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
}

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

.service-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--purple));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover .service-card-glow {
  opacity: 1;
}

.service-card.featured {
  border-color: var(--teal);
  box-shadow: var(--shadow-glow);
}

.service-card.featured .service-card-glow {
  opacity: 1;
}

.featured-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.3rem 0.8rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 50px;
}

.service-icon-wrap {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 140, 153, 0.08), rgba(107, 91, 149, 0.08));
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.service-icon {
  font-size: 1.8rem;
  color: var(--teal);
}

.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
  padding: 0;
}

.service-features li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.3s ease, color 0.3s ease;
}

.card-link:hover {
  color: var(--gold);
  gap: 0.75rem;
}

.card-link .arrow {
  transition: transform 0.3s ease;
}

.card-link:hover .arrow {
  transform: translateX(3px);
}

/* ============================================================
   7. Process Section
   ============================================================ */
.process-section {
  padding: 6rem 0;
  background: var(--bg-warm);
}

.process-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  flex: 1;
  min-width: 200px;
}

.step-number {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--teal);
  opacity: 0.25;
  line-height: 1;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.process-connector {
  display: none;
}

/* ============================================================
   8. About Teaser
   ============================================================ */
.about-teaser {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
  background: #fff;
}

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

.about-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--bg-dark), var(--purple-dark));
}

.about-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--gold);
  gap: 1rem;
}

.about-placeholder-icon {
  font-size: 3rem;
  opacity: 0.5;
}

.about-placeholder span {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.5rem;
  opacity: 0.5;
}

.about-image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  opacity: 0.3;
  z-index: -1;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text .section-badge {
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  color: var(--teal);
  border: 2px solid var(--teal);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 140, 153, 0.25);
}

/* ============================================================
   9. Testimonials
   ============================================================ */
.testimonials {
  padding: 6rem 0;
  background: var(--bg);
}

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

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  font-size: 0.9rem;
  color: var(--text);
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   10. Cosmic Section
   ============================================================ */
.cosmic-section {
  padding: 4rem 0;
  background: var(--bg);
}

.cosmic-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-dark);
  padding: 4rem 3rem;
}

.cosmic-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(107, 91, 149, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(0, 140, 153, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.cosmic-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.cosmic-label {
  display: inline-block;
  padding: 0.3rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  border: 1px solid rgba(196, 164, 132, 0.3);
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.cosmic-content h2 {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.cosmic-content p {
  color: var(--text-light-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

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

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  color: var(--text-light-muted);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

/* ============================================================
   11. CTA Section
   ============================================================ */
.cta-section {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal), var(--purple));
  overflow: hidden;
}

.cta-decoration {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 90% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
}

.cta-section p {
  max-width: 550px;
  margin: 0 auto 2.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.7;
}

.cta-section .btn-primary {
  background: #fff;
  color: var(--teal-dark);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.cta-section .btn-primary:hover {
  background: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   12. Buttons
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  background: var(--teal);
  box-shadow: 0 4px 20px rgba(0, 140, 153, 0.25);
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--teal-dark);
  box-shadow: 0 6px 28px rgba(0, 140, 153, 0.35);
  transform: translateY(-2px);
  color: #fff;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-glow {
  box-shadow: 0 4px 20px rgba(0, 140, 153, 0.3), 0 0 40px rgba(0, 140, 153, 0.1);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid var(--gold);
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  color: var(--gold);
  background: transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 20px rgba(196, 164, 132, 0.3);
  transform: translateY(-2px);
}

.btn-cta {
  padding: 1.15rem 3rem;
  font-size: 1.15rem;
}

.btn-sm {
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  border-radius: 50px;
}

.btn-outline {
  border-radius: 50px;
}

.btn-ghost {
  border-radius: 50px;
}

/* ============================================================
   13. Footer
   ============================================================ */
.site-footer {
  position: relative;
  z-index: 1;
  background: var(--bg-dark);
  padding: 5rem 0 2rem;
  color: var(--text-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1.25rem;
  opacity: 0.85;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-light-muted);
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-family: 'Cinzel', Georgia, serif;
  margin-bottom: 1.25rem;
  color: var(--gold);
  font-size: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  color: var(--text-light-muted);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

.footer-col p {
  font-size: 0.9rem;
  color: var(--text-light-muted);
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  color: var(--text-light-muted);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196, 164, 132, 0.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  color: var(--text-light-muted);
  font-size: 0.85rem;
}

/* ============================================================
   14. Cookie Banner
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-light);
  padding: 1.25rem 1.5rem;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.cookie-content p {
  flex: 1;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-light-muted);
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* ============================================================
   15. Animations & Reveals
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Content is always visible — no reveal animations */

/* Smooth link / interactive transitions */
a, button {
  transition: all 0.3s ease;
}

/* ============================================================
   16. Forms (preserved for sub-pages)
   ============================================================ */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="password"],
input[type="url"],
input[type="search"],
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 140, 153, 0.15);
}

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

/* ============================================================
   17. Page-specific Styles (preserved)
   ============================================================ */

/* Grid layouts */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

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

.content-section {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}

.content-section:nth-child(even) {
  background: rgba(0, 0, 0, 0.02);
}

/* Section title (sub-pages) */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

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

.section-title p {
  max-width: 600px;
  margin: 0 auto;
}

/* Card (sub-pages) */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.card h3 { margin-bottom: 0.75rem; }
.card p { font-size: 0.95rem; }

/* Glass card (legacy) */
.glass-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}

.glass-card .card-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.glass-card h3 { margin-bottom: 0.75rem; }
.glass-card p { font-size: 0.95rem; }

/* About page values */
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-item .icon { font-size: 1.5rem; flex-shrink: 0; }

/* Legal pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.legal-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.legal-content p, .legal-content li { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }

/* Shop cards */
.shop-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.shop-card-image { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.shop-card-body { padding: 1.5rem; }
.shop-card-body h3 { margin-bottom: 0.5rem; font-size: 1.15rem; }
.shop-card-body .description { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; }
.shop-card-footer { display: flex; align-items: center; justify-content: space-between; padding: 0 1.5rem 1.5rem; }
.price { font-size: 1.35rem; font-weight: 700; color: var(--gold); }
.price-note { font-size: 0.8rem; color: var(--text-muted); }

/* Numerology calculator */
.input-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem 2rem;
  max-width: 480px;
  margin: 2rem auto;
  text-align: center;
}

.input-card h2 { margin-bottom: 0.5rem; }
.input-card .subtitle { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 2rem; }

.date-inputs {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.date-inputs input {
  width: 80px;
  text-align: center;
  padding: 0.7rem 0.5rem;
  font-size: 1.1rem;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius);
  outline: none;
}

.date-inputs input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0, 140, 153, 0.15); }
.date-inputs input::placeholder { color: var(--text-muted); opacity: 0.6; }
.date-inputs input:nth-child(3) { width: 100px; }

.canvas-container {
  background: var(--bg-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  max-width: 520px;
  margin: 2rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.canvas-container canvas { width: 100%; max-width: 460px; height: auto; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 600px; margin: 2rem auto; }

.value-chip {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.value-chip:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); }
.value-chip .label { display: block; font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.35rem; }
.value-chip .number { font-family: 'Cinzel', Georgia, serif; font-size: 1.75rem; font-weight: 700; color: var(--gold); }

.arkane-section { max-width: 900px; margin: 3rem auto; padding: 0 1rem; }
.arkane-heading { font-family: 'Cinzel', Georgia, serif; font-size: 1.5rem; text-align: center; margin-bottom: 2rem; color: var(--text); }
.arkane-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }

/* ============================================================
   18. Responsive Breakpoints
   ============================================================ */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100dvh - 72px);
    flex-direction: column;
    align-items: stretch;
    background: var(--bg-dark);
    padding: 1.5rem;
    gap: 0.25rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .nav-menu.open,
  .nav-open .nav-menu { transform: translateX(0); }

  .nav-item > a { padding: 0.75rem 1rem; font-size: 1.05rem; }

  .dropdown {
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 1.5rem;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  }

  .nav-item.open > .dropdown,
  .nav-item.dropdown-open > .dropdown {
    opacity: 1;
    visibility: visible;
    max-height: 400px;
  }

  .nav-item:hover > .dropdown { opacity: 0; visibility: hidden; max-height: 0; }
  .nav-item.open:hover > .dropdown,
  .nav-item.dropdown-open:hover > .dropdown { opacity: 1; visibility: visible; max-height: 400px; }

  .hero { min-height: 90vh; padding: 5rem 1rem 4rem; }
  .hero h1 { font-size: 2rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-scroll-indicator { display: none; }

  .trust-items { gap: 1.5rem; justify-content: center; }
  .trust-item { font-size: 0.8rem; }

  .services-grid,
  .testimonial-grid,
  .values-grid-layout { grid-template-columns: 1fr; }

  .process-steps { flex-direction: column; }
  .process-step { padding: 1.25rem 0; }

  .about-grid { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .about-image-frame { max-width: 250px; margin: 0 auto; }
  .about-text .section-badge { display: inline-block; }

  .cosmic-card { padding: 2.5rem 1.5rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand p { max-width: 100%; }

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

  .cookie-content { flex-direction: column; text-align: center; }

  .input-card { padding: 1.5rem 1rem; }
  .date-inputs { flex-direction: column; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .arkane-grid { grid-template-columns: 1fr; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2.5rem; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 280px 1fr; gap: 2.5rem; }
}

@media (min-width: 1025px) {
  .hamburger { display: none; }

  .nav-menu {
    display: flex;
    position: static;
    flex-direction: row;
    background: none;
    padding: 0;
    transform: none;
    overflow: visible;
  }
}

/* ============================================================
   19. Booking Modal
   ============================================================ */
.booking-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.booking-overlay.open {
  display: flex;
}

.booking-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.booking-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 1.4rem;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 2;
}

.booking-close:hover {
  background: var(--bg);
  color: var(--text);
}

.booking-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
}

.booking-info {
  padding: 2.5rem 2rem;
  background: var(--bg-warm);
  border-radius: var(--radius-lg) 0 0 0;
  border-right: 1px solid var(--border);
}

.booking-title {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.booking-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.booking-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-meta-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.booking-meta-icon {
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.booking-picker {
  padding: 2rem 2.5rem;
}

.booking-picker-title {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.booking-picker-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

/* Calendar */
.booking-calendar {
  min-width: 260px;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.cal-month {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.cal-nav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 1.3rem;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.cal-nav:hover {
  background: var(--bg-warm);
  color: var(--text);
  border-color: var(--teal);
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 0.5rem;
}

.cal-weekdays span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.4rem 0;
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.cal-day {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0 auto;
  border-radius: 50%;
  font-size: 0.9rem;
  color: var(--text);
  cursor: default;
  transition: all 0.2s ease;
}

.cal-day.empty {
  visibility: hidden;
}

.cal-day.disabled {
  color: rgba(0, 0, 0, 0.2);
}

.cal-day.available {
  cursor: pointer;
  font-weight: 500;
}

.cal-day.available:hover {
  background: rgba(0, 140, 153, 0.08);
  color: var(--teal);
}

.cal-day.today {
  border: 2px solid var(--teal);
  font-weight: 700;
}

.cal-day.selected {
  background: var(--teal);
  color: #fff;
  font-weight: 700;
}

.cal-day.selected:hover {
  background: var(--teal-dark);
  color: #fff;
}

/* Time Slots */
.booking-times {
  min-width: 130px;
}

.booking-day-label {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  white-space: nowrap;
}

.time-slots {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.time-slot {
  padding: 0.65rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}

.time-slot:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(0, 140, 153, 0.04);
}

.time-slot.selected {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

.time-placeholder {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
}

/* Booking Actions */
.booking-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding: 1.25rem 2.5rem;
  border-top: 1px solid var(--border);
}

.booking-actions .btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Booking responsive */
@media (max-width: 768px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-info {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
  }

  .booking-picker {
    padding: 1.5rem;
  }

  .booking-picker-grid {
    grid-template-columns: 1fr;
  }

  .booking-actions {
    padding: 1rem 1.5rem;
  }

  .booking-modal {
    max-height: 95vh;
  }
}

/* ============================================================
   20. Shop Payment Options
   ============================================================ */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.payment-btn {
  text-align: center;
  width: 100%;
}

.paypal-btn-container {
  min-height: 42px;
}

.price-display {
  margin: 0.75rem 0;
}

/* ============================================================
   21. Calendly Embed Overrides
   ============================================================ */
.calendly-inline-widget {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Calendly popup overlay z-index fix */
.calendly-overlay {
  z-index: 10001 !important;
}

@media (max-width: 768px) {
  .payment-options {
    gap: 0.5rem;
  }

  .calendly-inline-widget {
    height: 900px !important;
  }
}

/* ============================================================
   22. Glüxxkind-Konzept & Angebote (additiv ergänzt)
   ============================================================ */
.concept {
  padding: 5rem 0 3rem;
  background: var(--bg-warm);
}

.concept .section-header {
  margin-bottom: 2rem;
}

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

.concept-text p {
  font-size: 1.12rem;
  line-height: 1.85;
  color: var(--text-muted);
}

.concept-text strong {
  color: var(--gold-dark);
  font-weight: 700;
}

/* Tagline inside offer cards — higher specificity to override .service-card p */
.service-card .offer-tagline {
  font-family: 'Cinzel', Georgia, serif;
  font-style: italic;
  color: var(--teal);
  font-size: 1.02rem;
  margin-bottom: 0.75rem;
}

.offer-cta {
  max-width: 660px;
  margin: 3.5rem auto 0;
  text-align: center;
}

.offer-cta p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Second services block (methods) on a light background for rhythm */
.services-methods {
  background: #fff;
}

/* Angebote detail page */
.offer-detail {
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  scroll-margin-top: 96px;
}

.offer-detail + .offer-detail {
  margin-top: 2.5rem;
}

.offer-detail .offer-tagline {
  font-family: 'Cinzel', Georgia, serif;
  font-style: italic;
  color: var(--teal);
  font-size: 1.2rem;
  margin: 0.25rem 0 0.5rem;
}

.offer-detail .offer-sub {
  font-size: 0.95rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.offer-detail p {
  font-size: 1.02rem;
  line-height: 1.8;
}

.offer-detail .btn-primary {
  margin-top: 1rem;
}

/* Porträtfoto füllt den 3:4-Rahmen (Startseite + Über mich) */
.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Ausgewogenes 2-Spalten-Raster für Kundenstimmen (z. B. 4 Bewertungen) */
.testimonial-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 920px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .testimonial-grid.cols-2 {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   23. Angebote: Preise, Gratis-Erstgespräch, Sphären
   ============================================================ */
.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  font-family: 'Cinzel', Georgia, serif;
  font-weight: 700;
  color: var(--gold-dark);
  white-space: nowrap;
}
.price-tag .amount { font-size: 1.9rem; line-height: 1; }
.price-tag .per { font-size: 0.85rem; color: var(--text-muted); font-family: 'Inter', sans-serif; font-weight: 500; }

/* Kostenloses Erstgespräch – hervorgehobener Banner */
.offer-free {
  max-width: 820px;
  margin: 0 auto 2.5rem;
  padding: 1.75rem 2rem;
  border: 1px solid rgba(0, 140, 153, 0.25);
  background: rgba(0, 140, 153, 0.06);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.offer-free .of-text { flex: 1; min-width: 240px; }
.offer-free .of-text h3 { margin: 0 0 0.35rem; }
.offer-free .of-text p { margin: 0; font-size: 0.95rem; }
.offer-free .of-badge { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal); }

/* Kopfzeile eines Angebots: Titel links, Preis rechts */
.offer-detail .offer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.offer-detail .offer-head > div:first-child { flex: 1; min-width: 240px; }

.offer-detail .offer-subhead {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin: 1.5rem 0 0.4rem;
}

/* "Was du bekommst" Hervorhebungs-Box */
.offer-includes {
  margin-top: 1.75rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-warm);
  border-radius: var(--radius);
}
.offer-includes h4 { margin: 0 0 0.5rem; color: var(--gold-dark); font-size: 1rem; }
.offer-includes p { margin: 0; font-size: 0.98rem; line-height: 1.75; }

/* Hervorgehobenes Angebot (z. B. komplette Stern-Analyse) */
.offer-detail.featured-offer { border: 2px solid var(--teal); box-shadow: var(--shadow-glow); }
.offer-ribbon {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

/* 5 Sphären-Karten */
.sphere-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.sphere-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.sphere-card h4 { margin: 0 0 0.5rem; color: var(--teal-dark); font-size: 1.1rem; }
.sphere-card p { font-size: 0.9rem; line-height: 1.65; margin: 0; }

/* Preis auf den Startseiten-Angebotskarten */
.service-card .card-price {
  font-family: 'Cinzel', Georgia, serif;
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 1.15rem;
  margin: 0.1rem 0 0.85rem;
}
