/* ==========================================================================
   ENELAN HOMEPAGE — Clean HTML/CSS rebuild
   Prefix: en- (avoids collision with existing block styles)
   Added: 2026-04-16
   ========================================================================== */

/* ── Google Fonts (loaded in functions.php) ── */
/* Bricolage Grotesque (display) + Instrument Sans (body) */

:root {
  --en-green: #54B435;
  --en-green-light: #6FCF4A;
  --en-green-dark: #3D8028;
  --en-green-glow: rgba(84,180,53,0.4);
  --en-green-subtle: rgba(84,180,53,0.08);
  --en-navy: #0F172A;
  --en-navy-deep: #060B16;
  --en-surface: #F8FAFC;
  --en-white: #FFFFFF;
  --en-text-white: #F1F5F9;
  --en-text-gray: #94A3B8;
  --en-text-muted: #64748B;
  --en-text-dark: #0F172A;
  --en-text-body: #334155;
  --en-card-dark: rgba(255,255,255,0.04);
  --en-card-dark-h: rgba(255,255,255,0.09);
  --en-border-dark: rgba(255,255,255,0.06);
  --en-border-dark-h: rgba(84,180,53,0.3);
  --en-border-light: rgba(15,23,42,0.08);
  --en-font-d: 'Bricolage Grotesque', Georgia, serif;
  --en-font-b: 'Instrument Sans', -apple-system, sans-serif;
  --en-container: 1100px;
  --en-radius: 16px;
  --en-radius-sm: 12px;
}

/* Override body font on homepage */
body.home { font-family: var(--en-font-b); }
body.home #content { padding-top: 0 !important; }

/* ── Shared ── */
.en-section-title {
  font-family: var(--en-font-d);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.en-section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--en-green), var(--en-green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.en-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 10px;
  background: var(--en-green-subtle);
  border: 1px solid rgba(84,180,53,0.18);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--en-green);
  margin-bottom: 20px;
}
.en-tag--dark { background: rgba(84,180,53,0.1); border-color: rgba(84,180,53,0.2); }
.en-tag__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--en-green);
  box-shadow: 0 0 8px var(--en-green-glow);
}

/* Buttons */
.en-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
  white-space: nowrap;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.en-btn--green {
  background: var(--en-green); color: var(--en-white);
  box-shadow: 0 4px 20px rgba(84,180,53,0.3);
}
.en-btn--green:hover {
  background: var(--en-green-dark); color: var(--en-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(84,180,53,0.4);
}
.en-btn--outline {
  background: transparent; color: var(--en-green);
  border: 1.5px solid rgba(84,180,53,0.4);
}
.en-btn--outline:hover { background: var(--en-green-subtle); border-color: var(--en-green); color: var(--en-green); }
.en-btn--ghost {
  background: transparent; color: var(--en-white);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.en-btn--ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.35); color: var(--en-white); }
.en-btn--white {
  background: var(--en-white); color: var(--en-navy);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.en-btn--white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); color: var(--en-navy); }
.en-btn__arrow { transition: transform 0.3s ease; }
.en-btn:hover .en-btn__arrow { transform: translateX(3px); }

/* Dot grid */
.en-has-dots { position: relative; }
.en-has-dots::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 60% 55% at 50% 45%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 60% 55% at 50% 45%, black, transparent 75%);
  pointer-events: none; z-index: 0;
}

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }

