/* EB-Webdesign — Main Stylesheet */

/* ============================================
   CSS Custom Properties
   ============================================ */
:root {
  /* Blue-Gold Corporate Palette */
  --color-navy: #042048;
  --color-navy-dark: #02152F;
  --color-gold: #C79A45;
  --color-gold-light: #E3C276;

  /* Remapped from green → navy / gold */
  --color-primary: #042048;
  --color-primary-dark: #02152F;
  --color-primary-soft: #C79A45;

  /* Surfaces — warm and clean */
  --color-bg: #FAF8F3;
  --color-surface: #FFFFFF;
  --color-surface-soft: #F4EFE6;
  --color-surface-mid: #EDE8DF;

  /* Borders & type */
  --color-border: #E5E0D8;
  --color-border-green: #D9C9A8;
  --color-white: #FFFFFF;
  --color-text: #171717;
  --color-muted: #6B7280;
  --color-error-bg: #F7EFEF;
  --color-error: #8B3A3A;

  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: Georgia, "Times New Roman", Times, serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.05);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12), 0 8px 20px rgba(0,0,0,0.06);

  --transition-base: 220ms ease;
  --max-width: 1120px;
  --section-padding: 96px 24px;
}

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

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

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

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

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

a:hover { text-decoration: underline; }

ul { list-style: none; }

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: normal;
  line-height: 1.25;
  color: var(--color-text);
}

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { max-width: 70ch; }

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.section-subheadline {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 58ch;
  margin-top: 12px;
}

/* ============================================
   Layout Utilities
   ============================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

.section--alt {
  background-color: var(--color-surface-soft);
}

.section--white {
  background-color: var(--color-white);
}

.section-header {
  margin-bottom: 56px;
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-subheadline {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-sans);
  transition: background var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

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

.btn--primary:hover {
  background-color: #b08838;
  border-color: #b08838;
  color: var(--color-navy);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.btn--outline:hover {
  background-color: rgba(4, 32, 72, 0.06);
  border-color: var(--color-navy);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

/* ============================================
   Header
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-bg);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base);
}

.site-header.scrolled {
  border-color: var(--color-border);
  box-shadow: 0 2px 16px rgba(4, 32, 72, 0.08);
  background-color: rgba(250, 248, 243, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.header-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo-img {
  width: 220px;
  height: auto;
  max-width: none;
  object-fit: contain;
}

.header-logo-claim {
  font-size: 0.7rem;
  color: var(--color-muted);
  letter-spacing: 0.04em;
  margin-top: 1px;
  font-family: var(--font-sans);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-navy);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: color var(--transition-base), background var(--transition-base);
}

.header-nav a:hover {
  color: var(--color-gold);
  background-color: var(--color-surface-soft);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border: none;
  background: none;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-navy);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

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

/* ============================================
   Hero
   ============================================ */
