/* ===========================
       WORDPRESS TEMPLATE: VBETREUT
       Designed for easy Elementor/block adoption
       =========================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-dark: #1e3f35;
  --green-mid: #2f6b58;
  --green-soft: #3d7a66;
  --green-pale: #eaf3ef;
  --green-tint: #f0f7f4;
  --sand: #f7f3ed;
  --sand-mid: #ede8e0;
  --sand-dark: #d9d0c6;
  --cream: #fdfaf6;
  --text-dark: #1a2622;
  --text-mid: #3d4f49;
  --text-soft: #637169;
  --text-muted: #8fa098;
  --gold: #b98547;
  --white: #ffffff;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --shadow-card: 0 2px 20px rgba(30, 63, 53, 0.07);
  --shadow-float: 0 8px 40px rgba(30, 63, 53, 0.14);
}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/Fraunces72pt-Light.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/Fraunces72pt-LightItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Fraunces72pt-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Fraunces72pt-Italic.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/Fraunces72pt-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Fraunces72pt-Bold.woff2") format("woff2");
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/DMSans-Light.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/DMSans-LightItalic.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/DMSans-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/DMSans-Italic.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/DMSans-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/DMSans-SemiBold.woff2") format("woff2");
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--sand);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ─── UTILITY ─────────────────────── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--sand-dark);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-mid);
}

.label svg {
  width: 13px;
  height: 13px;
  stroke: var(--green-mid);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.label--light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #c8e8d8;
}

.label--light svg {
  stroke: #c8e8d8;
}

/* ─── BUTTONS ─────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--green-mid);
  color: white;
  padding: 14px 26px;
  box-shadow: 0 4px 20px rgba(47, 107, 88, 0.28);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: white;
  color: var(--text-dark);
  padding: 13px 24px;
  border: 1.5px solid var(--sand-dark);
  box-shadow: var(--shadow-card);
}
.btn-ghost:hover {
  border-color: #bbb0a2;
  transform: translateY(-1px);
}

.btn-white {
  background: white;
  color: var(--green-dark);
  padding: 14px 26px;
}
.btn-white:hover {
  background: #f3f0ea;
}

.btn-outline-white {
  background: transparent;
  color: white;
  padding: 13px 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.38);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── HEADER / NAV ────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 237, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217, 208, 198, 0.6);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--green-mid);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: "Fraunces", serif;
  font-size: 17px;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(47, 107, 88, 0.24);
}

.logo-text .name {
  font-family: "Fraunces", serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.logo-text .sub {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-size: 14px;
  color: var(--text-soft);
  font-weight: 500;
  transition: color 0.2s;
}
.main-nav a:hover {
  color: var(--text-dark);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-nav-ghost {
  background: white;
  color: var(--text-dark);
  border: 1.5px solid var(--sand-dark);
}
.btn-nav-ghost:hover {
  border-color: #bbb;
}

.btn-nav-solid {
  background: var(--green-mid);
  color: white;
  box-shadow: 0 3px 14px rgba(47, 107, 88, 0.24);
}
.btn-nav-solid:hover {
  background: var(--green-dark);
}

.btn-nav svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── HERO ─────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 8% 20%,
      rgba(47, 107, 88, 0.14) 0%,
      transparent 38%
    ),
    radial-gradient(
      circle at 88% 10%,
      rgba(185, 133, 71, 0.12) 0%,
      transparent 28%
    ),
    radial-gradient(
      circle at 92% 90%,
      rgba(47, 107, 88, 0.07) 0%,
      transparent 32%
    );
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(255, 255, 255, 0.5),
    transparent 70%
  );
  pointer-events: none;
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(36px, 4.2vw, 60px);
  color: var(--text-dark);
  max-width: 680px;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: italic;
  color: var(--green-mid);
}

.hero-desc {
  font-size: 18px;
  color: var(--text-soft);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-card);
}

.stat-card .value {
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.stat-card .desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 4px;
}

/* Hero Card */
.hero-card-wrap {
  position: relative;
}