@keyframes en-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes en-orb-drift {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(30px,-40px) scale(1.1); }
}
@keyframes en-beacon {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ==========================================================================
   01. HERO
   ========================================================================== */
.en-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 132px 32px 80px;
  background: var(--en-navy-deep); overflow: hidden;
}
.en-hero__bg { position: absolute; inset: 0; z-index: 0; }
.en-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.25; filter: saturate(0.6); }
.en-hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,11,22,0.6) 0%, rgba(6,11,22,0.3) 40%, rgba(6,11,22,0.85) 100%),
              linear-gradient(90deg, rgba(6,11,22,0.8) 0%, transparent 60%);
}
.en-hero__orb {
  position: absolute; top: 20%; right: 10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(84,180,53,0.08) 0%, transparent 65%);
  filter: blur(60px); z-index: 0; animation: en-orb-drift 20s ease-in-out infinite alternate;
}
.en-hero__inner { position: relative; z-index: 1; max-width: var(--en-container); margin: 0 auto; width: 100%; }
.en-hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px 6px 10px;
  background: rgba(84,180,53,0.1); border: 1px solid rgba(84,180,53,0.2); border-radius: 100px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--en-green-light); margin-bottom: 28px;
  opacity: 0; animation: en-fade-up 0.8s 0.2s cubic-bezier(0.22,1,0.36,1) forwards;
}
.en-hero__tag-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--en-green);
  box-shadow: 0 0 10px var(--en-green-glow); animation: en-beacon 3s ease-in-out infinite;
}
.en-hero__title {
  font-family: var(--en-font-d);
  font-size: clamp(36px,5.5vw,64px); font-weight: 800; line-height: 1.06;
  letter-spacing: -0.03em; color: var(--en-white); max-width: 720px; margin-bottom: 24px;
  opacity: 0; animation: en-fade-up 0.8s 0.35s cubic-bezier(0.22,1,0.36,1) forwards;
}
.en-hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--en-green), var(--en-green-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.en-hero__desc {
  font-size: 17px; font-weight: 400; line-height: 1.7; color: var(--en-text-gray);
  max-width: 560px; margin-bottom: 40px;
  opacity: 0; animation: en-fade-up 0.8s 0.5s cubic-bezier(0.22,1,0.36,1) forwards;
}
.en-hero__actions {
  display: flex; flex-wrap: wrap; gap: 16px;
  opacity: 0; animation: en-fade-up 0.8s 0.65s cubic-bezier(0.22,1,0.36,1) forwards;
}
.en-hero__creds {
  list-style: none; padding: 0; margin: 56px 0 0;
  display: flex; flex-wrap: wrap; gap: 10px 32px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.01em;
  color: rgba(255,255,255,0.62);
  opacity: 0; animation: en-fade-up 0.8s 0.8s cubic-bezier(0.22,1,0.36,1) forwards;
}
.en-hero__creds li { position: relative; padding-left: 16px; }
.en-hero__creds li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--en-green); opacity: 0.75;
}

@media(max-width:600px){
  .en-hero { padding: 120px 20px 80px; min-height: 100svh; }
  .en-hero__creds { margin-top: 40px; gap: 8px 22px; font-size: 12px; }
}

/* ==========================================================================
   01b. SCHNELLE ANFRAGE — quick lead form below hero
   ========================================================================== */
.en-quick {
  padding: 80px 24px;
  background: linear-gradient(180deg, var(--en-navy-deep) 0%, var(--en-surface) 55%);
  position: relative;
  overflow: hidden;
}
.en-quick__inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}
.en-quick__box {
  background: #fff;
  border: 1px solid var(--en-border-light);
  border-radius: 20px;
  padding: 48px clamp(24px, 4vw, 56px);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12), 0 2px 8px rgba(15, 23, 42, 0.04);
}
.en-quick__header { text-align: center; margin-bottom: 32px; }
.en-quick__header .en-tag { margin: 0 auto 16px; }
.en-quick__title {
  font-size: clamp(24px, 3.4vw, 34px);
  color: var(--en-text-dark);
  margin: 0 0 12px;
}
.en-quick__sub {
  font-size: 15px;
  line-height: 1.65;
  color: var(--en-text-body);
  max-width: 560px;
  margin: 0 auto;
}
.en-quick__form textarea { min-height: 96px; }
@media (max-width: 600px) {
  .en-quick { padding: 56px 16px; }
  .en-quick__box { padding: 32px 20px; border-radius: 16px; }
}

/* ==========================================================================
   03b. BEFORE / AFTER — wir verputzen & streichen selbst
   (CSS-only slider driven by hidden range input + JS clip-path update)
   ========================================================================== */
.en-ba {
  padding: 100px 24px;
  background: var(--en-surface);
  position: relative;
  overflow: hidden;
}
.en-ba__inner { max-width: 1100px; margin: 0 auto; position: relative; }
.en-ba__header { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.en-ba__header .en-tag { margin: 0 auto 16px; }
.en-ba__header .en-section-title { color: var(--en-text-dark); }
.en-ba__sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--en-text-body);
  margin: 16px 0 0;
}
.en-ba__sub strong { color: var(--en-text-dark); font-weight: 600; }