.hero {
  padding: 72px 24px 80px;
  background: linear-gradient(140deg, var(--color-navy-dark) 0%, var(--color-navy) 55%, #0b3264 100%);
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background-color: rgba(199, 154, 69, 0.15);
  border: 1px solid rgba(199, 154, 69, 0.35);
  color: var(--color-gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background-color: var(--color-gold);
  border-radius: 50%;
}

.hero h1 {
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 52ch;
  margin-bottom: 24px;
  line-height: 1.7;
}

.hero-price-anchor {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-gold-light);
  background-color: rgba(199, 154, 69, 0.12);
  border: 1px solid rgba(199, 154, 69, 0.3);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.hero-trust-item::before {
  content: '✓';
  color: var(--color-gold);
  font-weight: 700;
  font-size: 0.9rem;
}

/* ============================================
   Laptop Mockup
   ============================================ */
.laptop-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.laptop {
  width: 100%;
  max-width: 560px;
  filter: drop-shadow(0 20px 40px rgba(53, 94, 72, 0.15)) drop-shadow(0 4px 12px rgba(0,0,0,0.08));
}

.laptop-body {
  background: linear-gradient(165deg, #2d2d2d 0%, #1a1a1a 100%);
  border-radius: 16px 16px 0 0;
  padding: 10px 10px 0;
  position: relative;
}

.laptop-camera {
  width: 6px;
  height: 6px;
  background: #3d3d3d;
  border-radius: 50%;
  margin: 0 auto 6px;
}

.laptop-screen {
  background: #fff;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 10;
}

.laptop-browser-bar {
  background: #f0f0f0;
  border-bottom: 1px solid #ddd;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.browser-dots {
  display: flex;
  gap: 4px;
}

.browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.browser-dot:nth-child(1) { background: #ff5f57; }
.browser-dot:nth-child(2) { background: #ffbd2e; }
.browser-dot:nth-child(3) { background: #28ca41; }

.browser-url {
  background: #e8e8e8;
  border-radius: 8px;
  padding: 2px 10px;
  font-size: 9px;
  color: #888;
  flex: 1;
  max-width: 180px;
  white-space: nowrap;
  overflow: hidden;
}

.laptop-content {
  overflow-y: auto;
  height: calc(100% - 26px);
  scrollbar-width: none;
}

.laptop-content::-webkit-scrollbar { display: none; }

/* Mini Salon Website inside Laptop */
.mini-site {
  font-family: Georgia, serif;
  font-size: 10px;
  line-height: 1.4;
  color: #2d2d2d;
  min-height: 100%;
}

.mini-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  background: #faf8f5;
  border-bottom: 1px solid #e8e4dc;
}

.mini-nav-brand {
  font-size: 11px;
  font-weight: 700;
  color: #2d2d2d;
  letter-spacing: 0.02em;
}

.mini-nav-links {
  display: flex;
  gap: 10px;
}

.mini-nav-links span {
  font-size: 8px;
  color: #888;
  cursor: pointer;
}

.mini-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 120px;
}

.mini-hero-left {
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #faf8f5;
}

.mini-hero-tag {
  font-size: 7px;
  color: #b08a6e;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-family: sans-serif;
}

.mini-hero-h1 {
  font-size: 13px;
  line-height: 1.2;
  color: #2d1f14;
  margin-bottom: 4px;
}

.mini-hero-sub {
  font-size: 7.5px;
  color: #7a6a5a;
  margin-bottom: 8px;
  font-family: sans-serif;
  line-height: 1.5;
}

.mini-hero-btn {
  display: inline-block;
  background: #a0745a;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 7.5px;
  font-family: sans-serif;
  font-weight: 600;
  width: fit-content;
}

.mini-hero-right {
  background: linear-gradient(135deg, #d4b896 0%, #c09470 30%, #a87850 60%, #8a6040 100%);
  position: relative;
  overflow: hidden;
}

.mini-hero-right::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 60px;
  height: 80px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.mini-hero-right::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 10px;
  width: 30px;
  height: 50px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.mini-info-strip {
  display: flex;
  background: #2d1f14;
  padding: 6px 14px;
  gap: 14px;
}

.mini-info-item {
  font-size: 7px;
  color: #d4b896;
  font-family: sans-serif;
}

.mini-info-item span {
  display: block;
  font-size: 6px;
  color: #8a7060;
  margin-bottom: 1px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.laptop-base {
  background: linear-gradient(180deg, #2a2a2a 0%, #1e1e1e 100%);
  height: 14px;
  border-radius: 0 0 4px 4px;
  position: relative;
}

.laptop-base::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(180deg, #2a2a2a 0%, #333 100%);
  border-radius: 0 0 4px 4px;
}

.laptop-stand {
  background: linear-gradient(180deg, #1e1e1e 0%, #2a2a2a 100%);
  height: 10px;
  width: 120px;
  margin: 0 auto;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.laptop-foot {
  background: linear-gradient(90deg, #1a1a1a, #2d2d2d, #1a1a1a);
  height: 4px;
  width: 200px;
  margin: 0 auto;
  border-radius: 0 0 4px 4px;
}

/* ============================================
   Trust Strip / Stats
   ============================================ */
.trust-strip {
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 48px 24px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.trust-item {
  text-align: center;
  padding: 24px 16px;
}

.trust-item-number {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 4px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.trust-suffix {
  font-size: 1.4rem;
}

.trust-item-label {
  font-size: 0.82rem;
  color: var(--color-muted);
  font-weight: 500;
  letter-spacing: 0.03em;
  font-family: var(--font-sans);
}

/* ============================================
   Problem/Solution
   ============================================ */
.problem-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ps-card {
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--color-border);
}

.ps-card--problem {
  background-color: var(--color-white);
}

.ps-card--solution {
  background-color: var(--color-surface-soft);
  border-color: var(--color-border-green);
}

.ps-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}

.ps-card--problem .ps-card-icon {
  background-color: #f5f0eb;
}

.ps-card--solution .ps-card-icon {
  background-color: rgba(4, 32, 72, 0.1);
}

.ps-card h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.ps-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ps-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  line-height: 1.55;
}

.ps-list li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  border-radius: 50%;
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.ps-card--problem .ps-list li::before {
  background-color: #e8ddd5;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5h6' stroke='%23999' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.ps-card--solution .ps-list li::before {
  background-color: var(--color-primary);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2 2 4-4' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ============================================
   Showcase / Examples
   ============================================ */
.showcase-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 0;
}

.showcase-tab {
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-muted);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color var(--transition-base), border-color var(--transition-base);
  font-family: var(--font-sans);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.showcase-tab:hover {
  color: var(--color-text);
}

.showcase-tab.active {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

.showcase-panel {
  display: none;
}

.showcase-panel.active {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.showcase-mockup-frame {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 500ms ease, box-shadow 500ms ease;
}

.showcase-mockup-frame:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.mockup-browser-bar {
  background: #f5f5f5;
  border-bottom: 1px solid #e8e8e8;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mockup-dots {
  display: flex;
  gap: 5px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #ffbd2e; }
.mockup-dot:nth-child(3) { background: #28ca41; }

.mockup-url-bar {
  background: #ebebeb;
  border-radius: 6px;
  padding: 3px 12px;
  font-size: 11px;
  color: #888;
  flex: 1;
  max-width: 220px;
}

.mockup-content {
  font-size: 12px;
  line-height: 1.5;
}

.mockup-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top;
  aspect-ratio: 16 / 10;
}

.showcase-info {
  padding: 8px 0;
}

.showcase-info h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.showcase-info p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 20px;
  line-height: 1.65;
}

.showcase-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.showcase-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-text);
}

.showcase-features li::before {
  content: '✓';
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.8rem;
}

.showcase-caption {
  margin-top: 16px;
  padding: 12px 16px;
  background: var(--color-surface-soft);
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  color: var(--color-muted);
  border-left: 3px solid var(--color-primary);
}

/* Mini Mockup Styles — Friseur */
.mini-friseur-nav {
  background: #1c1008;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-friseur-nav-brand {
  color: #e8c89a;
  font-size: 13px;
  font-family: Georgia, serif;
  font-weight: normal;
  letter-spacing: 0.05em;
}

.mini-friseur-nav-links {
  display: flex;
  gap: 12px;
}

.mini-friseur-nav-links span {
  color: #a08060;
  font-size: 9px;
  font-family: sans-serif;
}

.mini-friseur-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 160px;
}

.mini-friseur-hero-left {
  background: #faf7f2;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mini-friseur-hero-left h2 {
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: normal;
  color: #1c1008;
  margin-bottom: 6px;
  line-height: 1.2;
}

.mini-friseur-hero-left p {
  font-family: sans-serif;
  font-size: 9px;
  color: #7a6a5a;
  max-width: none;
  margin-bottom: 12px;
  line-height: 1.5;
}

.mini-friseur-btn {
  display: inline-block;
  background: #1c1008;
  color: #e8c89a;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 9px;
  font-family: sans-serif;
  font-weight: 600;
  width: fit-content;
}

.mini-friseur-hero-right {
  background: linear-gradient(135deg, #c09878 0%, #8a6040 50%, #5a3a1a 100%);
  position: relative;
  overflow: hidden;
}

.mini-friseur-hero-right::before {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 130px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
}

.mini-friseur-hero-right::after {
  content: '';
  position: absolute;
  top: 10px;
  left: -15px;
  width: 60px;
  height: 80px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.mini-friseur-services {
  padding: 14px 18px;
  background: #fff;
}

.mini-friseur-services h4 {
  font-family: sans-serif;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 8px;
}

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

.mini-service-item {
  background: #faf7f2;
  border-radius: 6px;
  padding: 8px 6px;
  text-align: center;
}

.mini-service-item .icon {
  font-size: 14px;
  margin-bottom: 3px;
}

.mini-service-item span {
  display: block;
  font-size: 8px;
  font-family: sans-serif;
  color: #5a4030;
}

/* Mini Mockup Styles — Garten */
.mini-garten-nav {
  background: #1e3a1e;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-garten-nav-brand {
  color: #9eca88;
  font-size: 13px;
  font-family: Georgia, serif;
  font-weight: normal;
}

.mini-garten-nav-links {
  display: flex;
  gap: 10px;
}

.mini-garten-nav-links span {
  color: #5a8a5a;
  font-size: 9px;
  font-family: sans-serif;
}

.mini-garten-hero {
  background: linear-gradient(160deg, #2d5a2d 0%, #1e3a1e 100%);
  padding: 22px 18px;
  position: relative;
  overflow: hidden;
  min-height: 120px;
}

.mini-garten-hero::before {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: rgba(100, 180, 80, 0.15);
  border-radius: 50%;
}

.mini-garten-hero::after {
  content: '';
  position: absolute;
  top: -20px;
  left: -10px;
  width: 80px;
  height: 80px;
  background: rgba(100, 180, 80, 0.08);
  border-radius: 50%;
}

.mini-garten-hero h2 {
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: normal;
  color: #e8f5e0;
  margin-bottom: 6px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.mini-garten-hero p {
  font-family: sans-serif;
  font-size: 9px;
  color: #9eca88;
  max-width: none;
  margin-bottom: 12px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.mini-garten-btn {
  display: inline-block;
  background: #6ab450;
  color: #fff;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 9px;
  font-family: sans-serif;
  font-weight: 600;
  width: fit-content;
  position: relative;
  z-index: 1;
}

.mini-garten-services {
  padding: 14px 18px;
  background: #fff;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.mini-garten-service-item {
  background: #f2f9ee;
  border-radius: 6px;
  padding: 8px 10px;
  border: 1px solid #d8edce;
}

.mini-garten-service-item .label {
  font-size: 9px;
  font-family: sans-serif;
  font-weight: 600;
  color: #2d5a2d;
}

.mini-garten-service-item .detail {
  font-size: 7.5px;
  font-family: sans-serif;
  color: #6a8a6a;
  margin-top: 1px;
}

.mini-garten-info {
  background: #1e3a1e;
  padding: 8px 18px;
  display: flex;
  gap: 16px;
}

.mini-garten-info-item {
  font-size: 7.5px;
  font-family: sans-serif;
  color: #9eca88;
}

.mini-garten-info-item .label {
  font-size: 6.5px;
  color: #5a8a5a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1px;
}

/* Mini Mockup Styles — Handwerk */
.mini-handwerk-nav {
  background: #1a2438;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-handwerk-nav-brand {
  color: #e8c84a;
  font-size: 12px;
  font-family: sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mini-handwerk-nav .badge {
  background: #e8c84a;
  color: #1a2438;
  font-size: 7px;
  font-family: sans-serif;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mini-handwerk-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 140px;
}

.mini-handwerk-hero-left {
  background: #1a2438;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mini-handwerk-hero-left h2 {
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.mini-handwerk-hero-left p {
  font-family: sans-serif;
  font-size: 8.5px;
  color: #8a9ab8;
  max-width: none;
  margin-bottom: 12px;
  line-height: 1.5;
}

.mini-handwerk-btn {
  display: inline-block;
  background: #e8c84a;
  color: #1a2438;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 9px;
  font-family: sans-serif;
  font-weight: 700;
  width: fit-content;
}

.mini-handwerk-hero-right {
  background: linear-gradient(135deg, #4a6080 0%, #2a3a58 50%, #1a2438 100%);
  position: relative;
  overflow: hidden;
}

.mini-handwerk-hero-right::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 8px,
    rgba(255,255,255,0.02) 8px,
    rgba(255,255,255,0.02) 16px
  );
}

.mini-handwerk-services {
  padding: 12px 18px;
  background: #f8f8f8;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.mini-handwerk-service {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  padding: 8px 8px;
}

.mini-handwerk-service .icon {
  font-size: 14px;
  margin-bottom: 3px;
}

.mini-handwerk-service span {
  display: block;
  font-size: 7.5px;
  font-family: sans-serif;
  font-weight: 600;
  color: #1a2438;
}

.mini-handwerk-footer-strip {
  background: #e8c84a;
  padding: 7px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-handwerk-footer-strip .text {
  font-size: 8px;
  font-family: sans-serif;
  font-weight: 700;
  color: #1a2438;
}

/* ============================================
   Features / Leistungsumfang
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base), transform var(--transition-base), border-color var(--transition-base);
}

.feature-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--color-border-green);
}

.feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background-color: var(--color-surface-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.feature-text h4 {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2px;
}

.feature-text p {
  font-size: 0.78rem;
  color: var(--color-muted);
  line-height: 1.5;
}

/* ============================================
   Pricing
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}

.pricing-card {
  border-radius: var(--radius-xl);
  padding: 40px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.pricing-card--featured {
  background: var(--color-surface-soft);
  border-color: var(--color-border-green);
}

.pricing-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary-soft);
  margin-bottom: 12px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.pricing-amount .price {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--color-text);
  line-height: 1;
}

.pricing-amount .currency {
  font-size: 1.4rem;
  color: var(--color-muted);
  font-family: var(--font-serif);
}

.pricing-amount .period {
  font-size: 0.9rem;
  color: var(--color-muted);
  font-family: var(--font-sans);
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 28px;
  line-height: 1.55;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 1.5;
}

.pricing-list li::before {
  content: '✓';
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.82rem;
  color: var(--color-muted);
  padding: 14px 20px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   Support Section
   ============================================ */
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.support-card {
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--color-border);
}

.support-card--included {
  background: var(--color-surface-soft);
  border-color: var(--color-border-green);
}

.support-card--excluded {
  background: var(--color-white);
}

.support-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.support-card-head-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.support-card--included .support-card-head-icon {
  background: rgba(199, 154, 69, 0.18);
}

.support-card--excluded .support-card-head-icon {
  background: #f0ebe4;
}

.support-card h3 {
  font-size: 1.05rem;
  font-family: var(--font-sans);
  font-weight: 600;
}

.support-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.support-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-text);
}

.support-card--included .support-list li::before {
  content: '✓';
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.support-card--excluded .support-list li::before {
  content: '—';
  color: #b0a89a;
  font-weight: 400;
  flex-shrink: 0;
}

/* ============================================
   Not Included Section
   ============================================ */
.not-included-note {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 60ch;
}

.not-included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.not-included-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--color-text);
  padding: 10px 14px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.not-included-item::before {
  content: '—';
  color: #b0a89a;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.not-included-addendum {
  font-size: 0.87rem;
  color: var(--color-muted);
  padding: 14px 18px;
  background: var(--color-surface-soft);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-border-green);
}

/* ============================================
   Process / Timeline
   ============================================ */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--color-border-green), var(--color-primary), var(--color-primary), var(--color-border-green));
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.process-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  margin-bottom: 16px;
  border: 4px solid var(--color-bg);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.process-step--optional .process-step-num {
  background: var(--color-primary-soft);
}

.process-step h4 {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-text);
}

.process-step p {
  font-size: 0.8rem;
  color: var(--color-muted);
  line-height: 1.55;
  max-width: none;
}

.process-step-optional-tag {
  display: inline-block;
  font-size: 0.68rem;
  background: var(--color-surface-soft);
  color: var(--color-primary-soft);
  padding: 2px 7px;
  border-radius: 100px;
  margin-top: 4px;
  font-weight: 600;
  border: 1px solid var(--color-border-green);
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-base);
  background: var(--color-white);
}

.faq-item:hover {
  border-color: var(--color-border-green);
}

.faq-item summary {
  list-style: none;
  padding: 18px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--color-text);
  user-select: none;
}

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

.faq-item summary::after {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.5 6.75L9 11.25L13.5 6.75' stroke='%23C79A45' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform var(--transition-base);
}

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

.faq-item[open] {
  border-color: var(--color-border-green);
  background: var(--color-surface-soft);
}

.faq-item[open] summary {
  color: var(--color-primary);
}

.faq-answer {
  padding: 0 22px 18px;
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: none;
}

/* ============================================
   Contact Form
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.contact-info {
  padding-top: 8px;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

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

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--color-surface-soft);
  border: 1px solid var(--color-border-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-bottom: 1px;
}

.contact-detail-value {
  font-weight: 500;
  color: var(--color-text);
}

.contact-detail-value a {
  color: var(--color-text);
}

.contact-detail-value a:hover {
  color: var(--color-primary);
}

.form-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

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

.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}

.form-group label .required {
  color: var(--color-primary);
  margin-left: 2px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(4, 32, 72, 0.12);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: var(--color-error);
  background: var(--color-error-bg);
}

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

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

.form-error-msg {
  display: none;
  font-size: 0.75rem;
  color: var(--color-error);
  margin-top: 4px;
}

.form-group.has-error .form-error-msg {
  display: block;
}

.form-submit-btn {
  width: 100%;
  margin-top: 8px;
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-top: 14px;
}

.form-success {
  display: none;
  background: var(--color-surface-soft);
  border: 1px solid var(--color-border-green);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  color: var(--color-primary);
}

.form-success.show {
  display: block;
}

.form-success h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.form-success p {
  font-size: 0.85rem;
  color: var(--color-muted);
  max-width: none;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background-color: var(--color-surface-soft);
  color: var(--color-text);
  padding: 56px 24px 32px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo-img {
  width: 240px;
  height: auto;
  max-width: none;
  object-fit: contain;
  margin-bottom: 14px;
}

.footer-brand-claim {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.82rem;
  color: #8a8678;
  max-width: 28ch;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.87rem;
  color: var(--color-muted);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-col ul li a:hover {
  color: var(--color-navy);
  text-decoration: none;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-item {
  font-size: 0.87rem;
  color: var(--color-muted);
}

.footer-contact-item a {
  color: var(--color-muted);
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: var(--color-navy);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
  flex-wrap: wrap;
}

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

.footer-bottom-legal {
  display: flex;
  gap: 20px;
}

.footer-bottom-legal a {
  font-size: 0.78rem;
  color: var(--color-muted);
  text-decoration: none;
}

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

/* ============================================
   Scroll Reveal Animations
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ============================================
   Responsive — Tablet (< 1024px)
   ============================================ */
@media (max-width: 1023px) {
  :root {
    --section-padding: 72px 20px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .laptop-wrap {
    max-width: 480px;
    margin: 0 auto;
  }

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

  .problem-solution-grid {
    grid-template-columns: 1fr;
  }

  .showcase-panel.active {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

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

  .not-included-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process-timeline::before { display: none; }

  .process-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 20px;
  }

  .process-step-num {
    margin-bottom: 0;
    flex-shrink: 0;
  }

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .header-nav { display: none; }
  .nav-toggle { display: flex; }

  .header-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 12px 24px 20px;
    box-shadow: var(--shadow-md);
    gap: 2px;
  }

  .header-cta .btn { display: none; }

  .header-inner {
    position: relative;
  }
}

/* ============================================
   Responsive — Mobile (< 640px)
   ============================================ */
@media (max-width: 639px) {
  :root {
    --section-padding: 56px 16px;
  }

  .hero {
    padding: 48px 16px 56px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .trust-item {
    padding: 18px 12px;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .showcase-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
  }

  .showcase-tab {
    white-space: nowrap;
  }

  .hero-trust {
    gap: 12px;
  }

  .header-logo-claim {
    display: none;
  }

  .ps-card {
    padding: 28px 24px;
  }

  .pricing-card {
    padding: 28px 24px;
  }

  .form-card {
    padding: 28px 24px;
  }

  .support-card {
    padding: 24px;
  }
}

/* ============================================
   Content Pages (Impressum / Datenschutz)
   ============================================ */
.content-page {
  padding: 64px 24px 96px;
}

.content-page-inner {
  max-width: 720px;
  margin: 0 auto;
}

.content-page h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 8px;
}

.content-page-intro {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-bottom: 48px;
}

.content-section {
  margin-bottom: 40px;
}

.content-section h2 {
  font-size: 1.2rem;
  font-family: var(--font-sans);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

.content-section p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.75;
  margin-bottom: 10px;
  max-width: none;
}

.content-section ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 6px;
}

.content-section ul li {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 4px;
}

.content-section strong {
  color: var(--color-text);
  font-weight: 600;
}

.content-section address {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.8;
}

/* ============================================
   Laptop Image (Hero)
   ============================================ */
.laptop-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.laptop-img {
  width: 100%;
  max-width: 680px;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(4, 32, 72, 0.18)) drop-shadow(0 4px 12px rgba(0,0,0,0.08));
  border-radius: 4px;
}

/* ============================================
   Unified Mockup Styles (mx-*)
   ============================================ */

/* Nav bar */
.mx-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 16px;
}

.mx-nav--salon  { background: #1c1008; }
.mx-nav--garten { background: #1e3a1e; }
.mx-nav--handwerk { background: #1a2438; }

.mx-brand {
  font-family: Georgia, serif;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 0.03em;
}

.mx-nav--salon  .mx-brand { color: #e8c89a; }
.mx-nav--garten .mx-brand { color: #9eca88; }

.mx-brand--handwerk {
  font-family: sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #e8c84a;
}

.mx-nav-brand-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mx-badge {
  background: #e8c84a;
  color: #1a2438;
  font-size: 7px;
  font-family: sans-serif;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mx-nav-links {
  display: flex;
  gap: 10px;
}

.mx-nav-links span {
  font-size: 8px;
  font-family: sans-serif;
}

.mx-nav--salon  .mx-nav-links span { color: #7a6050; }
.mx-nav--garten .mx-nav-links span { color: #5a8a5a; }
.mx-nav--handwerk .mx-nav-links span { color: #6a7a90; }

/* Hero */
.mx-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 140px;
}

.mx-hero--salon   { background: #faf7f2; }
.mx-hero--garten  { background: #1e3a1e; }
.mx-hero--handwerk { background: #1a2438; }

.mx-hero-content {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mx-eyebrow {
  font-family: sans-serif;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.mx-nav--salon  ~ .mx-hero .mx-eyebrow,
.mx-hero--salon .mx-eyebrow  { color: #b08a6e; }
.mx-hero--garten .mx-eyebrow { color: #6aba50; }
.mx-hero--handwerk .mx-eyebrow { color: #e8c84a; }

.mx-h1 {
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 5px;
}

.mx-hero--salon   .mx-h1 { color: #1c1008; }
.mx-hero--garten  .mx-h1 { color: #e8f5e0; }
.mx-hero--handwerk .mx-h1 { color: #ffffff; }

.mx-h1--handwerk {
  font-family: sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.mx-sub {
  font-family: sans-serif;
  font-size: 8px;
  line-height: 1.55;
  margin-bottom: 12px;
  max-width: none;
}

.mx-hero--salon   .mx-sub { color: #7a6a5a; }
.mx-hero--garten  .mx-sub { color: #9eca88; }

.mx-sub--handwerk { color: #8a9ab8; }

/* CTA Buttons */
.mx-btn {
  display: inline-block;
  font-size: 8.5px;
  font-family: sans-serif;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 4px;
  width: fit-content;
}

.mx-btn--salon    { background: #1c1008; color: #e8c89a; }
.mx-btn--garten   { background: #6aba50; color: #fff; }
.mx-btn--handwerk { background: #e8c84a; color: #1a2438; }

.mx-btn--handwerk-sm {
  display: inline-block;
  background: #e8c84a;
  color: #1a2438;
  font-size: 8px;
  font-family: sans-serif;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
}

/* Hero visual columns */
.mx-hero-visual {
  position: relative;
  overflow: hidden;
}

.mx-hero-visual--salon {
  background: linear-gradient(135deg, #c09878 0%, #8a6040 50%, #5a3a1a 100%);
}

.mx-hero-visual--garten {
  background: linear-gradient(160deg, #2d5a2d 0%, #1a3a1a 100%);
}

.mx-hero-visual--handwerk {
  background: linear-gradient(135deg, #2a3a58 0%, #1a2438 100%);
}

.mx-visual-shape {
  position: absolute;
  border-radius: 50%;
}

.mx-visual-shape--salon-1 {
  bottom: -20px; right: -20px;
  width: 90px; height: 110px;
  background: rgba(255,255,255,0.07);
}
.mx-visual-shape--salon-2 {
  top: -10px; left: -15px;
  width: 55px; height: 75px;
  background: rgba(255,255,255,0.05);
}
.mx-visual-shape--garten-1 {
  bottom: -25px; right: -20px;
  width: 100px; height: 100px;
  background: rgba(100,180,80,0.15);
}
.mx-visual-shape--garten-2 {
  top: -15px; left: -10px;
  width: 65px; height: 65px;
  background: rgba(100,180,80,0.08);
}
.mx-visual-shape--hw-1 {
  width: 100%; height: 100%;
  border-radius: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 8px,
    rgba(255,255,255,0.025) 8px,
    rgba(255,255,255,0.025) 16px
  );
}
.mx-visual-shape--hw-2 {
  bottom: -20px; right: -20px;
  width: 80px; height: 80px;
  background: rgba(232,200,74,0.12);
}

/* Services — Friseur (grid cards) */
.mx-services {
  padding: 12px 16px;
}

.mx-services--salon   { background: #fff; }
.mx-services--garten  { background: #fff; }
.mx-services--handwerk { background: #f4f4f4; }

.mx-services-label {
  font-family: sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 8px;
}

.mx-services-label--handwerk { color: #6a7a90; }

.mx-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.mx-service-card {
  border-radius: 5px;
  padding: 8px 5px;
  text-align: center;
}

.mx-service-card--salon {
  background: #faf7f2;
  border: 1px solid #ede5da;
}

.mx-service-card--salon span {
  display: block;
  font-size: 7.5px;
  font-family: sans-serif;
  color: #5a4030;
  margin-top: 4px;
}

.mx-service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Services — Garten (list rows) */
.mx-services-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.mx-service-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.mx-service-row-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: #f2f9ee;
  border: 1px solid #d0e8c0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mx-service-row-name {
  font-family: sans-serif;
  font-size: 9px;
  font-weight: 600;
  color: #1e3a1e;
  line-height: 1.2;
}

.mx-service-row-detail {
  font-family: sans-serif;
  font-size: 7.5px;
  color: #6a8a6a;
  line-height: 1.3;
  margin-top: 1px;
}

/* Services — Handwerk (icon grid) */
.mx-hw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.mx-hw-item {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  padding: 8px 5px;
  text-align: center;
}

.mx-hw-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.mx-hw-item span {
  display: block;
  font-size: 7.5px;
  font-family: sans-serif;
  font-weight: 600;
  color: #1a2438;
}

/* Info bars */
.mx-info-bar {
  display: flex;
  gap: 14px;
  padding: 7px 16px;
  flex-wrap: wrap;
}

.mx-info-bar--salon   { background: #1c1008; }
.mx-info-bar--garten  { background: #1e3a1e; }

.mx-info-bar .mx-info-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: sans-serif;
  font-size: 7.5px;
}

.mx-info-bar--salon  .mx-info-item { color: #d4b896; }
.mx-info-bar--garten .mx-info-item { color: #9eca88; }

/* Handwerk footer strip */
.mx-hw-footer {
  background: #e8c84a;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mx-hw-footer span {
  font-size: 8px;
  font-family: sans-serif;
  font-weight: 600;
  color: #1a2438;
}

/* Mobile adjustments for laptop image */
@media (max-width: 1023px) {
  .laptop-img-wrap {
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 639px) {
  .laptop-img {
    max-width: 100%;
  }

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

/* Mobile: header logo smaller */
@media (max-width: 639px) {
  .header-logo-img {
    width: 150px;
    max-width: none;
  }
}

/* ============================================
   Blue-Gold Theme — Targeted Overrides
   ============================================ */

/* Hero: h1 white on dark background */
.hero h1 {
  color: #FFFFFF;
}

/* Hero: outline button adapted for dark background */
.hero .btn--outline {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.32);
}
.hero .btn--outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
  color: #FFFFFF;
}

/* Showcase: gold hover border on mockup frame */
.showcase-mockup-frame:hover {
  border-color: var(--color-gold);
}

/* Showcase: checkmarks navy */
.showcase-features li::before {
  color: var(--color-navy);
}

/* Features: gold-tinted icon bg, gold border on hover */
.feature-icon {
  background-color: rgba(199, 154, 69, 0.1);
}
.feature-item:hover {
  border-color: rgba(199, 154, 69, 0.5);
  box-shadow: 0 4px 16px rgba(4, 32, 72, 0.08);
  transform: translateY(-2px);
}

/* Pricing: gold checkmarks */
.pricing-list li::before {
  color: var(--color-gold);
}

/* Pricing featured card: navy dark with gold accents */
.pricing-card--featured {
  background: var(--color-navy);
  border-color: var(--color-navy-dark);
}
.pricing-card--featured .pricing-label {
  color: var(--color-gold);
}
.pricing-card--featured .pricing-amount .price,
.pricing-card--featured .pricing-amount .currency {
  color: #FFFFFF;
}
.pricing-card--featured .pricing-amount .period {
  color: rgba(255, 255, 255, 0.58);
}
.pricing-card--featured .pricing-desc {
  color: rgba(255, 255, 255, 0.68);
}
.pricing-card--featured .pricing-list li {
  color: rgba(255, 255, 255, 0.85);
}
.pricing-card--featured .pricing-list li::before {
  color: var(--color-gold-light);
}
.pricing-card--featured:hover {
  box-shadow: 0 8px 32px rgba(2, 21, 47, 0.35);
}

/* Support included card: navy highlight */
.support-card--included {
  background: var(--color-navy);
  border-color: var(--color-navy-dark);
}
.support-card--included h3 {
  color: var(--color-gold-light);
}
.support-card--included .support-list li {
  color: rgba(255, 255, 255, 0.85);
}
.support-card--included .support-list li::before {
  color: var(--color-gold);
}

/* Process timeline: gold-to-navy gradient */
.process-timeline::before {
  background: linear-gradient(90deg, var(--color-gold), var(--color-navy), var(--color-navy), var(--color-gold));
}

/* FAQ: gold hover + open border */
.faq-item:hover {
  border-color: rgba(199, 154, 69, 0.4);
}
.faq-item[open] {
  border-color: rgba(199, 154, 69, 0.45);
  background: var(--color-surface-soft);
}
.faq-item[open] summary {
  color: var(--color-navy);
}

/* Contact: detail icon navy-tinted */
.contact-detail-icon {
  background: rgba(4, 32, 72, 0.05);
  border-color: rgba(4, 32, 72, 0.12);
}

/* Footer: brand text */
.footer-brand p {
  color: var(--color-muted);
}

/* Content pages (Impressum / Datenschutz): navy section heading border */
.content-section h2 {
  color: var(--color-navy);
  border-bottom-color: var(--color-border);
}

/* Section label: navy */
.section-label {
  color: var(--color-navy);
}

/* Tablet: logo smaller */
@media (max-width: 1023px) {
  .header-logo-img {
    width: 185px;
  }

  .header-nav.open a {
    color: var(--color-navy);
  }

  .header-nav.open a:hover {
    color: var(--color-gold);
    background-color: var(--color-surface-soft);
  }
}
/* Mobile: footer logo smaller */
@media (max-width: 639px) {
  .footer-logo-img {
    width: 180px;
  }
}
