/* =========================================
   DESIGN TOKENS
   ========================================= */
:root {
  --green:       #556b2f;
  --green-light: #6b8a3a;
  --green-pale:  #f0f4e8;
  --off-white:   #fafaf8;
  --warm-gray:   #f5f3ef;
  --text-dark:   #1a1a18;
  --text-mid:    #4a4a45;
  --text-light:  #8a8a82;
  --border:      #e4e2dc;
  --white:       #ffffff;

  --font-serif:  'Lora', Georgia, serif;
  --font-sans:   'Poppins', system-ui, sans-serif;

  --max-w:       1140px;
  --section-pad: 96px 24px;
  --radius:      4px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--font-sans); }
p  { font-size: 1rem; color: var(--text-mid); line-height: 1.75; }

.label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}

/* =========================================
   LAYOUT HELPERS
   ========================================= */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: var(--section-pad); }
.section--gray  { background: var(--warm-gray); }
.section--green { background: var(--green); }
.section--pale  { background: var(--green-pale); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 1px 24px rgba(0,0,0,0.06);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__logo img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}
.nav__logo-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s;
}
.nav__cta:hover { background: var(--green-light); }

/* =========================================
   HERO
   ========================================= */
.hero {
  padding: 160px 24px 96px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
}
.hero__kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.hero__kicker-line {
  width: 32px;
  height: 2px;
  background: var(--green);
}
.hero__title { margin-bottom: 24px; }
.hero__title em {
  font-style: normal;
  color: var(--green);
  position: relative;
  display: inline-block;
}
.hero__title em::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s 0.5s var(--ease-out);
}
.hero__title em.animated::after { transform: scaleX(1); }
.hero__desc {
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 520px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-1px);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 14px 4px;
  border-bottom: 2px solid var(--border);
  transition: border-color 0.2s;
}
.btn-secondary:hover { border-color: var(--green); }

.hero__visual {
  position: relative;
}
.hero__img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--warm-gray);
}
.hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 22px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  min-width: 190px;
}
.hero__badge-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.hero__badge-text {
  font-size: 0.78rem;
  color: var(--text-mid);
  margin-top: 4px;
}
.hero__badge2 {
  position: absolute;
  top: 24px;
  right: -24px;
  background: var(--green);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  text-align: center;
  min-width: 130px;
}
.hero__badge2 strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  line-height: 1;
  margin-bottom: 4px;
}

/* =========================================
   TRUST BAR
   ========================================= */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 24px;
  background: var(--white);
}
.trust-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-item__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--green);
}
.trust-item__text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* =========================================
   PROBLEM SECTION
   ========================================= */
.problem {
  padding: var(--section-pad);
  background: var(--warm-gray);
}
.problem__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-header { margin-bottom: 56px; }
.section-header .label { margin-bottom: 16px; }
.section-header h2 { margin-bottom: 20px; }
.section-header p { max-width: 600px; font-size: 1.05rem; }

.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.problem-card {
  background: var(--white);
  padding: 40px 32px;
  transition: background 0.2s;
}
.problem-card:hover { background: var(--green-pale); }
.problem-card__num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
}
.problem-card h4 { margin-bottom: 10px; font-size: 1rem; }
.problem-card p { font-size: 0.9rem; }

/* =========================================
   METHOD SECTION
   ========================================= */
.method {
  padding: var(--section-pad);
  background: var(--off-white);
}
.method__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.method__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.method__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.step {
  padding: 0 16px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step__dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.step.active .step__dot, .step:hover .step__dot {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.step h4 { font-size: 0.95rem; margin-bottom: 8px; }
.step p  { font-size: 0.85rem; }

.method__feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid var(--border);
}
.method__feature-img {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--warm-gray);
}
.method__feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.method__feature-content .label { margin-bottom: 16px; }
.method__feature-content h2 { margin-bottom: 20px; }
.method__feature-content p { margin-bottom: 16px; }
.check-list { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.check-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--green-pale);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23556b2f' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}

/* =========================================
   METRICS / RESULTS
   ========================================= */
.metrics {
  padding: var(--section-pad);
  background: var(--green);
}
.metrics__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.metrics__header { margin-bottom: 64px; }
.metrics__header .label { color: rgba(255,255,255,0.6); }
.metrics__header h2 { color: var(--white); }
.metrics__header p  { color: rgba(255,255,255,0.75); max-width: 520px; }
.metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
}
.metric-item {
  background: rgba(255,255,255,0.05);
  padding: 40px 32px;
  text-align: center;
  transition: background 0.2s;
}
.metric-item:hover { background: rgba(255,255,255,0.12); }
.metric-item__num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}
.metric-item__label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 10px;
  line-height: 1.4;
}
.metrics__note {
  margin-top: 32px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}