.en-ba__slider { max-width: 900px; margin: 0 auto; }
.en-ba__frame {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2), 0 4px 12px rgba(15, 23, 42, 0.06);
  background: linear-gradient(135deg, #d4d4d4 0%, #e8e8e8 100%);
  user-select: none;
  touch-action: none;
}
.en-ba__after,
.en-ba__before {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #cfcfcf;
}
.en-ba__before {
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
  will-change: clip-path;
}
.en-ba__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 3;
  margin: 0;
}
.en-ba__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #fff;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.35);
  z-index: 2;
}
.en-ba__handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--en-green, #54B435);
  transform: translate(-50%, -50%);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3), 0 0 0 3px rgba(255, 255, 255, 0.9);
}
.en-ba__handle span::before,
.en-ba__handle span::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  transform: translateY(-50%);
}
.en-ba__handle span::before {
  border-right-color: #fff;
  left: 10px;
}
.en-ba__handle span::after {
  border-left-color: #fff;
  right: 10px;
}
.en-ba__label {
  position: absolute;
  top: 16px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(15, 23, 42, 0.78);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 2;
  backdrop-filter: blur(6px);
}
.en-ba__label--before { left: 16px; }
.en-ba__label--after { right: 16px; }

.en-ba__benefits {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.en-ba__b {
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border: 1px solid var(--en-border-light);
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.en-ba__b:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}
.en-ba__b-num {
  display: block;
  font-family: var(--en-font-h, 'Bricolage Grotesque', serif);
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 800;
  color: var(--en-green, #54B435);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.en-ba__b-lbl {
  font-size: 14px;
  line-height: 1.6;
  color: var(--en-text-body);
  display: block;
}

@media (max-width: 800px) {
  .en-ba { padding: 64px 16px; }
  .en-ba__benefits { grid-template-columns: 1fr; gap: 14px; }
  .en-ba__frame { aspect-ratio: 4 / 5; }
  .en-ba__handle span { width: 40px; height: 40px; }
}

/* ==========================================================================
   02. WARUM ENELAN
   ========================================================================== */
.en-why {
  padding: 100px 24px; background: var(--en-surface); position: relative; overflow: hidden;
}
.en-why::before {
  content: ''; position: absolute; top: -200px; right: -200px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(84,180,53,0.06) 0%, transparent 70%); filter: blur(40px); pointer-events: none;
}
.en-why__inner {
  position: relative; max-width: 760px; margin: 0 auto;
}
.en-why__content { max-width: 100%; }
.en-why__title { font-size: clamp(28px,4vw,40px); color: var(--en-text-dark); margin-bottom: 20px; }
.en-why__text { font-size: 16px; line-height: 1.8; color: var(--en-text-body); margin-bottom: 36px; }
.en-why__features { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 14px; margin: 0 0 40px; border-top: 1px solid var(--en-border-light); padding-top: 28px; }
.en-why__feat { position: relative; padding-left: 28px; font-size: 15px; font-weight: 400; color: var(--en-text-dark); line-height: 1.6; }
.en-why__feat::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 12px; height: 2px; background: var(--en-green);
}

/* ==========================================================================
   03. ABOUT
   ========================================================================== */
.en-about { padding: 110px 24px; background: var(--en-navy-deep); position: relative; overflow: hidden; }
.en-about__inner {
  position: relative; z-index: 1; max-width: var(--en-container); margin: 0 auto;
  display: grid; grid-template-columns: 380px 1fr; gap: 64px; align-items: center;
}
.en-about__portrait { position: relative; }
.en-about__portrait img { width: 100%; border-radius: var(--en-radius); position: relative; z-index: 1; }
.en-about__portrait::before {
  content: ''; position: absolute; top: -12px; left: -12px; right: 12px; bottom: 12px;
  border: 2px solid rgba(84,180,53,0.2); border-radius: var(--en-radius); z-index: 0;
}
.en-about__content { color: var(--en-text-white); }
.en-about__title { font-size: clamp(28px,3.5vw,38px); color: var(--en-white); margin-bottom: 20px; }
.en-about__text { font-size: 15px; line-height: 1.8; color: var(--en-text-gray); margin-bottom: 28px; }
.en-about__list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.en-about__li { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 500; color: var(--en-text-white); }
.en-about__li-icon { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--en-green); display: flex; align-items: center; justify-content: center; color: var(--en-white); font-size: 11px; }
.en-about__contact { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 36px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.06); }
.en-about__contact-item { display: flex; flex-direction: column; gap: 4px; }
.en-about__contact-lbl { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--en-text-muted); }
.en-about__contact-val { font-size: 13px; font-weight: 500; color: var(--en-text-white); }
.en-about__contact-val a { color: var(--en-green-light); transition: color 0.2s; }
.en-about__contact-val a:hover { color: var(--en-green); }

