/* ============================================================
   KANZLEI FREIFAHRT – Globales Stylesheet
   Farbkonzept: Elegantes Beige / Braun / Gold
   ============================================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  --beige-light:   #FAF6F0;
  --beige-mid:     #F0E8D8;
  --beige-dark:    #E0D0B8;
  --brown-dark:    #3E2723;
  --brown-mid:     #6D4C41;
  --brown-light:   #A1887F;
  --gold:          #B8860B;
  --gold-light:    #D4A017;
  --gold-hover:    #9A6F00;
  --white:         #FFFFFF;
  --text-dark:     #2C1A10;
  --text-mid:      #5D4037;
  --text-light:    #8D6E63;
  --success:       #4CAF50;
  --shadow:        0 4px 20px rgba(62,39,35,0.12);
  --shadow-hover:  0 8px 32px rgba(62,39,35,0.22);
  --radius:        8px;
  --radius-lg:     16px;
  --transition:    all 0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--beige-light);
  color: var(--text-dark);
  line-height: 1.7;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  color: var(--brown-dark);
  line-height: 1.3;
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

p { margin-bottom: 1rem; color: var(--text-mid); }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-hover); }

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

ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.4rem; color: var(--text-mid); }

strong { color: var(--brown-dark); }

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Sections ---- */
section { padding: 80px 0; }
.section-light  { background: var(--beige-light); }
.section-mid    { background: var(--beige-mid); }
.section-dark   { background: var(--brown-dark); color: var(--beige-light); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--gold-light); }
.section-dark p, .section-dark li { color: var(--beige-dark); }

.section-title {
  text-align: center;
  margin-bottom: 16px;
}
.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 56px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.section-divider {
  width: 64px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 48px;
  border-radius: 2px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(184,134,11,0.35);
}
.btn-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(184,134,11,0.5);
  transform: translateY(-2px);
}

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

.btn-white {
  background: var(--white);
  color: var(--brown-dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--beige-mid);
  color: var(--brown-dark);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 44px; font-size: 1.1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }

/* ---- Sticky CTA Bar ---- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--brown-dark);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}
.sticky-cta p {
  color: var(--beige-light);
  margin: 0;
  font-size: 0.95rem;
}
.sticky-cta .btn { padding: 10px 28px; font-size: 0.95rem; }

/* ---- Navigation ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--brown-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
}
.navbar-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
  text-decoration: none;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.navbar-logo span { display: block; font-size: 0.7rem; font-weight: 300; color: var(--beige-dark); letter-spacing: 2px; text-transform: uppercase; font-family: 'Lato', sans-serif; }
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.navbar-nav a {
  color: var(--beige-light);
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
  font-weight: 400;
}
.navbar-nav a:hover, .navbar-nav a.active {
  background: rgba(255,255,255,0.1);
  color: var(--gold-light);
}
.navbar-nav .nav-cta a {
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  padding: 8px 20px;
}
.navbar-nav .nav-cta a:hover {
  background: var(--gold-hover);
  color: var(--white);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.75rem; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--brown-dark);
  border: 1px solid var(--brown-mid);
  border-radius: var(--radius);
  min-width: 220px;
  padding: 8px 0;
  box-shadow: var(--shadow);
  z-index: 999;
}
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  border-radius: 0;
  font-size: 0.88rem;
}
.nav-dropdown:hover .dropdown-menu { display: block; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--beige-light);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-nav {
  display: none;
  background: var(--brown-dark);
  padding: 16px 24px 24px;
  border-top: 1px solid var(--brown-mid);
}
.mobile-nav a {
  display: block;
  color: var(--beige-light);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 1rem;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold-light); }

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, var(--brown-dark) 0%, #5D3A2A 60%, #7A4F3A 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23B8860B' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,134,11,0.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--gold-light); }
.hero-lead {
  color: var(--beige-dark);
  font-size: 1.15rem;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
}
.hero-stat .label { font-size: 0.8rem; color: var(--beige-dark); text-transform: uppercase; letter-spacing: 1px; }

/* Guarantee Box in Hero */
.guarantee-box {
  background: rgba(255,255,255,0.07);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
}
.guarantee-seal {
  width: 120px;
  height: 120px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 8px rgba(184,134,11,0.2);
}
.guarantee-seal .pct { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--white); line-height: 1; }
.guarantee-seal .txt { font-size: 0.65rem; color: var(--white); letter-spacing: 1px; text-transform: uppercase; }
.guarantee-box h3 { color: var(--gold-light); margin-bottom: 12px; }
.guarantee-box p { color: var(--beige-dark); font-size: 0.95rem; margin-bottom: 0; }
.guarantee-box .money-back {
  display: inline-block;
  margin-top: 16px;
  background: rgba(76,175,80,0.2);
  border: 1px solid var(--success);
  color: #81C784;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
}

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--beige-mid);
  padding: 28px 0;
  border-top: 1px solid var(--beige-dark);
  border-bottom: 1px solid var(--beige-dark);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brown-dark);
}
.trust-item .icon { font-size: 1.4rem; }

