/* ==========================================================================
   E&P Dienstleistungen — Premium Website Stylesheet
   ========================================================================== */

:root {
  --dark-green: #0d521c;
  --darker-green: #083614;
  --deep-green: #021f12;
  --light-green: #8bc627;
  --light-green-2: #a3d94f;
  --anthracite: #23262b;
  --anthracite-2: #34383f;
  --white: #ffffff;
  --off-white: #f6faf4;
  --grey: #6b7280;
  --grey-light: #e7ede4;

  --font-head: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;

  --shadow-soft: 0 10px 40px rgba(2, 31, 18, 0.08);
  --shadow-strong: 0 20px 60px rgba(2, 31, 18, 0.16);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--anthracite);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--darker-green);
  margin: 0 0 0.5em;
  line-height: 1.15;
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
}

p {
  margin: 0 0 1em;
  color: var(--grey);
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dark-green);
  background: rgba(139, 198, 39, 0.14);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--light-green);
}

.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
}

.section-head p {
  font-size: 1.08rem;
}

section {
  padding: 108px 0;
  position: relative;
}

@media (max-width: 768px) {
  section {
    padding: 72px 0;
  }
  .section-head {
    margin-bottom: 40px;
  }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--dark-green);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(13, 82, 28, 0.35);
}

.btn-primary:hover {
  background: var(--light-green);
  color: var(--darker-green);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(139, 198, 39, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-3px);
}

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

.btn-outline:hover {
  background: var(--dark-green);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-light {
  background: var(--white);
  color: var(--dark-green);
}

.btn-light:hover {
  background: var(--light-green);
  color: var(--darker-green);
  transform: translateY(-3px);
}

.btn-sm {
  padding: 11px 22px;
  font-size: 0.88rem;
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.site-header.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px rgba(2, 31, 18, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
}

.brand-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 42px;
  transition: height 0.4s var(--ease);
}

.brand-logo img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 42px;
  width: auto;
  transition: opacity 0.4s var(--ease), height 0.4s var(--ease);
}

.brand-logo .logo-dark {
  opacity: 0;
}

.site-header.scrolled .brand-logo,
.site-header.scrolled .brand-logo img {
  height: 36px;
}

.site-header.scrolled .brand-logo .logo-light {
  opacity: 0;
}

.site-header.scrolled .brand-logo .logo-dark {
  opacity: 1;
}

.brand-text {
  color: var(--white);
  transition: color 0.4s var(--ease);
}

.site-header.scrolled .brand-text {
  color: var(--darker-green);
}

.brand-text span {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light-green-2);
}

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

.main-nav a {
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--white);
  position: relative;
  white-space: nowrap;
  transition: color 0.4s var(--ease);
}

.site-header.scrolled .main-nav a {
  color: var(--anthracite);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--light-green);
  transition: width 0.3s var(--ease);
}

.main-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-call {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  transition: color 0.4s var(--ease);
}

.site-header.scrolled .header-call {
  color: var(--darker-green);
}

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

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.35s var(--ease);
}

.site-header.scrolled .nav-toggle span,
.nav-open .nav-toggle span {
  background: var(--darker-green);
}

@media (max-width: 960px) {
  .main-nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    background: var(--darker-green);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    gap: 30px;
  }

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

  .main-nav a {
    color: var(--white);
    font-size: 1.3rem;
  }

  .header-call span.call-label {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 640px) {
  .header-call {
    display: none;
  }

  .header-actions {
    gap: 10px;
  }

  .header-actions .btn-sm {
    padding: 10px 16px;
    font-size: 0.82rem;
  }
}

@media (max-width: 380px) {
  .header-actions .btn-primary.btn-sm {
    display: none;
  }
}

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

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: 140% auto;
  background-position: 0% 20%;
  background-repeat: no-repeat;
  transform: scale(1.08);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@media (max-aspect-ratio: 4/5) {
  .hero-bg {
    background-size: cover;
    background-position: 42% center;
  }
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 31, 18, 0.78) 0%, rgba(2, 31, 18, 0.62) 45%, rgba(2, 31, 18, 0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: 90px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5.4vw, 4.1rem);
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: normal;
  color: var(--light-green-2);
}