@media(max-width:860px){ .en-about__inner { grid-template-columns: 1fr; gap: 40px; } .en-about__portrait { max-width: 320px; } .en-about__contact { grid-template-columns: 1fr; gap: 12px; } }

/* ==========================================================================
   04. SEGMENTS
   ========================================================================== */
.en-segments { padding: 100px 24px; background: var(--en-surface); }
.en-segments__header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.en-segments__title { font-size: clamp(28px,4vw,40px); color: var(--en-text-dark); margin-bottom: 12px; }
.en-segments__sub { font-size: 15px; color: var(--en-text-body); line-height: 1.7; }
.en-segments__grid { max-width: var(--en-container); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.en-seg-card {
  padding: 44px 36px; background: var(--en-white); border: 1px solid var(--en-border-light);
  border-radius: var(--en-radius); transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
  position: relative; overflow: hidden;
}
.en-seg-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--en-green), var(--en-green-light));
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.en-seg-card:hover::before { transform: scaleX(1); }
.en-seg-card:hover { border-color: rgba(84,180,53,0.15); box-shadow: 0 12px 48px rgba(15,23,42,0.06); transform: translateY(-4px); }
.en-seg-card__icon { width: 48px; height: 48px; border-radius: var(--en-radius-sm); background: var(--en-green-subtle); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; }
.en-seg-card__title { font-family: var(--en-font-d); font-size: 22px; font-weight: 700; color: var(--en-text-dark); margin-bottom: 12px; }
.en-seg-card__desc { font-size: 14px; color: var(--en-text-body); line-height: 1.7; margin-bottom: 20px; }
.en-seg-card__list { display: flex; flex-direction: column; gap: 10px; }
.en-seg-card__list li { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500; color: var(--en-text-dark); }
.en-seg-card__list li::before { content: '\2713'; flex-shrink: 0; color: var(--en-green); font-weight: 700; font-size: 14px; }
.en-seg-card__footer { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--en-border-light); font-size: 13px; font-weight: 500; font-style: italic; color: var(--en-text-muted); }

@media(max-width:768px){ .en-segments__grid { grid-template-columns: 1fr; } .en-seg-card { padding: 32px 24px; } }

/* ==========================================================================
   05. SERVICES
   ========================================================================== */
.en-services { padding: 100px 24px; background: var(--en-white); }
.en-services__header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.en-services__title { font-size: clamp(28px,4vw,40px); color: var(--en-text-dark); margin-bottom: 12px; }
.en-services__sub { font-size: 15px; color: var(--en-text-body); line-height: 1.7; }
.en-services__grid { max-width: var(--en-container); margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.en-srv-card {
  display: flex; flex-direction: column; padding: 36px 28px 32px;
  background: var(--en-surface); border: 1px solid var(--en-border-light); border-radius: var(--en-radius);
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1); text-decoration: none; color: inherit; position: relative; overflow: hidden;
}
.en-srv-card::after {
  content: '\2192'; position: absolute; top: 20px; right: 20px; font-size: 18px; color: var(--en-green);
  opacity: 0; transform: translateX(-8px); transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
}
.en-srv-card:hover::after { opacity: 1; transform: translateX(0); }
.en-srv-card:hover { background: var(--en-white); border-color: rgba(84,180,53,0.2); box-shadow: 0 12px 40px rgba(15,23,42,0.06); transform: translateY(-4px); color: inherit; }
.en-srv-card__icon { width: 44px; height: 44px; border-radius: 10px; background: var(--en-green-subtle); border: 1px solid rgba(84,180,53,0.12); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 20px; }
.en-srv-card__title { font-family: var(--en-font-d); font-size: 18px; font-weight: 700; color: var(--en-text-dark); margin-bottom: 8px; }
.en-srv-card__desc { font-size: 14px; color: var(--en-text-body); line-height: 1.7; flex: 1; }
.en-services__cta { text-align: center; margin-top: 48px; }