.hero-card-glow {
  position: absolute;
  inset: -16px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 40px;
  filter: blur(24px);
}

.hero-card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: 0 16px 64px rgba(30, 63, 53, 0.14);
  backdrop-filter: blur(8px);
}

.hero-card-inner {
  background: var(--green-dark);
  border-radius: calc(var(--radius-xl) - 6px);
  padding: 28px;
  color: white;
}

.hero-card-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: #b2dcc5;
  margin-bottom: 14px;
}

.hero-card-badge svg {
  width: 14px;
  height: 14px;
  stroke: #b2dcc5;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-card-inner h2 {
  font-size: 22px;
  color: white;
  margin-bottom: 20px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 13px 15px;
  margin-bottom: 10px;
  font-size: 13.5px;
  color: #dde9e3;
  line-height: 1.55;
}

.check-item:last-child {
  margin-bottom: 0;
}

.check-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  stroke: #b2dcc5;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-card-cta {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  background: white;
  color: var(--green-dark);
  padding: 14px 20px;
  font-weight: 600;
  font-size: 14px;
  margin-top: 20px;
  cursor: pointer;
  transition: background 0.2s;
  border: none;
  font-family: "DM Sans", sans-serif;
}
.hero-card-cta:hover {
  background: #f0ede6;
}

.hero-card-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.mini-card {
  background: var(--green-tint);
  border-radius: var(--radius-md);
  padding: 16px;
}

.mini-card.sand {
  background: #faf7f2;
}

.mini-card svg {
  width: 18px;
  height: 18px;
  stroke: var(--green-mid);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-card.sand svg {
  stroke: var(--gold);
}

.mini-card .mini-title {
  font-weight: 600;
  font-size: 14px;
  margin: 10px 0 4px;
}

.mini-card p {
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.55;
}

/* ─── USP BAND ─────────────────────── */
.usp-band {
  padding: 0 0 32px;
}

.usp-grid {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--sand-mid);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.usp-item {
  border-radius: var(--radius-md);
  background: #fbfaf8;
  padding: 22px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.usp-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(30, 63, 53, 0.1);
}

.usp-icon {
  width: 44px;
  height: 44px;
  background: var(--green-pale);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.usp-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--green-mid);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.usp-item h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.usp-item p {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ─── SECTIONS ─────────────────────── */
.section {
  padding: 80px 0;
}
.section-alt {
  background: rgba(255, 255, 255, 0.65);
  border-top: 1px solid var(--sand-mid);
  border-bottom: 1px solid var(--sand-mid);
}
.section-dark {
  background: var(--green-dark);
  color: white;
}

.section-header {
  margin-bottom: 48px;
}
.section-header .label {
  margin-bottom: 18px;
}

.section-header h2 {
  font-size: clamp(28px, 3vw, 44px);
  max-width: 580px;
}

.section-header p {
  margin-top: 14px;
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.75;
  max-width: 560px;
}

.section-header.center {
  text-align: center;
}
.section-header.center h2,
.section-header.center p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── LEISTUNGEN ───────────────────── */
.leistungen-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-card {
  background: white;
  border: 1px solid var(--sand-mid);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-float);
}

.feature-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ─── ABLAUF ───────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step-card {
  background: #fcfbf9;
  border: 1px solid var(--sand-mid);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-float);
}

.step-icon {
  width: 48px;
  height: 48px;
  background: var(--green-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.step-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--green-mid);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-card h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.75;
}

/* ─── KOSTEN ───────────────────────── */
.kosten-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.kosten-highlight {
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: white;
  margin-top: 28px;
  box-shadow: 0 8px 32px rgba(30, 63, 53, 0.18);
}

.kosten-highlight .hl-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b2dcc5;
  margin-bottom: 12px;
}

.kosten-highlight p {
  font-size: 15px;
  line-height: 1.75;
  color: #dde9e3;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pricing-card {
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--sand-mid);
  background: white;
  padding: 26px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s;
}