.metrics__note svg {
  width: 14px; height: 14px;
  stroke: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

/* =========================================
   PRICING
   ========================================= */
.pricing {
  padding: var(--section-pad);
  background: var(--off-white);
}
.pricing__inner { max-width: var(--max-w); margin: 0 auto; }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
}
.price-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.price-card--featured {
  border-color: var(--green);
  position: relative;
  overflow: hidden;
}
.price-card--featured::before {
  content: 'Empfohlen';
  position: absolute;
  top: 16px; right: -28px;
  background: var(--green);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 36px;
  transform: rotate(45deg);
  transform-origin: center;
}
.price-card__type { margin-bottom: 8px; }
.price-card__name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
.price-card__price {
  margin-bottom: 8px;
}
.price-card__amount {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
}
.price-card__rate {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 6px;
}
.price-card__duration {
  font-size: 0.8rem;
  color: var(--text-light);
  padding: 6px 12px;
  background: var(--warm-gray);
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 24px;
}
.price-card__desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 28px;
  line-height: 1.6;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.price-card__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.price-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-mid);
}
.feature-check {
  width: 18px; height: 18px;
  min-width: 18px;
  stroke: var(--green);
}
.price-card__cta {
  display: block;
  text-align: center;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s;
}
.price-card__cta--outline {
  border: 1.5px solid var(--green);
  color: var(--green);
}
.price-card__cta--outline:hover {
  background: var(--green);
  color: var(--white);
}
.price-card__cta--solid {
  background: var(--green);
  color: var(--white);
}
.price-card__cta--solid:hover { background: var(--green-light); }

.guarantee {
  margin-top: 48px;
  background: var(--green-pale);
  border: 1px solid rgba(85,107,47,0.2);
  border-radius: 8px;
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.guarantee__icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guarantee__icon svg {
  width: 22px; height: 22px;
  stroke: white;
}
.guarantee h4 { font-size: 1rem; margin-bottom: 6px; color: var(--text-dark); }
.guarantee p  { font-size: 0.875rem; color: var(--text-mid); }

/* =========================================
   CONTACT
   ========================================= */
.contact {
  padding: var(--section-pad);
  background: var(--warm-gray);
}
.contact__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact__info .label { margin-bottom: 16px; }
.contact__info h2 { margin-bottom: 20px; }
.contact__info p  { font-size: 1.05rem; margin-bottom: 40px; }
.contact__channels { display: flex; flex-direction: column; gap: 16px; }
.contact__channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact__channel:hover {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(85,107,47,0.1);
}
.contact__channel-icon {
  width: 40px; height: 40px;
  min-width: 40px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__channel-icon svg {
  width: 18px; height: 18px;
  stroke: var(--green);
}
.contact__channel-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}
.contact__channel-text span {
  font-size: 0.8rem;
  color: var(--text-light);
}
.contact__form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
}
.contact__form h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.contact__form > p {
  font-size: 0.875rem;
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(85,107,47,0.1);
}
.form-group textarea { min-height: 120px; }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--green-light); }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.5);
  padding: 40px 24px;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__logo img {
  width: 32px; height: 32px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.7;
}
.footer__logo-text {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}
.footer__links {
  display: flex;
  gap: 28px;
}
.footer__links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer__links a:hover { color: rgba(255,255,255,0.8); }
.footer__copy { font-size: 0.8rem; }

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

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  :root { --section-pad: 72px 24px; }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 120px;
  }
  .hero__visual {
    display: none;
  }
  .grid-2, .method__feature { grid-template-columns: 1fr; gap: 40px; }
  .problem__grid, .pricing__grid { grid-template-columns: 1fr; }
  .method__steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .method__steps::before { display: none; }
  .metrics__grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .trust-bar__inner { gap: 24px; }
}
@media (max-width: 600px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .method__steps { grid-template-columns: 1fr; }
  .metrics__grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }
  .contact__form { padding: 28px 20px; }
  .price-card { padding: 28px 24px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
}

/* =========================================
   MODALS (Impressum, Datenschutz, AGB)
   ========================================= */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: 8px;
  max-width: 700px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 48px;
  position: relative;
}
.modal__close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  font-size: 1.5rem;
  line-height: 1;
  padding: 4px;
}
.modal__close:hover { color: var(--text-dark); }
.modal h2 { font-size: 1.8rem; margin-bottom: 24px; }
.modal h3 { font-size: 1.1rem; margin: 24px 0 10px; font-family: var(--font-sans); }
.modal p, .modal li { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 12px; }
.modal a { color: var(--green); text-decoration: underline; }

/* ── CONTACT (no-form version) ── */
.contact { padding: var(--section-pad); background: var(--warm-gray); }
.contact__inner-simple {
  max-width: var(--max-w);
  margin: 0 auto;
}
.contact__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.contact__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  cursor: pointer;
}
.contact__card:hover {
  border-color: var(--green);
  box-shadow: 0 12px 40px rgba(85,107,47,0.1);
  transform: translateY(-3px);
}
.contact__card-icon {
  width: 52px; height: 52px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.contact__card-icon svg {
  width: 22px; height: 22px;
  stroke: var(--green);
}
.contact__card h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin: 0;
}
.contact__card span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green);
}
.contact__card p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}
.contact__note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.82rem;
  color: var(--text-light);
}
@media (max-width: 700px) {
  .contact__cards { grid-template-columns: 1fr; }
}

/* ── Trust bar: 6 items, even spacing ── */
.trust-bar__inner {
  justify-content: center;
  gap: 32px;
}
.trust-item {
  flex: 0 0 auto;
  min-width: 160px;
}

/* ── hide old contact styles if any remain ── */
.contact__inner, .contact__info, .contact__form,
.form-group, .form-submit { display: none; }
/* =========================================
   LANGUAGE SWITCHER
   ========================================= */
.nav__lang {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.nav__lang a {
  padding: 6px 11px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-light);
  transition: background 0.2s, color 0.2s;
}
.nav__lang a:hover { background: var(--warm-gray); color: var(--text-dark); }
.nav__lang a.active { background: var(--green); color: var(--white); }
.nav__lang span {
  width: 1px;
  height: 16px;
  background: var(--border);
}