@media(max-width:768px){ .en-services__grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:500px){ .en-services__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   06. CTA BAND
   ========================================================================== */
.en-cta-band { position: relative; padding: 80px 24px; background: var(--en-green); overflow: hidden; text-align: center; }
.en-cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(0,0,0,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.en-cta-band__inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.en-cta-band__title { font-family: var(--en-font-d); font-size: clamp(26px,4vw,38px); font-weight: 800; color: var(--en-white); margin-bottom: 16px; letter-spacing: -0.02em; line-height: 1.15; }
.en-cta-band__desc { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 32px; }

/* ==========================================================================
   07. PARTNERS
   ========================================================================== */
.en-partners { position: relative; padding: 110px 32px 120px; background: var(--en-navy-deep); overflow: hidden; }
.en-partners__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.en-partners__bg::before {
  content: ''; position: absolute; top: -20%; left: -10%; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(84,180,53,0.07) 0%, transparent 65%); filter: blur(40px);
  animation: en-orb-drift 18s ease-in-out infinite alternate;
}
.en-partners__bg::after {
  content: ''; position: absolute; bottom: -15%; right: -5%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(84,180,53,0.05) 0%, transparent 60%); filter: blur(60px);
  animation: en-orb-drift 22s ease-in-out infinite alternate-reverse;
}
.en-partners__inner { position: relative; z-index: 1; max-width: 1060px; margin: 0 auto; }
.en-partners__rule { display: flex; align-items: center; gap: 20px; margin-bottom: 48px; }
.en-partners__rule-line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--en-green), rgba(84,180,53,0.08) 80%); }
.en-partners__rule-tag { flex-shrink: 0; display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--en-green); }
.en-partners__rule-tag::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--en-green); box-shadow: 0 0 10px var(--en-green-glow); animation: en-beacon 3s ease-in-out infinite; }
.en-partners__header { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 64px; }
.en-partners__title { font-family: var(--en-font-d); font-size: clamp(36px,5vw,56px); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; color: var(--en-white); }
.en-partners__title em { font-style: normal; position: relative; display: inline-block; background: linear-gradient(135deg, var(--en-green), var(--en-green-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.en-partners__title em::after { content: ''; position: absolute; bottom: 2px; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--en-green), transparent); border-radius: 2px; opacity: 0.5; }
.en-partners__desc { font-size: 16px; font-weight: 400; line-height: 1.75; color: var(--en-text-gray); max-width: 400px; justify-self: end; padding-bottom: 6px; }
.en-partners__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: rgba(255,255,255,0.03); border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); }
.en-partner-card {
  position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  padding: 44px 28px 36px; background: rgba(6,11,22,0.7); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  text-decoration: none; transition: all 0.5s cubic-bezier(0.22,1,0.36,1); cursor: pointer;
}
.en-partner-card::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%) scaleX(0); width: 80%; height: 2px; background: linear-gradient(90deg, transparent, var(--en-green), transparent); transition: transform 0.5s cubic-bezier(0.22,1,0.36,1); z-index: 2; }
.en-partner-card::after { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 100%; height: 120px; background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(84,180,53,0.12), transparent); opacity: 0; transition: opacity 0.5s ease; pointer-events: none; z-index: 1; }
.en-partner-card:hover { background: rgba(15,23,42,0.9); }
.en-partner-card:hover::before { transform: translateX(-50%) scaleX(1); }
.en-partner-card:hover::after { opacity: 1; }
.en-partner-card__logo { position: relative; z-index: 2; height: 42px; width: auto; max-width: 130px; object-fit: contain; filter: grayscale(1) brightness(1.8); opacity: 0.4; transition: all 0.5s cubic-bezier(0.22,1,0.36,1); }
.en-partner-card:hover .en-partner-card__logo { filter: grayscale(0) brightness(1.2); opacity: 1; transform: scale(1.05); }
.en-partner-card__name { position: relative; z-index: 2; font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--en-text-muted); transition: color 0.4s ease; }
.en-partner-card:hover .en-partner-card__name { color: var(--en-text-gray); }
.en-partner-card__tag { position: relative; z-index: 2; font-size: 10px; color: var(--en-text-muted); opacity: 0; transform: translateY(4px); transition: all 0.4s cubic-bezier(0.22,1,0.36,1) 0.05s; }
.en-partner-card:hover .en-partner-card__tag { opacity: 0.7; transform: translateY(0); }
@media(max-width:860px){
  .en-partners { padding: 80px 20px 90px; }
  .en-partners__header { grid-template-columns: 1fr; gap: 20px; }
  .en-partners__desc { justify-self: start; max-width: 100%; }
  .en-partners__grid { grid-template-columns: repeat(2,1fr); border-radius: 16px; }
  .en-partner-card { padding: 36px 20px 28px; }
}
@media(max-width:480px){
  .en-partners__grid { border-radius: 12px; }
  .en-partner-card { padding: 28px 12px 22px; gap: 12px; }
  .en-partner-card__logo { height: 32px; max-width: 100px; }
  .en-partner-card__tag { display: none; }
  .en-partners__rule-line { display: none; }
}