.pricing-card:hover {
  transform: translateY(-3px);
}
.pricing-card.featured {
  background: #edf6f2;
  border-color: #c8e3d8;
}

.pricing-badge {
  display: inline-block;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pricing-card:not(.featured) .pricing-badge {
  background: #f5f1eb;
  color: var(--text-soft);
}
.pricing-card.featured .pricing-badge {
  background: white;
  color: var(--green-mid);
}

.pricing-card h3 {
  font-family: "Fraunces", serif;
  font-size: 22px;
  margin-bottom: 18px;
}

.pricing-value {
  font-family: "Fraunces", serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.pricing-note {
  font-size: 12.5px;
  color: var(--text-muted);
  margin: 6px 0 22px;
  line-height: 1.55;
}

.pricing-items li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 10px;
}

.pricing-items li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--green-mid);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── VERTRAUEN ────────────────────── */
.vertrauen-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 56px;
  align-items: start;
}

.vertrauen-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.vertrauen-mini {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 20px;
  backdrop-filter: blur(4px);
}

.vertrauen-mini svg {
  width: 18px;
  height: 18px;
  stroke: #b2dcc5;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vertrauen-mini h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin: 10px 0 6px;
}

.vertrauen-mini p {
  font-size: 13px;
  color: #d0e0d8;
  line-height: 1.65;
}

.trust-list-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 26px;
  backdrop-filter: blur(4px);
}

.trust-list-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b2dcc5;
  margin-bottom: 18px;
}

.trust-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
  font-size: 13.5px;
  color: #dde9e3;
  line-height: 1.6;
}

.trust-list-item:last-child {
  margin-bottom: 0;
}

.trust-list-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: #b2dcc5;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Founder quote */
.founder-quote {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 32px;
  padding-top: 28px;
}

.quote-mark {
  font-family: "Fraunces", serif;
  font-size: 60px;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
  margin-bottom: -10px;
}

.founder-quote blockquote {
  font-family: "Fraunces", serif;
  font-size: 17px;
  font-style: italic;
  font-weight: 300;
  color: #cde0d8;
  line-height: 1.65;
  margin-bottom: 14px;
}

.founder-cite {
  font-size: 13px;
  font-weight: 600;
  color: #88b8a2;
}

/* ─── TESTIMONIALS ──────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.testi-card {
  background: white;
  border: 1px solid var(--sand-mid);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-float);
}

.testi-quote-icon {
  width: 28px;
  height: 28px;
  color: #d0e9dd;
}

.stars {
  display: flex;
  gap: 3px;
  margin: 14px 0;
}

.stars svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
  stroke: none;
}

.testi-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 18px;
}

.testi-name {
  font-weight: 600;
  font-size: 13.5px;
  color: var(--text-dark);
}

/* ─── FAQ ───────────────────────────── */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid var(--sand-mid);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(30, 63, 53, 0.1);
}

.faq-item details {
  padding: 22px 26px;
}

details summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  margin: -22px -26px;
  padding: 22px 26px;
}
details summary::-webkit-details-marker {
  display: none;
}

details summary h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s;
}

details[open] .faq-chevron {
  transform: rotate(180deg);
  stroke: var(--green-mid);
}
details[open] summary h3 {
  color: var(--green-dark);
}

.faq-answer {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--sand-mid);
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.8;
}

/* ─── CTA SECTION ───────────────────── */
.cta-section {
  padding: 80px 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--green-mid) 0%, #356b59 100%);
  border-radius: var(--radius-xl);
  padding: 60px;
  color: white;
  box-shadow: 0 16px 60px rgba(47, 107, 88, 0.26);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.cta-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b2dcc5;
  margin-bottom: 14px;
}

.cta-box h2 {
  font-size: clamp(26px, 2.8vw, 38px);
  color: white;
  margin-bottom: 14px;
}

.cta-box p {
  font-size: 16px;
  line-height: 1.75;
  color: #daeee4;
  max-width: 580px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.cta-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 26px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  white-space: nowrap;
}