.hero p.lead {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.hero-badge svg {
  width: 18px;
  height: 18px;
  color: var(--light-green-2);
  flex-shrink: 0;
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-cue .line {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.8), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.in-view > * {
  transition-delay: calc(var(--i, 0) * 0.09s);
}

/* ---------- Trust bar ---------- */

.trust-bar {
  background: var(--off-white);
  padding: 30px 0;
  border-bottom: 1px solid var(--grey-light);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--darker-green);
  font-size: 0.95rem;
  justify-content: center;
}

.trust-item svg {
  width: 26px;
  height: 26px;
  color: var(--light-green);
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-item {
    justify-content: flex-start;
  }
}

/* ---------- Services ---------- */

.services {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--grey-light);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.service-media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.service-card:hover .service-media img {
  transform: scale(1.08);
}

.service-icon {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--dark-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--light-green-2);
}

.service-body {
  padding: 26px 26px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-body h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.service-body p {
  flex: 1;
  font-size: 0.96rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--dark-green);
  font-size: 0.92rem;
  margin-top: 12px;
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}

.service-card:hover .service-link {
  gap: 12px;
  color: var(--light-green);
}

.extra-services {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--off-white);
  border: 1px solid var(--grey-light);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--anthracite);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.chip:hover {
  background: var(--dark-green);
  color: var(--white);
  border-color: var(--dark-green);
  transform: translateY(-3px);
}

.chip svg {
  width: 18px;
  height: 18px;
  color: var(--light-green);
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- About / Why us ---------- */

.about {
  background: var(--off-white);
  overflow: hidden;
}

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

.about-media {
  position: relative;
}

.about-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.about-stat {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: var(--dark-green);
  color: var(--white);
  padding: 26px 30px;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(13, 82, 28, 0.4);
  text-align: center;
}

.about-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.1rem;
  color: var(--light-green-2);
}

.about-stat span {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}

.about-list {
  margin-top: 26px;
  display: grid;
  gap: 16px;
}

.about-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-weight: 600;
  color: var(--darker-green);
}

.about-list svg {
  width: 22px;
  height: 22px;
  color: var(--light-green);
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-media img {
    height: 340px;
  }
}

/* ---------- Before / After ---------- */

.before-after {
  background: var(--darker-green);
  color: var(--white);
}

.before-after .section-head h2 {
  color: var(--white);
}

.before-after .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

.before-after .eyebrow {
  color: var(--light-green-2);
  background: rgba(255, 255, 255, 0.1);
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.ba-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.ba-slider {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
}

.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-slider .ba-after {
  clip-path: inset(0 0 0 50%);
}

.ba-slider .ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--white);
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-strong);
  color: var(--dark-green);
}

.ba-handle svg {
  width: 22px;
  height: 22px;
}

.ba-tag {
  position: absolute;
  top: 18px;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(2, 31, 18, 0.55);
  backdrop-filter: blur(4px);
}

.ba-tag.before-tag { left: 18px; }
.ba-tag.after-tag { right: 18px; background: var(--light-green); color: var(--darker-green); }

.ba-caption {
  padding: 22px 8px 4px;
  text-align: center;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
}

/* ---------- Map / Reviews ---------- */

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

.map-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.map-frame {
  min-height: 480px;
  position: relative;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}

.map-consent-gate {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding: 40px;
  background: linear-gradient(160deg, var(--darker-green), var(--deep-green));
  color: var(--white);
}

.map-consent-gate.hidden {
  display: none;
}

.map-consent-gate svg {
  width: 40px;
  height: 40px;
  color: var(--light-green-2);
}

.map-consent-gate p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 340px;
  font-size: 0.92rem;
}

/* ---------- Cookie consent banner ---------- */

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2000;
  background: var(--darker-green);
  color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-strong);
  padding: 22px 26px;
  transform: translateY(140%);
  transition: transform 0.5s var(--ease);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.cookie-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
  max-width: 640px;
}