/* ==========================================================================
   08. REVIEWS
   ========================================================================== */
.en-reviews { padding: 100px 24px; background: var(--en-surface); }
.en-reviews__header { text-align: center; max-width: 560px; margin: 0 auto 48px; }
.en-reviews__title { font-size: clamp(28px,4vw,40px); color: var(--en-text-dark); margin-bottom: 12px; }
.en-reviews__sub { font-size: 15px; color: var(--en-text-body); }
.en-reviews__grid { max-width: var(--en-container); margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.en-review {
  padding: 32px 28px; background: var(--en-white); border: 1px solid var(--en-border-light);
  border-radius: var(--en-radius); transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
}
.en-review:hover { border-color: rgba(84,180,53,0.15); box-shadow: 0 8px 32px rgba(15,23,42,0.05); transform: translateY(-3px); }
.en-review__stars { display: flex; gap: 2px; color: #FBBF24; font-size: 14px; margin-bottom: 16px; }
.en-review__text { font-size: 14px; line-height: 1.7; color: var(--en-text-body); margin-bottom: 20px; }
.en-review__author { display: flex; align-items: center; gap: 12px; }
.en-review__avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--en-green-subtle); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: var(--en-green); flex-shrink: 0; }
.en-review__name { font-size: 13px; font-weight: 600; color: var(--en-text-dark); }
.en-review__via { font-size: 11px; color: var(--en-text-muted); }

@media(max-width:768px){ .en-reviews__grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:500px){ .en-reviews__grid { grid-template-columns: 1fr; max-width: 500px; } }

.en-reviews__footer { text-align: center; margin-top: 40px; }
.en-reviews__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--en-text-dark);
  text-decoration: none;
  border-bottom: 2px solid var(--en-green, #54B435);
  transition: color 0.25s ease, transform 0.25s ease;
}
.en-reviews__more:hover { color: var(--en-green, #54B435); transform: translateY(-1px); }
.en-reviews__more .en-btn__arrow { transition: transform 0.3s ease; }
.en-reviews__more:hover .en-btn__arrow { transform: translateX(4px); }

/* ==========================================================================
   09. FAQ
   ========================================================================== */
.en-faq { padding: 100px 24px; background: var(--en-white); }
.en-faq__inner { max-width: 760px; margin: 0 auto; }
.en-faq__header { text-align: center; margin-bottom: 56px; }
.en-faq__title { font-size: clamp(26px,3.5vw,36px); color: var(--en-text-dark); margin-bottom: 12px; }
.en-faq__item { border-bottom: 1px solid var(--en-border-light); }
.en-faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 24px 0; font-size: 16px; font-weight: 600; color: var(--en-text-dark); text-align: left;
  cursor: pointer; transition: color 0.2s ease; background: none; border: none; font-family: inherit;
}
.en-faq__q:hover { color: var(--en-green); }
.en-faq__icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--en-surface);
  display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--en-text-muted);
  transition: all 0.3s ease;
}
.en-faq__item.is-open .en-faq__icon { background: var(--en-green-subtle); color: var(--en-green); transform: rotate(45deg); }
.en-faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.22,1,0.36,1); }
.en-faq__a-inner { padding: 0 0 24px; font-size: 15px; line-height: 1.8; color: var(--en-text-body); }

/* ==========================================================================
   10. ALLES AUS EINER HAND
   ========================================================================== */