.cta-actions svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── FOOTER ────────────────────────── */
.site-footer {
  background: var(--green-dark);
  color: white;
  padding: 56px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-mark {
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 14px;
}
.footer-brand .logo-img {
  filter: brightness(0) invert(1);
  max-width: 160px;
  height: auto;
}
.footer-brand .name {
  font-family: "Fraunces", serif;
  font-size: 20px;
  color: white;
}
.footer-brand .sub {
  color: #88a898;
  font-size: 12px;
  margin-top: 2px;
}
.footer-brand p {
  font-size: 13.5px;
  color: #92b0a4;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 260px;
}

.footer-col h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #88a898;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 14px;
  color: #c0d4cc;
  transition: color 0.2s;
}
.footer-col ul a:hover {
  color: white;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: #88b8a2;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact-item span {
  font-size: 13.5px;
  color: #b8cec7;
  line-height: 1.55;
}
.footer-contact-item a {
  color: #b8cec7;
}
.footer-contact-item a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #6a8e82;
}
.footer-bottom a {
  color: #6a8e82;
  transition: color 0.2s;
}
.footer-bottom a:hover {
  color: #b0ccc4;
}
.footer-legal {
  display: flex;
  gap: 24px;
}

/* ─── ANIMATIONS ────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.anim {
  animation: fadeUp 0.65s ease both;
}
.anim-d1 {
  animation-delay: 0.08s;
}
.anim-d2 {
  animation-delay: 0.18s;
}
.anim-d3 {
  animation-delay: 0.28s;
}
.anim-d4 {
  animation-delay: 0.38s;
}

/* ─── RESPONSIVE ────────────────────── */