.cookie-banner a {
  color: var(--light-green-2);
  font-weight: 600;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.cookie-banner .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

@media (max-width: 640px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 20px;
  }
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner-actions {
    justify-content: stretch;
  }
  .cookie-banner-actions .btn {
    flex: 1;
  }
}

.map-info {
  background: var(--white);
  padding: 48px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.rating-stars {
  display: flex;
  gap: 3px;
  color: var(--light-green);
}

.rating-stars svg {
  width: 20px;
  height: 20px;
}

.rating-score {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--darker-green);
}

.map-info h3 {
  font-size: 1.5rem;
}

.map-info-list {
  display: grid;
  gap: 16px;
  margin: 22px 0 28px;
}

.map-info-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.map-info-list svg {
  width: 20px;
  height: 20px;
  color: var(--light-green);
  flex-shrink: 0;
  margin-top: 3px;
}

.map-info-list strong {
  display: block;
  color: var(--darker-green);
  font-size: 0.92rem;
}

.map-info-list span {
  color: var(--grey);
  font-size: 0.92rem;
}

.map-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .map-grid {
    grid-template-columns: 1fr;
  }
  .map-frame {
    min-height: 340px;
  }
  .map-frame iframe {
    min-height: 340px;
  }
}

/* ---------- Contact ---------- */

.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
}

.contact-card {
  background: var(--darker-green);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(139, 198, 39, 0.35), transparent 70%);
  top: -80px;
  right: -80px;
}

.contact-card h3 {
  color: var(--white);
  font-size: 1.5rem;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 26px;
}

.contact-detail svg {
  width: 22px;
  height: 22px;
  color: var(--light-green-2);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail strong {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 4px;
}

.contact-detail a, .contact-detail span.value {
  font-weight: 700;
  font-size: 1.02rem;
}

.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  border: 1px solid var(--grey-light);
}

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

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--darker-green);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--grey-light);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--anthracite);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--light-green);
  box-shadow: 0 0 0 4px rgba(139, 198, 39, 0.18);
}

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

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 24px;
}

.consent input {
  margin-top: 4px;
}

.form-note {
  margin-top: 14px;
  font-size: 0.84rem;
  color: var(--grey);
}

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(139, 198, 39, 0.16);
  border: 1px solid var(--light-green);
  color: var(--dark-green);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-top: 18px;
}

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

.form-success svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ---------- FAQ ---------- */

.faq {
  background: var(--off-white);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.faq-item.open {
  box-shadow: var(--shadow-soft);
  border-color: var(--light-green);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--darker-green);
  cursor: pointer;
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s var(--ease), transform 0.4s var(--ease);
  position: relative;
}

.faq-item.open .faq-icon {
  background: var(--light-green);
  transform: rotate(135deg);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  color: var(--dark-green);
}

.faq-item.open .faq-icon svg {
  color: var(--darker-green);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}

.faq-answer-inner {
  padding: 0 26px 24px;
  color: var(--grey);
}

/* ---------- CTA banner ---------- */

.cta-banner {
  background: linear-gradient(120deg, var(--dark-green), var(--deep-green));
  color: var(--white);
  text-align: center;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(139, 198, 39, 0.25), transparent 45%),
              radial-gradient(circle at 80% 80%, rgba(139, 198, 39, 0.18), transparent 45%);
}

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

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  max-width: 640px;
  margin: 0 auto 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  margin: 0 auto 34px;
}

.cta-banner .btn-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--deep-green);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .brand {
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.footer-social a:hover {
  background: var(--light-green);
  color: var(--darker-green);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  display: grid;
  gap: 12px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.94rem;
  transition: color 0.3s var(--ease);
}

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

.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Legal pages ---------- */

.legal-page {
  padding: 160px 0 100px;
  max-width: 820px;
  margin: 0 auto;
}

.legal-page h1 {
  margin-bottom: 30px;
}

.legal-page h2 {
  font-size: 1.3rem;
  margin-top: 36px;
}

.legal-page p, .legal-page li {
  color: var(--grey);
}

.legal-page a {
  color: var(--dark-green);
  font-weight: 600;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 30px;
}

/* ---------- Utilities ---------- */

.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

::selection {
  background: var(--light-green);
  color: var(--darker-green);
}