.en-allinone { padding: 100px 24px; background: var(--en-surface); }
.en-allinone__header { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.en-allinone__title { font-size: clamp(28px,4vw,40px); color: var(--en-text-dark); margin-bottom: 12px; }
.en-allinone__sub { font-size: 15px; color: var(--en-text-body); line-height: 1.7; }
.en-allinone__grid { max-width: var(--en-container); margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.en-aio-card { padding: 36px 28px; background: var(--en-white); border: 1px solid var(--en-border-light); border-radius: var(--en-radius); text-align: center; transition: all 0.4s cubic-bezier(0.22,1,0.36,1); }
.en-aio-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(15,23,42,0.06); border-color: rgba(84,180,53,0.15); }
.en-aio-card__icon { font-size: 32px; margin-bottom: 16px; }
.en-aio-card__title { font-family: var(--en-font-d); font-size: 18px; font-weight: 700; color: var(--en-text-dark); margin-bottom: 10px; }
.en-aio-card__text { font-size: 14px; color: var(--en-text-body); line-height: 1.7; }

@media(max-width:768px){ .en-allinone__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* ==========================================================================
   11. 360° DOKU
   ========================================================================== */
.en-doku { padding: 110px 24px; background: var(--en-navy-deep); position: relative; overflow: hidden; }
.en-doku__inner { position: relative; z-index: 1; max-width: var(--en-container); margin: 0 auto; }
.en-doku__header { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.en-doku__title { font-size: clamp(28px,4vw,40px); color: var(--en-white); margin-bottom: 16px; }
.en-doku__sub { font-size: 15px; color: var(--en-text-gray); line-height: 1.7; }
.en-doku__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 48px; }
.en-doku-card { padding: 36px 28px; background: var(--en-card-dark); border: 1px solid var(--en-border-dark); border-radius: var(--en-radius); text-align: center; transition: all 0.4s cubic-bezier(0.22,1,0.36,1); }
.en-doku-card:hover { background: var(--en-card-dark-h); border-color: var(--en-border-dark-h); transform: translateY(-4px); }
.en-doku-card__icon { font-size: 32px; margin-bottom: 16px; }
.en-doku-card__title { font-family: var(--en-font-d); font-size: 18px; font-weight: 700; color: var(--en-white); margin-bottom: 10px; }
.en-doku-card__text { font-size: 14px; color: var(--en-text-gray); line-height: 1.7; }
.en-doku__cta { text-align: center; }

@media(max-width:768px){ .en-doku__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 48px; } }

/* ==========================================================================
   08b. RATGEBER TEASER
   ========================================================================== */
.en-blog {
  padding: 100px 24px;
  background: var(--en-surface);
}
.en-blog__inner { max-width: 1180px; margin: 0 auto; }
.en-blog__header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.en-blog__header .en-tag { margin: 0 auto 16px; }
.en-blog__title { color: var(--en-text-dark); margin-bottom: 14px; }
.en-blog__sub { color: var(--en-text-body); font-size: 16px; line-height: 1.65; margin: 0; }

.en-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.en-blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--en-border-light);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.en-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border-color: rgba(84, 180, 53, 0.4);
}
.en-blog-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--en-surface);
}
.en-blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.en-blog-card:hover .en-blog-card__media img { transform: scale(1.04); }
.en-blog-card__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.en-blog-card__date {
  font-size: 12px;
  font-weight: 600;
  color: var(--en-green, #54B435);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.en-blog-card__title {
  font-family: var(--en-font-h, 'Bricolage Grotesque', serif);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--en-text-dark);
  margin: 0 0 12px;
}
.en-blog-card__excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--en-text-body);
  margin: 0 0 18px;
  flex: 1;
}
.en-blog-card__more {
  font-size: 14px;
  font-weight: 600;
  color: var(--en-green, #54B435);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.en-blog-card__more .en-btn__arrow { transition: transform 0.3s ease; }
.en-blog-card:hover .en-blog-card__more .en-btn__arrow { transform: translateX(4px); }

.en-blog__cta { text-align: center; margin-top: 48px; }

@media (max-width: 900px) {
  .en-blog__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .en-blog { padding: 64px 16px; }
}

/* ==========================================================================
   LANDING PAGES — /elektroinstallation-hamburg/, /elektrosanierung-hamburg/,
                   /wallbox-hamburg/  (klasy wspólne .en-lp-*)
   ========================================================================== */
.en-lp-hero {
  position: relative;
  padding: 140px 24px 90px;
  background: var(--en-navy-deep, #0F172A);
  color: #fff;
  overflow: hidden;
}
.en-lp-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(84, 180, 53, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(84, 180, 53, 0.10) 0%, transparent 60%),
    linear-gradient(180deg, #0F172A 0%, #1a2438 100%);
  pointer-events: none;
}
.en-lp-hero__inner {
  position: relative; z-index: 1;
  max-width: 980px;
  margin: 0 auto;
}
.en-breadcrumb {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.en-breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}
.en-breadcrumb a:hover { color: var(--en-green, #54B435); }
.en-breadcrumb__sep { margin: 0 10px; opacity: 0.5; }

.en-lp-hero__title {
  font-family: var(--en-font-h, 'Bricolage Grotesque', serif);
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  color: #fff;
}
.en-lp-hero__title em {
  font-style: normal;
  color: var(--en-green, #54B435);
}
.en-lp-hero__lead {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 760px;
  margin: 0 0 36px;
}
.en-lp-hero__creds {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
}
.en-lp-hero__creds li {
  position: relative;
  padding-left: 18px;
}
.en-lp-hero__creds li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--en-green, #54B435);
  opacity: 0.9;
}
.en-lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

/* USP grid */
.en-lp-usp {
  padding: 100px 24px;
  background: var(--en-surface, #f8fafc);
}
.en-lp-usp__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.en-lp-usp__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.en-lp-usp__header .en-tag { margin: 0 auto 16px; }
.en-lp-usp__header .en-section-title { color: var(--en-text-dark, #0F172A); margin-bottom: 14px; }
.en-lp-usp__sub {
  color: var(--en-text-body, #334155);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}
.en-lp-usp__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.en-lp-usp__card {
  background: #fff;
  border: 1px solid var(--en-border-light);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.en-lp-usp__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border-color: rgba(84, 180, 53, 0.4);
}
.en-lp-usp__num {
  display: inline-block;
  font-family: var(--en-font-h, 'Bricolage Grotesque', serif);
  font-size: 14px;
  font-weight: 800;
  color: var(--en-green, #54B435);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.en-lp-usp__card h3 {
  font-family: var(--en-font-h, 'Bricolage Grotesque', serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--en-text-dark, #0F172A);
  margin: 0 0 12px;
}
.en-lp-usp__card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--en-text-body, #334155);
  margin: 0;
}

/* HOW (drei-spaltig) */
.en-lp-how {
  padding: 100px 24px;
  background: var(--en-navy-deep, #0F172A);
  color: #fff;
}
.en-lp-how__inner { max-width: 1180px; margin: 0 auto; }
.en-lp-how__header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.en-lp-how__header .en-tag { margin: 0 auto 16px; }
.en-lp-how__header .en-section-title { color: #fff; }
.en-lp-how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.en-lp-how__grid--4 { grid-template-columns: repeat(4, 1fr); }
.en-lp-how__col {
  padding: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}
.en-lp-how__col h3 {
  font-family: var(--en-font-h, 'Bricolage Grotesque', serif);
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 14px;
  color: #fff;
}
.en-lp-how__col p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}
.en-lp-how__step {
  display: inline-block;
  font-family: var(--en-font-h, 'Bricolage Grotesque', serif);
  font-size: 13px;
  font-weight: 800;
  color: var(--en-green, #54B435);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

@media (max-width: 980px) {
  .en-lp-usp__grid { grid-template-columns: repeat(2, 1fr); }
  .en-lp-how__grid,
  .en-lp-how__grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .en-lp-hero { padding: 120px 18px 64px; }
  .en-lp-hero__creds { gap: 8px 22px; font-size: 12px; }
  .en-lp-usp,
  .en-lp-how { padding: 64px 16px; }
  .en-lp-usp__grid,
  .en-lp-how__grid,
  .en-lp-how__grid--4 { grid-template-columns: 1fr; }
}

/* ==========================================================================
   WHATSAPP FLOATING CTA — global, every page
   ========================================================================== */
.en-wa-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9998;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 14px 16px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 100px;
  font-family: var(--en-font-b, 'Instrument Sans', sans-serif);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 4px 8px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease, background 0.25s ease;
  animation: en-wa-pop 0.6s 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.en-wa-fab:hover {
  transform: translateY(-2px);
  background: #1ebe5b;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45), 0 6px 12px rgba(0, 0, 0, 0.16);
  color: #fff;
}
.en-wa-fab:active { transform: translateY(0); }
.en-wa-fab svg { flex-shrink: 0; }
.en-wa-fab__label { display: inline-block; }

@keyframes en-wa-pop {
  from { opacity: 0; transform: translateY(20px) scale(0.85); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 600px) {
  .en-wa-fab {
    right: 14px;
    bottom: 14px;
    padding: 14px;
    border-radius: 50%;
  }
  .en-wa-fab__label { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .en-wa-fab { animation: none; }
}