/* Tablet landscape */
@media (max-width: 1024px) {
  .hero {
    padding: 52px 0 60px;
  }
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-card-wrap {
    max-width: 100%;
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .leistungen-grid,
  .kosten-grid,
  .vertrauen-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .cta-box {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cta-actions {
    flex-direction: row;
    justify-content: flex-start;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-card--ballu {
    grid-column: auto;
    max-width: 100%;
  }
}

/* Tablet portrait / large phone */
@media (max-width: 768px) {
  .container {
    padding: 0 18px;
  }
  .section {
    padding: 56px 0;
  }

  /* Nav – hide desktop nav, show mobile menu button */
  .main-nav {
    display: none;
  }
  .btn-nav-ghost {
    display: none;
  }
  .mobile-menu-btn {
    display: flex !important;
  }

  /* Mobile nav drawer */
  .mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--sand);
    z-index: 200;
    flex-direction: column;
    padding: 24px 24px 40px;
    gap: 0;
  }
  .mobile-nav.open {
    display: flex;
  }
  .mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
  }
  .mobile-nav-close {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 1.5px solid var(--sand-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .mobile-nav-close svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-dark);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
  }
  .mobile-nav a {
    font-family: "Fraunces", serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--text-dark);
    padding: 14px 0;
    border-bottom: 1px solid var(--sand-mid);
    display: block;
  }
  .mobile-nav a:last-of-type {
    border-bottom: none;
  }
  .mobile-nav-cta {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .mobile-nav-cta a {
    font-family: "DM Sans", sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    padding: 14px 20px !important;
    border-radius: 999px !important;
    border-bottom: none !important;
    text-align: center;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  /* Hero */
  .hero {
    padding: 40px 0 48px;
  }
  .hero h1 {
    font-size: 34px;
  }
  .hero-desc {
    font-size: 16px;
  }
  .hero-btns {
    flex-direction: column;
  }
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  /* USP */
  .usp-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px;
  }

  /* Features */
  .feature-cards {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .steps-grid {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testi-grid {
    grid-template-columns: 1fr;
  }

  /* Vertrauen */
  .vertrauen-mini-grid {
    grid-template-columns: 1fr;
  }

  /* Team */
  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .team-card--ballu {
    grid-column: 1 / -1;
  }
  .team-card--ballu .team-photo-wrap {
    aspect-ratio: 16/9;
  }

  /* CTA */
  .cta-box {
    padding: 32px 24px;
  }
  .cta-actions {
    flex-direction: column;
  }
  .cta-actions a {
    width: 100%;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* Popup */
  .popup-box {
    padding: 28px 22px;
    border-radius: var(--radius-lg);
  }
  .popup-row {
    grid-template-columns: 1fr;
  }
  .popup-alt-btns {
    grid-template-columns: 1fr 1fr;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero h1 {
    font-size: 30px;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .hero-card-mini {
    grid-template-columns: 1fr;
  }
  .stat-card {
    padding: 14px 16px;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-card--ballu {
    grid-column: auto;
  }
  .usp-grid {
    grid-template-columns: 1fr;
  }
  .section-header h2 {
    font-size: 26px;
  }
  .cta-box h2 {
    font-size: 24px;
  }
  .popup-alt-btns {
    grid-template-columns: 1fr;
  }
}

/* ─── TEAM ──────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-card--ballu {
  grid-column: 1 / -1;
  max-width: 280px;
}

.team-card {
  background: white;
  border: 1px solid var(--sand-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-float);
}

.team-photo-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--green-pale);
}

.team-card--ballu .team-photo-wrap {
  aspect-ratio: 4/3;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}
.team-card:hover .team-photo {
  transform: scale(1.04);
}

.team-info {
  padding: 20px;
}

.team-info h3 {
  font-family: "Fraunces", serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.team-role {
  font-size: 12px;
  font-weight: 600;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.team-info p {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-card--ballu {
    max-width: 100%;
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-card--ballu {
    grid-column: 1 / -1;
    max-width: 100%;
  }
  .team-card--ballu .team-photo-wrap {
    aspect-ratio: 16/9;
  }
}

/* ─── POPUP ──────────────────────────── */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 40, 34, 0.6);
  backdrop-filter: blur(6px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.popup-overlay.active {
  display: flex;
}

.popup-box {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 80px rgba(20, 40, 34, 0.25);
  animation: popupIn 0.32s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes popupIn {
  from {
    opacity: 0;
    transform: scale(0.88) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sand);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  transition: background 0.2s;
}
.popup-close:hover {
  background: var(--sand-mid);
}
.popup-close svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.popup-icon {
  width: 52px;
  height: 52px;
  background: var(--green-pale);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.popup-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--green-mid);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.popup-box h3 {
  font-family: "Fraunces", serif;
  font-size: 26px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.popup-box .popup-sub {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 28px;
  line-height: 1.65;
}

.popup-field {
  margin-bottom: 16px;
}

.popup-field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.popup-field input,
.popup-field textarea {
  width: 100%;
  border: 1.5px solid var(--sand-mid);
  border-radius: var(--radius-sm);
  padding: 12px 15px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--sand);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
  resize: vertical;
}

.popup-field input:focus,
.popup-field textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(47, 107, 88, 0.1);
  background: white;
}

.popup-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.popup-submit {
  width: 100%;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  background: var(--green-mid);
  color: white;
  padding: 15px 24px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(47, 107, 88, 0.28);
  transition:
    background 0.2s,
    transform 0.15s;
}
.popup-submit:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}
.popup-submit svg {
  width: 16px;
  height: 16px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.popup-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 16px;
}
.popup-divider::before,
.popup-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--sand-mid);
}
.popup-divider span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.popup-alt-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.popup-alt-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  border: 1.5px solid var(--sand-mid);
  background: white;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.popup-alt-btn:hover {
  border-color: var(--green-mid);
  color: var(--green-mid);
}
.popup-alt-btn svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.popup-success {
  display: none;
  text-align: center;
  padding: 20px 0 10px;
}
.popup-success.active {
  display: block;
}
.popup-success-icon {
  width: 64px;
  height: 64px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.popup-success-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--green-mid);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.popup-success h3 {
  font-family: "Fraunces", serif;
  font-size: 24px;
  margin-bottom: 10px;
}
.popup-success p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
}