/* ---- Service Cards ---- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 16px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}
.service-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, #FFFDF5 0%, var(--white) 100%);
}
.service-card.featured::after {
  content: 'BELIEBT';
  position: absolute;
  top: 20px; right: -28px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 36px;
  transform: rotate(45deg);
}
.service-icon {
  width: 64px;
  height: 64px;
  background: var(--beige-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: 0.95rem; margin-bottom: 20px; }
.service-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}
.service-price span { font-size: 1rem; font-weight: 400; color: var(--text-light); font-family: 'Lato', sans-serif; }
.service-features { list-style: none; padding: 0; margin: 20px 0 28px; }
.service-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--beige-mid);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-features li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; }
.service-features li:last-child { border-bottom: none; }

/* ---- Price Tables ---- */
.price-section { background: var(--beige-mid); }
.price-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.price-tab {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--brown-light);
  background: transparent;
  color: var(--brown-mid);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.price-tab:hover, .price-tab.active {
  background: var(--brown-dark);
  border-color: var(--brown-dark);
  color: var(--white);
}
.price-table-wrapper { display: none; }
.price-table-wrapper.active { display: block; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.price-table thead tr {
  background: var(--brown-dark);
  color: var(--white);
}
.price-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--beige-light);
}
.price-table thead th:last-child, .price-table thead th:nth-last-child(2) {
  color: var(--gold-light);
}
.price-table tbody tr {
  border-bottom: 1px solid var(--beige-mid);
  transition: var(--transition);
}
.price-table tbody tr:last-child { border-bottom: none; }
.price-table tbody tr:hover { background: #FFFDF5; }
.price-table td {
  padding: 14px 20px;
  font-size: 0.92rem;
  color: var(--text-mid);
}
.price-table td:first-child { font-weight: 600; color: var(--text-dark); }
.price-table .tag-points {
  display: inline-block;
  background: #FFF3E0;
  color: #E65100;
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}
.price-table .tag-verbot {
  display: inline-block;
  background: #FFEBEE;
  color: #C62828;
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}
.price-table .tag-none {
  display: inline-block;
  background: #E8F5E9;
  color: #2E7D32;
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}
.price-table .honorar { color: var(--gold); font-weight: 700; }
.price-table .punkte-kosten { color: var(--brown-mid); font-weight: 700; }
.price-table-note {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 12px;
  text-align: center;
}

/* ---- Voucher Section ---- */
.voucher-section {
  background: linear-gradient(135deg, var(--brown-dark) 0%, #5D3A2A 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.voucher-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23B8860B' fill-opacity='0.08'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0 5.5 4.5 10 10 10s10-4.5 10-10-4.5-10-10-10-10 4.5-10 10z'/%3E%3C/g%3E%3C/svg%3E");
}
.voucher-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.voucher-badge {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 12px rgba(184,134,11,0.2);
  text-align: center;
}
.voucher-badge .discount { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--white); line-height: 1; }
.voucher-badge .off { font-size: 0.75rem; color: var(--white); letter-spacing: 2px; text-transform: uppercase; }
.voucher-content h2 { color: var(--gold-light); margin-bottom: 12px; }
.voucher-content p { color: var(--beige-dark); margin-bottom: 20px; }
.voucher-code-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  border: 2px dashed var(--gold);
  padding: 12px 24px;
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.voucher-code-box .code {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 3px;
}
.voucher-code-box .code-label { font-size: 0.8rem; color: var(--beige-dark); }

/* ---- How It Works ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
}
.step-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
}
.step-number {
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 20px;
}
.step-card h4 { margin-bottom: 10px; }
.step-card p { font-size: 0.9rem; margin-bottom: 0; }

/* ---- Info Section ---- */
.info-section {
  background: var(--beige-mid);
  border-top: 4px solid var(--gold);
}
.info-label {
  display: inline-block;
  background: var(--beige-dark);
  color: var(--brown-mid);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.info-card-icon { font-size: 2rem; margin-bottom: 16px; }
.info-card h4 { margin-bottom: 10px; }
.info-card p { font-size: 0.9rem; margin-bottom: 16px; }
.info-card a.read-more { font-size: 0.9rem; font-weight: 700; color: var(--gold); }
.info-card a.read-more:hover { color: var(--gold-hover); }

/* ---- Points System ---- */
.points-stages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 40px 0;
}
.points-stage {
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.points-stage.green  { background: #E8F5E9; border-top: 4px solid #4CAF50; }
.points-stage.yellow { background: #FFFDE7; border-top: 4px solid #FFC107; }
.points-stage.red    { background: #FFF3E0; border-top: 4px solid #FF5722; }
.points-stage.black  { background: #FFEBEE; border-top: 4px solid #B71C1C; }
.points-stage .stage-pts {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.points-stage.green  .stage-pts { color: #2E7D32; }
.points-stage.yellow .stage-pts { color: #F57F17; }
.points-stage.red    .stage-pts { color: #BF360C; }
.points-stage.black  .stage-pts { color: #B71C1C; }
.points-stage h4 { margin-bottom: 8px; font-size: 1rem; }
.points-stage p { font-size: 0.85rem; margin-bottom: 0; }

/* ---- FAQ ---- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--beige-dark);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brown-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-icon { font-size: 1.4rem; color: var(--gold); flex-shrink: 0; transition: var(--transition); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.95rem;
  color: var(--text-mid);
  margin: 0;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; left: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--beige-dark);
  line-height: 1;
}
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; }
.testimonial-text { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 20px; font-style: italic; }
.testimonial-author { font-weight: 700; color: var(--brown-dark); font-size: 0.9rem; }
.testimonial-case { font-size: 0.82rem; color: var(--text-light); }

/* ---- Page Header ---- */
.page-header {
  background: linear-gradient(135deg, var(--brown-dark) 0%, #5D3A2A 100%);
  padding: 64px 0 56px;
  text-align: center;
}
.page-header h1 { color: var(--white); margin-bottom: 12px; }
.page-header p { color: var(--beige-dark); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.85rem;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: var(--beige-dark); }

/* ---- Content Pages ---- */
.content-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}
.content-block h2 { margin-bottom: 20px; }
.content-block h3 { margin: 28px 0 12px; color: var(--brown-mid); }
.content-block p { margin-bottom: 16px; }
.content-block ul, .content-block ol { margin-bottom: 16px; }

.highlight-box {
  background: linear-gradient(135deg, #FFFDF5 0%, #FFF8E1 100%);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.highlight-box p { margin: 0; color: var(--text-dark); }

.warning-box {
  background: #FFF3E0;
  border-left: 4px solid #FF5722;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.warning-box p { margin: 0; color: #BF360C; }

/* ---- Footer ---- */
.footer {
  background: var(--brown-dark);
  padding: 64px 0 0;
  color: var(--beige-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-brand .logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.footer-brand .tagline {
  font-size: 0.75rem;
  color: var(--brown-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.9rem; color: var(--brown-light); margin-bottom: 20px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--beige-dark);
}
.footer-contact-item a { color: var(--gold-light); }
.footer-contact-item a:hover { color: var(--gold); }
.footer h4 {
  color: var(--gold-light);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--brown-light); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--brown-light); margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.82rem; color: var(--brown-light); }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .guarantee-box { max-width: 480px; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .navbar-nav { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .sticky-cta { flex-direction: column; gap: 10px; padding: 16px; }
  .sticky-cta p { text-align: center; font-size: 0.85rem; }
  .voucher-inner { flex-direction: column; text-align: center; }
  .price-table { font-size: 0.82rem; }
  .price-table th, .price-table td { padding: 10px 12px; }
  .content-block { padding: 28px 20px; }
  .hero-stats { justify-content: center; }
  .trust-bar-inner { gap: 24px; }
}

@media (max-width: 480px) {
  .btn-lg { padding: 14px 28px; font-size: 1rem; }
  .hero { padding: 60px 0 56px; }
  .price-table { display: block; overflow-x: auto; }
}

/* ---- SVG Icons ---- */
.svg-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: currentColor;
}
.svg-icon svg { display: block; }

/* Icon in Trust Bar */
.trust-item .svg-icon {
  color: var(--gold);
  width: 20px;
  height: 20px;
}
.trust-item .svg-icon svg { width: 20px; height: 20px; }

/* Icon in Service Card */
.service-icon .svg-icon {
  color: var(--gold);
}
.service-icon .svg-icon svg { width: 32px; height: 32px; stroke-width: 1.4; }

/* Icon in Info Card */
.info-card-icon .svg-icon {
  color: var(--gold);
}
.info-card-icon .svg-icon svg { width: 28px; height: 28px; stroke-width: 1.4; }

/* Icon in Footer Contact */
.footer-contact-item .svg-icon {
  color: var(--gold-light);
  flex-shrink: 0;
}
.footer-contact-item .svg-icon svg { width: 16px; height: 16px; }

/* Icon in Hero Badge */
.hero-badge .svg-icon svg { width: 16px; height: 16px; }

/* Icon in Sticky CTA */
.sticky-cta .svg-icon svg { width: 18px; height: 18px; }

/* Stars in testimonials */
.testimonial-stars .svg-icon { color: var(--gold); }

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
.pb-80 { padding-bottom: 80px; }
