/* ===========================
   fiberlan – styles.css
   =========================== */

:root {
  --green: #237803;
  --green-dk: #1A5A02;
  --green-lt: #EBF5E6;
  --green-mid: #2E9A04;
  --teal: #103F39;
  --teal-lt: #E6EFEE;
  --dark: #0A1A0E;
  --bg: #F6F8F5;
  --white: #FFFFFF;
  --border: rgba(35,120,3,0.14);
  --text: #1A2B17;
  --muted: #3d4f3a;
  --radius: 14px;
  --fh: 'Outfit', sans-serif;
  --fb: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-y: scroll; }
body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  max-width: 1320px;
  margin: 0 auto;
  box-shadow: 0 0 40px rgba(0,0,0,0.06);
}

/* ───────── NAV ───────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 3vw;
  height: 80px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; line-height: 0; padding: 6px 0; }
.nav-logo picture { display: flex; align-items: center; }
.nav-logo img { height: 74px; width: auto; display: block; }

.nav-links { display: flex; gap: 8px; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-links li { list-style: none; padding: 0; margin: 0; }
.nav-links a {
  font-family: var(--fh); font-size: .78rem; font-weight: 700;
  color: var(--text); text-decoration: none; padding: 6px 14px;
  border-radius: 8px; letter-spacing: 1.5px; text-transform: uppercase;
  position: relative; transition: color .25s; white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 14px; right: 14px;
  height: 2px; background: var(--green); border-radius: 2px;
  transform: scaleX(0); transition: transform .25s ease;
}
.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-tel {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--fh); font-size: .78rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--teal); text-decoration: none; padding: 6px 14px;
  position: relative; transition: color .25s;
}
.nav-tel::after {
  content: ''; position: absolute; bottom: 0; left: 14px; right: 14px;
  height: 2px; background: var(--green); border-radius: 2px;
  transform: scaleX(0); transition: transform .25s ease;
}
.nav-tel:hover { color: var(--green); }
.nav-tel:hover::after { transform: scaleX(1); }
.nav-tel svg { width: 14px; height: 14px; flex-shrink: 0; }

.lang-sw { display: flex; background: var(--teal); border-radius: 100px; overflow: hidden; }
.lang-sw button, .lang-sw a {
  border: none; background: transparent; color: rgba(255,255,255,.45);
  font-family: var(--fb); font-size: .78rem; font-weight: 600;
  padding: 5px 13px; cursor: pointer; transition: all .2s;
  text-decoration: none;
}
.lang-sw button.active, .lang-sw a.active { background: var(--green); color: #fff; }

.btn-nav {
  background: var(--green); color: #fff; border: none; border-radius: 100px;
  font-family: var(--fb); font-size: .88rem; font-weight: 600;
  padding: 9px 20px; cursor: pointer; text-decoration: none;
  transition: background .2s; white-space: nowrap;
}
.btn-nav:hover { background: var(--green-dk); }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.burger span {
  display: block; width: 22px; height: 2px; background: var(--text);
  border-radius: 2px; transition: transform .25s, opacity .25s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 80px; left: 0; right: 0; z-index: 190;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 0; flex-direction: column; box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem; font-weight: 600; color: var(--text); text-decoration: none;
  padding: 16px 5vw; border-bottom: 1px solid rgba(0,0,0,.06);
  display: flex; align-items: center; transition: background .15s, color .15s;
}
.mobile-menu a:hover { background: var(--green-lt); color: var(--green); }
.mobile-menu a.active { color: var(--green); }

/* ───────── HERO ───────── */
.hero {
  padding: 96px 5vw 56px; background: var(--dark);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: start; gap: 60px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -100px;
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(35,120,3,.22) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -120px; left: 20%;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(16,63,57,.20) 0%, transparent 65%);
  pointer-events: none;
}
.hero-text { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(35,120,3,.18); border: 1px solid rgba(35,120,3,.4);
  color: #6ED44A; font-size: .75rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 28px;
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: #6ED44A; animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.hero h1 {
  font-family: var(--fh); font-size: clamp(2.2rem,4vw,3.8rem);
  font-weight: 800; color: #fff; line-height: 1.08;
  letter-spacing: -1.5px; margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: #4ECC1A; }
.hero-sub {
  font-size: 1.02rem; color: rgba(255,255,255,.62);
  line-height: 1.8; max-width: 480px; margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff; border: none; border-radius: 100px;
  font-family: var(--fb); font-size: .92rem; font-weight: 600;
  padding: 11px 22px; cursor: pointer; text-decoration: none;
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 20px rgba(35,120,3,.45);
}
.btn-primary:hover { background: var(--green-dk); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18);
  color: #fff; border-radius: 100px; font-family: var(--fb);
  font-size: .95rem; font-weight: 500; padding: 13px 28px;
  cursor: pointer; text-decoration: none; transition: background .2s;
}
.btn-outline:hover { background: rgba(255,255,255,.13); }

.hero-visual { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 14px; }
.hv-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius); padding: 22px 26px;
  transition: transform .3s, border-color .3s;
}
.hv-card:hover { transform: translateX(-5px); border-color: rgba(35,120,3,.9); box-shadow: 0 0 12px rgba(35,120,3,.3); }
.hv-icon {
  width: 42px; height: 42px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 10px;
  color: #fff;
}
.ic-g { background: rgba(35,120,3,.22); }
.ic-t { background: rgba(16,63,57,.3); }
.ic-w { background: rgba(255,255,255,.07); }
.hv-card h3 { font-family: var(--fh); font-size: .97rem; font-weight: 700; color: #fff; margin-bottom: 5px; }
.hv-card p { font-size: .83rem; color: rgba(255,255,255,.48); line-height: 1.6; }

/* ───────── STATS ───────── */
.stats-bar {
  background: var(--green); padding: 26px 5vw;
  display: flex; justify-content: space-around;
  align-items: center; flex-wrap: wrap; gap: 18px;
}
.stat-item { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 4px; min-width: 0; }
.stat-item .num {
  font-family: var(--fh); font-size: 1.6rem; font-weight: 800;
  color: #fff; display: block; line-height: 1; letter-spacing: -0.5px;
}
.stat-item .lbl { font-size: .78rem; color: rgba(255,255,255,.8); font-weight: 500; line-height: 1.3; margin-top: 4px; }

/* ───────── SECTIONS (shared) ───────── */
section { padding: 80px 5vw; }
.stag {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--green); margin-bottom: 14px;
}
.stitle {
  font-family: var(--fh); font-size: clamp(1.7rem,2.8vw,2.6rem);
  font-weight: 800; letter-spacing: -.5px; line-height: 1.12; margin-bottom: 16px;
}
.ssub { font-size: 1rem; color: var(--muted); line-height: 1.8; max-width: 560px; margin-bottom: 46px; }

/* ───────── SERVICES ───────── */
.services-section { background: var(--bg); padding: 60px 5vw; position: relative; overflow: hidden; }
.services-section::before {
  content: ''; position: absolute; top: -80px; left: -60px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(35,120,3,.06) 0%, transparent 65%);
  pointer-events: none;
}
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.svc-card {
  padding: 24px 20px; text-align: center;
  border-right: 1px solid var(--border);
  transition: background .2s, box-shadow .3s;
}
.svc-card:last-child { border-right: none; }
.svc-card:hover { background: var(--green-lt); box-shadow: inset 0 0 0 2px rgba(35,120,3,.5), 0 0 12px rgba(35,120,3,.15); }
.svc-icon {
  width: 44px; height: 44px; background: var(--green-lt); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin: 0 auto 12px;
  color: var(--green);
}
.svc-card:hover .svc-icon { background: #fff; }
.svc-card h3 { font-family: var(--fh); font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.svc-desc { font-size: .82rem; color: var(--muted); line-height: 1.55; margin-bottom: 10px; }
.svc-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .82rem; font-weight: 600; color: var(--green);
  text-decoration: none; transition: gap .2s;
}
.svc-link:hover { gap: 9px; }

/* ───────── HOW ───────── */
.how-section { background: var(--bg); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 28px; left: 8%; right: 8%;
  height: 2px; background: repeating-linear-gradient(90deg, var(--green) 0, var(--green) 8px, transparent 8px, transparent 16px);
  opacity: .2; z-index: 0;
}
.step { padding: 28px 24px; position: relative; z-index: 1; }
.step-n { font-family: var(--fh); font-size: 3rem; font-weight: 800; color: rgba(35,120,3,.3); line-height: 1; margin-bottom: 10px; transition: color .3s; }
.step:hover .step-n { color: #0d3a01; }
.step h3 { font-family: var(--fh); font-size: .97rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: .88rem; color: var(--muted); line-height: 1.75; }

/* ───────── GAGNET ───────── */
.gagnet-section { background: var(--dark); padding: 80px 5vw; }
.gagnet-section .stag { color: #6ED44A; }
.gagnet-section .stitle { color: #fff; }
.gagnet-section .ssub { color: rgba(255,255,255,.5); }
.gagnet-header { text-align: center; margin-bottom: 56px; }
.gagnet-header .stitle { margin-bottom: 12px; }
.gagnet-header .ssub { margin: 0 auto; text-align: center; }
.gagnet-articles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.gagnet-article-wrap { text-decoration: none; color: inherit; display: flex; cursor: pointer; }
.gagnet-article {
  background: rgba(255,255,255,.06); border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(255,255,255,.1); transition: box-shadow .3s, transform .3s;
  text-decoration: none; display: flex; flex-direction: column; width: 100%;
}
.gagnet-article:hover { transform: translateY(-4px); }
.gagnet-article-img {
  height: 160px; overflow: hidden; display: flex;
  align-items: center; justify-content: center; padding: 28px;
  background: #fff;
}
.gagnet-article-img picture { display: flex; align-items: center; justify-content: center; height: 100%; width: 100%; }
.gagnet-article-img img { max-height: 100%; max-width: 80%; width: auto; object-fit: contain; }
.gagnet-article--gagnet { border-top: 4px solid #3b1f2b; }
.gagnet-article--fiberlan { border-top: 4px solid #237803; }
.gagnet-article--swg { border-top: 4px solid #2d7eb5; }
.gagnet-article--gagnet:hover { box-shadow: 0 0 20px rgba(120,40,70,.5), 0 10px 35px rgba(120,40,70,.3); border-color: rgba(120,40,70,.8); }
.gagnet-article--fiberlan:hover { box-shadow: 0 0 20px rgba(35,120,3,.5), 0 10px 35px rgba(35,120,3,.3); border-color: rgba(35,120,3,.8); }
.gagnet-article--swg:hover { box-shadow: 0 0 20px rgba(45,126,181,.5), 0 10px 35px rgba(45,126,181,.3); border-color: rgba(45,126,181,.8); }
.gagnet-article-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.gagnet-article-tag {
  font-size: .7rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #6ED44A; margin-bottom: 8px;
}
.gagnet-article-body h3 { font-family: var(--fh); font-size: 1rem; font-weight: 700; color: #fff; line-height: 1.35; margin-bottom: 10px; }
.gagnet-article-body p { font-size: .86rem; color: rgba(255,255,255,.55); line-height: 1.7; flex: 1; }
.gagnet-article-link { font-size: .83rem; font-weight: 600; color: #6ED44A; margin-top: 14px; display: inline-flex; align-items: center; gap: 4px; }

/* ───────── ABOUT ───────── */
.about-section {
  background: var(--bg); display: grid;
  grid-template-columns: 1fr 1fr; align-items: center; gap: 60px;
  position: relative; overflow: hidden;
}
.about-section::after {
  content: ''; position: absolute; bottom: -100px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(35,120,3,.07) 0%, transparent 65%);
  pointer-events: none;
}
.about-section .stag { color: var(--green); }
.about-section .stitle { color: var(--text); }
.about-section .ssub { color: var(--muted); }
.about-photo img {
  width: 100%; height: 360px; object-fit: cover;
  object-position: center 40%; border-radius: var(--radius);
}
.about-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.about-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-lt); border: 1px solid var(--border);
  color: var(--green); font-size: .78rem; font-weight: 600;
  letter-spacing: .5px; text-transform: uppercase;
  padding: 7px 16px; border-radius: 100px;
}

/* ───────── FAQ ───────── */
.faq-section { background: var(--dark); }
.faq-section .stag { color: #6ED44A; }
.faq-section .stitle { color: #fff; }
.faq-section .ssub { color: rgba(255,255,255,.5); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 960px; }
.faq-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 26px; transition: border-color .2s;
}
.faq-card:hover { border-color: var(--green); }
.faq-card h4 { font-family: var(--fh); font-size: .95rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.faq-card p { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.75; }

/* ───────── REVIEWS ───────── */
.reviews-section { background: var(--bg); padding: 90px 5vw; position: relative; overflow: hidden; }
.reviews-section::before {
  content: ''; position: absolute; top: -120px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(16,63,57,.05) 0%, transparent 65%);
  pointer-events: none;
}
.reviews-inner { max-width: 1000px; margin: 0 auto; position: relative; z-index: 1; }
.reviews-layout { display: grid; grid-template-columns: 280px 1fr; gap: 56px; align-items: center; }
.reviews-left .stag { color: var(--green); }
.reviews-left .stitle { color: var(--text); }
.reviews-left .ssub { color: var(--muted); }
.reviews-score-bloc { margin-top: 24px; }
.reviews-score-number {
  font-family: var(--fh); font-size: 3.5rem; font-weight: 800;
  color: var(--text); line-height: 1;
}
.reviews-score-number span { font-size: 1.2rem; color: var(--muted); }
.reviews-stars-row { display: flex; gap: 4px; margin: 8px 0; }
.reviews-stars-row .star { color: #FFD700; font-size: 1.2rem; }
.reviews-score-sub { font-size: .82rem; color: var(--muted); margin-top: 6px; }
.reviews-google-inline {
  display: flex; align-items: center; gap: 8px;
  margin-top: 12px; font-size: .82rem; color: var(--muted);
}
.reviews-google-inline svg { width: 18px; height: 18px; }

.review-card-modern {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 32px;
}
.review-card-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.review-card-stars .star { color: #FFD700; font-size: 1.1rem; }
.review-bigquote {
  font-family: var(--fh); font-size: 1.1rem; font-weight: 600;
  color: var(--text); line-height: 1.65; font-style: italic; margin-bottom: 24px;
}
.review-author-row { display: flex; justify-content: space-between; align-items: center; }
.review-author-left { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--green); display: flex; align-items: center;
  justify-content: center; font-family: var(--fh); font-weight: 700;
  color: #fff; font-size: .95rem; flex-shrink: 0;
}
.rname { font-weight: 700; font-size: .9rem; color: var(--text); }
.rdate { font-size: .78rem; color: var(--muted); }
.review-verified {
  display: flex; align-items: center; gap: 6px;
  font-size: .78rem; color: var(--green); font-weight: 600;
}
.review-verified svg { width: 16px; height: 16px; stroke: var(--green); }

.reviews-cta { text-align: center; margin-top: 40px; }
.btn-google-review {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green-lt); border: 1.5px solid var(--border);
  color: var(--green); border-radius: 100px; font-family: var(--fb);
  font-size: .9rem; font-weight: 600; padding: 12px 28px;
  text-decoration: none; transition: background .2s;
}
.btn-google-review:hover { background: #d4edcb; }

/* ───────── CTA ───────── */
.cta-section { background: var(--teal); text-align: center; padding: 80px 5vw; }
.cta-section h2 {
  font-family: var(--fh); font-size: clamp(1.8rem,3vw,2.7rem);
  font-weight: 800; color: #fff; margin-bottom: 16px;
}
.cta-section p { color: rgba(255,255,255,.7); font-size: 1rem; line-height: 1.8; max-width: 560px; margin: 0 auto 34px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: #fff; color: var(--teal); border: none; border-radius: 100px;
  font-family: var(--fb); font-size: 1rem; font-weight: 700;
  padding: 15px 34px; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px; transition: transform .2s;
}
.btn-white:hover { transform: scale(1.03); }
.btn-white-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.35); border-radius: 100px;
  font-family: var(--fb); font-size: 1rem; font-weight: 600;
  padding: 15px 34px; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px; transition: border-color .2s;
}
.btn-white-outline:hover { border-color: #fff; }

/* ───────── FOOTER ───────── */
footer { background: var(--dark); padding: 48px 5vw 24px; }
.footer-inner { display: flex; align-items: flex-start; gap: 48px; margin-bottom: 32px; flex-wrap: wrap; }
.footer-logo-wrap { flex: 0 0 auto; }
.footer-logo-wrap picture { display: block; }
.footer-logo { height: 90px; width: auto; filter: brightness(0) invert(1); display: block; }
.footer-cols { flex: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.footer-col-title {
  font-family: var(--fh); font-size: .72rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: #6ED44A; margin-bottom: 12px;
}
.footer-col p, .footer-col a {
  font-size: .88rem; color: rgba(255,255,255,.58);
  line-height: 1.8; text-decoration: none; display: block;
}
.footer-col a:hover { color: #6ED44A; }
.footer-contact-btn {
  display: inline-block; margin-top: 8px;
  color: #6ED44A !important; font-weight: 600; font-size: .85rem;
  transition: gap .2s;
}
.footer-social { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.soc-link {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.58); text-decoration: none;
  font-size: .88rem; transition: color .2s;
}
.soc-link:hover { color: #6ED44A; }
.soc-link svg { stroke: currentColor; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 16px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 6px;
}
.footer-bottom p { font-family: var(--fb); font-size: .82rem; color: rgba(255,255,255,.38); }
.footer-hours { font-size: .82rem; color: rgba(255,255,255,.45); display: block; line-height: 1.6; }
.footer-legal-link { color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.footer-legal-link:hover { color: #6ED44A; }

/* ───────── COOKIE BANNER ───────── */
.cookie-banner {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 9999; background: #0A1A0E;
  border-top: 1px solid rgba(35,120,3,.3);
  padding: 16px 5vw; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.cookie-banner p { font-size: .83rem; color: rgba(255,255,255,.65); line-height: 1.6; max-width: 700px; margin: 0; }
.cookie-banner a { color: #4ECC1A; text-decoration: none; }
.cookie-btn-accept {
  background: #237803; color: #fff; border: none; border-radius: 100px;
  font-size: .88rem; font-weight: 600; padding: 10px 22px; cursor: pointer;
}
.cookie-btn-reject {
  background: transparent; color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.2); border-radius: 100px;
  font-size: .88rem; font-weight: 500; padding: 10px 18px; cursor: pointer;
}

/* ───────── SEARCH OVERLAY ───────── */
.search-btn {
  background: none; border: none; cursor: pointer; padding: 6px;
  color: var(--text); display: flex; align-items: center;
}
.search-btn svg { width: 20px; height: 20px; }
.search-overlay {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,.5); backdrop-filter: blur(4px);
  align-items: flex-start; justify-content: center; padding-top: 120px;
}
.search-overlay.open { display: flex; }
.search-box {
  background: #fff; border-radius: var(--radius); padding: 24px;
  width: 90%; max-width: 560px; box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.search-input-wrap {
  display: flex; align-items: center; gap: 10px;
  border-bottom: 2px solid var(--border); padding-bottom: 12px; margin-bottom: 12px;
}
.search-input-wrap svg { width: 20px; height: 20px; color: var(--muted); flex-shrink: 0; }
.search-input-wrap input {
  border: none; outline: none; font-size: 1rem; font-family: var(--fb);
  width: 100%; color: var(--text); background: transparent;
}
.search-results { max-height: 320px; overflow-y: auto; }
.search-result-item {
  padding: 12px; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: background .15s;
}
.search-result-item:hover { background: var(--green-lt); }
.search-result-item:last-child { border-bottom: none; }
.search-result-title { font-weight: 600; font-size: .9rem; color: var(--text); margin-bottom: 3px; }
.search-result-text { font-size: .8rem; color: var(--muted); line-height: 1.5; }
.search-result-tag { font-size: .7rem; font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.search-no-results { padding: 20px; text-align: center; color: var(--muted); font-size: .9rem; }
.search-close { float: right; background: none; border: none; cursor: pointer; font-size: 1.2rem; color: var(--muted); padding: 4px 8px; margin-bottom: 8px; }

/* ═══════════════════════════════
   TABLET (max 960px)
═══════════════════════════════ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-tel span { display: none; }
  .btn-nav { display: none; }
  .burger { display: flex; }
  .hero { grid-template-columns: 1fr; gap: 24px; padding: 90px 5vw 48px; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .svc-card { border-right: none; border-bottom: 1px solid var(--border); }
  .steps { grid-template-columns: 1fr 1fr; }
  .gagnet-articles { grid-template-columns: 1fr; }
  .about-section { grid-template-columns: 1fr; gap: 32px; }
  .reviews-layout { grid-template-columns: 1fr; gap: 32px; }
  .reviews-left { text-align: center; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* ═══════════════════════════════
   MOBILE (max 600px)
═══════════════════════════════ */
@media (max-width: 600px) {
  nav { padding: 0; }
  .nav-inner { padding: 0 14px; height: 70px; }
  .nav-logo img { height: 54px; }
  .nav-links { display: none; }
  .btn-nav, .nav-tel { display: none; }
  .burger { display: flex; }
  .mobile-menu { top: 70px; }

  .hero { display: flex; flex-direction: column; gap: 16px; padding: 78px 14px 32px; }
  .hero h1 { font-size: 1.8rem; line-height: 1.1; }
  .hero-sub { font-size: .88rem; line-height: 1.65; }
  .hero-ctas { gap: 8px; }
  .btn-primary, .btn-outline { font-size: .85rem; padding: 10px 18px; width: 100%; justify-content: center; }
  .hero-visual { width: 100%; }

  .stats-bar { padding: 16px 14px; gap: 12px; }
  .stat-item .num { font-size: 1.5rem; }
  .stat-item .lbl { font-size: .68rem; }

  .services-section { padding: 40px 14px; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card { border-right: none; border-bottom: 1px solid var(--border); text-align: left; }

  .how-section { padding: 40px 14px; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .step { padding: 18px 14px; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }

  .about-section { grid-template-columns: 1fr; gap: 24px; padding: 40px 14px; }
  .about-photo img { height: 220px; border-radius: var(--radius); }

  .gagnet-section { padding: 40px 14px; }
  .gagnet-articles { grid-template-columns: 1fr; gap: 16px; }
  .gagnet-logo-bar img { height: 36px; }

  .faq-section { padding: 36px 14px; }
  .faq-grid { grid-template-columns: 1fr; }

  .reviews-section { padding: 40px 14px; }
  .reviews-layout { grid-template-columns: 1fr; gap: 24px; }

  .cta-section { padding: 32px 14px; }
  .cta-section h2 { font-size: 1.25rem; }
  .cta-buttons { flex-direction: column; align-items: stretch; gap: 10px; }
  .btn-white, .btn-white-outline { width: 100%; justify-content: center; }

  .footer-cols { grid-template-columns: 1fr; gap: 24px; }
  .footer-inner { gap: 24px; }

  .about-badges { gap: 8px; }
  .about-badge { font-size: .7rem; padding: 6px 12px; }

  .stats-bar { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .stat-item { flex: 0 0 45%; }
}

/* ───────── LEGAL PAGES ───────── */
.page-header {
  background: var(--dark); padding: 120px 5vw 50px; text-align: center;
}
.page-header .breadcrumb {
  font-size: .82rem; color: rgba(255,255,255,.4); margin-bottom: 16px;
}
.page-header .breadcrumb a { color: rgba(255,255,255,.4); text-decoration: none; }
.page-header .breadcrumb a:hover { color: #6ED44A; }
.page-header .breadcrumb span { margin: 0 8px; }
.page-header h1 {
  font-family: var(--fh); font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800; color: #fff; margin-bottom: 12px;
}
.page-header p { font-size: .95rem; color: rgba(255,255,255,.5); }
.content-section { max-width: 760px; margin: 0 auto; padding: 60px 5vw; }
.content-block { margin-bottom: 40px; }
.content-block h2 {
  font-family: var(--fh); font-size: 1.15rem; font-weight: 700;
  margin-bottom: 12px; color: var(--text);
}
.content-block p { font-size: .92rem; color: var(--muted); line-height: 1.85; margin-bottom: 10px; }
.content-block ul { padding-left: 20px; margin: 10px 0; }
.content-block li { font-size: .92rem; color: var(--muted); line-height: 1.85; }
.content-block a { color: var(--green); text-decoration: none; }
.content-block a:hover { text-decoration: underline; }
.info-row { display: flex; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.info-row dt { font-size: .88rem; color: var(--muted); min-width: 160px; flex-shrink: 0; }
.info-row dd { font-size: .88rem; color: var(--text); font-weight: 500; }
.info-row dd a { color: var(--green); text-decoration: none; }

@media (max-width: 600px) {
  .info-row { flex-direction: column; gap: 2px; }
  .info-row dt { min-width: auto; }
}

/* ───────── LEISTUNGEN PAGE ───────── */
.hero-leistungen {
  padding: 120px 5vw 60px; background: var(--dark);
  position: relative; overflow: hidden; text-align: center;
}
.hero-leistungen::before {
  content: ''; position: absolute; top: -200px; right: -100px;
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(35,120,3,.22) 0%, transparent 65%);
  pointer-events: none;
}
.hero-l-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.hero-leistungen .hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(35,120,3,.18); border: 1px solid rgba(35,120,3,.4);
  color: #6ED44A; font-size: .75rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 28px;
}
.hero-leistungen h1 {
  font-family: var(--fh); font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800; color: #fff; line-height: 1.1;
  letter-spacing: -1.5px; margin-bottom: 22px;
}
.hero-leistungen h1 em { font-style: normal; color: #4ECC1A; }
.hero-leistungen .hero-sub {
  font-size: 1.02rem; color: rgba(255,255,255,.6);
  line-height: 1.8; max-width: 560px; margin: 0 auto;
}

/* BEP */
.bep-band { background: var(--bg); padding: 60px 5vw; position: relative; overflow: hidden; }
.bep-band::before {
  content: ''; position: absolute; top: -100px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(35,120,3,.08) 0%, transparent 65%);
  pointer-events: none;
}
.bep-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.bep-title {
  font-family: var(--fh); font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 14px;
}
.bep-title em { font-style: normal; color: var(--green); }
.bep-text { font-size: .95rem; color: var(--text); line-height: 1.8; }
.bep-band .stag { color: var(--green); }
.bep-diagram { display: flex; align-items: center; justify-content: center; gap: 12px; }
.bep-step { text-align: center; }
.bep-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--bg); border: 2px solid #333;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin: 0 auto 8px;
  color: var(--dark);
}
.bep-icon-fiberlan {
  background: #fff; border: 2px solid var(--green); padding: 6px;
  animation: neonBlink 1.2s ease-in-out infinite;
}
@keyframes neonBlink {
  0%, 100% { box-shadow: 0 0 4px rgba(35,120,3,.15); }
  50% { box-shadow: 0 0 20px rgba(35,120,3,.8), 0 0 40px rgba(35,120,3,.4), 0 0 60px rgba(35,120,3,.2); }
}
.bep-icon-fiberlan img { height: 28px; width: auto; }
.bep-label { font-size: .78rem; color: var(--text); font-weight: 600; }
.bep-label-active { color: var(--green); font-weight: 700; }
.bep-arrow { font-size: 1.2rem; color: #333; }

/* PRESTATIONS SECTION */
.prestas-section {
  background: var(--dark); padding: 80px 5vw;
}
.prestas-header {
  text-align: center; margin-bottom: 60px;
}
.prestas-header .stag { color: #6ED44A; }
.prestas-header .stitle { color: #fff; }

.presta-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  padding: 48px 24px; border-bottom: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); border: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.presta-row:hover {
  border-color: rgba(35,120,3,.6); box-shadow: 0 0 16px rgba(35,120,3,.2);
}
.presta-row:last-child { border-bottom: none; }
.presta-reverse { direction: rtl; }
.presta-reverse > * { direction: ltr; }
.presta-icon { font-size: 2rem; margin-bottom: 12px; color: var(--green); }
.presta-text h3 {
  font-family: var(--fh); font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 14px;
}
.presta-text p { font-size: .95rem; color: rgba(255,255,255,.6); line-height: 1.85; }
.presta-photos {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.presta-photos img {
  width: 100%; height: 220px; object-fit: cover;
  border-radius: var(--radius); transition: transform .3s;
}
.presta-photos img:hover { transform: scale(1.03); }
.presta-single { grid-template-columns: 1fr; }
.presta-single img { height: auto; max-height: 350px; object-fit: contain; }

@media (max-width: 960px) {
  .presta-row { grid-template-columns: 1fr; gap: 32px; }
  .presta-reverse { direction: ltr; }
}
@media (max-width: 600px) {
  .prestas-section { padding: 40px 14px; }
  .presta-row { padding: 32px 0; gap: 24px; }
  .presta-photos img { height: 160px; }
}

/* HOW (leistungen uses light bg) */
.hero-leistungen ~ .how-section { background: var(--bg); position: relative; overflow: hidden; }
.hero-leistungen ~ .how-section::before {
  content: ''; position: absolute; bottom: -120px; left: -60px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(16,63,57,.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-leistungen ~ .how-section .stag { color: var(--green); }
.hero-leistungen ~ .how-section .stitle { color: var(--text); }
.hero-leistungen ~ .how-section .ssub { color: var(--muted); }
.hero-leistungen ~ .how-section .step-n { color: rgba(35,120,3,.3); }
.hero-leistungen ~ .how-section .step:hover .step-n { color: #0d3a01; }
.hero-leistungen ~ .how-section .step h3 { color: var(--text); }
.hero-leistungen ~ .how-section .step p { color: var(--muted); }

@media (max-width: 960px) {
  .bep-inner { grid-template-columns: 1fr; gap: 32px; }
  .bep-diagram { flex-wrap: wrap; }
  .prestas-section { padding: 60px 5vw; }
  .hero-leistungen { padding: 100px 5vw 50px; }
}
@media (max-width: 600px) {
  .hero-leistungen { padding: 100px 14px 40px; }
  .hero-leistungen h1 { font-size: 1.6rem; }
  .bep-band { padding: 40px 14px; }
  .bep-inner { gap: 24px; }
  .bep-diagram { gap: 8px; }
  .bep-arrow { font-size: .9rem; }
  .prestas-section { padding: 40px 14px; }
  .prestas-header { margin-bottom: 32px; }
}

/* ───────── ABOUT PAGE ───────── */
.hero-about {
  padding: 120px 5vw 60px; background: var(--dark);
  position: relative; overflow: hidden; text-align: center;
}
.hero-about::before {
  content: ''; position: absolute; top: -200px; right: -100px;
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(35,120,3,.22) 0%, transparent 65%);
  pointer-events: none;
}
.hero-about-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.hero-about .hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(35,120,3,.18); border: 1px solid rgba(35,120,3,.4);
  color: #6ED44A; font-size: .75rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 28px;
}
.hero-about h1 {
  font-family: var(--fh); font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800; color: #fff; line-height: 1.1;
  letter-spacing: -1.5px; margin-bottom: 22px;
}
.hero-about h1 em { font-style: normal; color: #4ECC1A; }
.hero-about .hero-sub {
  font-size: 1.02rem; color: rgba(255,255,255,.6);
  line-height: 1.8; max-width: 560px; margin: 0 auto;
}

/* TEAM */
.team-section {
  background: var(--bg); padding: 80px 5vw;
  position: relative; overflow: hidden;
}
.team-section::before {
  content: ''; position: absolute; bottom: -120px; left: -60px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(35,120,3,.06) 0%, transparent 65%);
  pointer-events: none;
}
.team-header { text-align: center; margin-bottom: 48px; }
.team-founders {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 32px; max-width: 600px; margin: 0 auto 40px;
}
.team-techs {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; max-width: 800px; margin: 0 auto;
}
.team-card { text-align: center; }
.team-card img {
  width: 180px; height: 180px; border-radius: 50%;
  object-fit: cover; margin-bottom: 16px;
  border: 3px solid var(--border);
  transition: border-color .3s;
}
.team-card:hover img { border-color: var(--green); }
.team-placeholder {
  width: 180px; height: 180px; border-radius: 50%;
  background: var(--dark); color: #6ED44A;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh); font-size: 3rem; font-weight: 800;
  margin: 0 auto 16px; border: 3px solid var(--border);
  transition: border-color .3s;
}
.team-card:hover .team-placeholder { border-color: var(--green); }
.team-card h3 {
  font-family: var(--fh); font-size: 1.1rem;
  font-weight: 700; color: var(--text); margin-bottom: 4px;
}
.team-role { font-size: .85rem; color: var(--muted); margin-bottom: 4px; }
.team-lang {
  font-size: .75rem; font-weight: 600; color: var(--green);
  letter-spacing: .5px;
}

@media (max-width: 960px) {
  .team-techs { grid-template-columns: repeat(2, 1fr); max-width: 500px; }
}
@media (max-width: 600px) {
  .hero-about { padding: 100px 14px 40px; }
  .team-section { padding: 40px 14px; }
  .team-founders { grid-template-columns: 1fr; gap: 24px; max-width: 300px; }
  .team-techs { grid-template-columns: 1fr 1fr; gap: 20px; max-width: 400px; }
  .team-card img, .team-placeholder { width: 120px; height: 120px; }
  .team-placeholder { font-size: 2rem; }
  .page-header { padding: 100px 14px 36px; }
  .content-section { padding: 40px 14px; }
}

/* ───────── KONTAKT PAGE ───────── */
.hero-kontakt {
  padding: 120px 5vw 60px; background: var(--dark);
  position: relative; overflow: hidden; text-align: center;
}
.hero-kontakt::before {
  content: ''; position: absolute; top: -200px; right: -100px;
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(35,120,3,.22) 0%, transparent 65%);
  pointer-events: none;
}
.hero-kontakt-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.hero-kontakt .hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(35,120,3,.18); border: 1px solid rgba(35,120,3,.4);
  color: #6ED44A; font-size: .75rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 28px;
}
.hero-kontakt h1 {
  font-family: var(--fh); font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800; color: #fff; line-height: 1.1;
  letter-spacing: -1.5px; margin-bottom: 22px;
}
.hero-kontakt h1 em { font-style: normal; color: #4ECC1A; }
.hero-kontakt .hero-sub {
  font-size: 1.02rem; color: rgba(255,255,255,.6);
  line-height: 1.8; max-width: 560px; margin: 0 auto;
}

/* CONTACT SECTION */
.kontakt-section {
  background: var(--bg); padding: 80px 5vw;
  position: relative; overflow: hidden;
}
.kontakt-section::before {
  content: ''; position: absolute; bottom: -120px; left: -60px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(35,120,3,.06) 0%, transparent 65%);
  pointer-events: none;
}
.kontakt-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 60px; max-width: 1000px; margin: 0 auto;
  position: relative; z-index: 1;
}

/* Left: info */
.kontakt-info .stitle { margin-bottom: 20px; }
.open-status {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 100px;
  font-size: .85rem; font-weight: 600; margin-bottom: 28px;
}
.open-status.is-open {
  background: rgba(35,120,3,.12); color: var(--green); border: 1px solid rgba(35,120,3,.3);
}
.open-status.is-closed {
  background: rgba(200,30,30,.1); color: #c81e1e; border: 1px solid rgba(200,30,30,.25);
}
.open-status::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
}
.open-status.is-open::before { background: var(--green); animation: pulse 2s ease-in-out infinite; }
.open-status.is-closed::before { background: #c81e1e; }
.kontakt-item {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 28px; padding: 16px; border-radius: var(--radius);
  border: 1px solid transparent; transition: border-color .3s, box-shadow .3s;
}
.kontakt-item:hover { border-color: rgba(35,120,3,.5); box-shadow: 0 0 12px rgba(35,120,3,.15); }
.kontakt-icon {
  font-size: 1.4rem; width: 44px; height: 44px;
  background: var(--green-lt); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}
.kontakt-item h3 {
  font-family: var(--fh); font-size: .9rem; font-weight: 700;
  color: var(--text); margin-bottom: 4px;
}
.kontakt-item a, .kontakt-item p {
  font-size: .9rem; color: var(--muted); text-decoration: none;
  line-height: 1.6;
}
.kontakt-item a:hover { color: var(--green); }
.kontakt-social { display: flex; gap: 16px; margin-top: 12px; }
.kontakt-soc-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .88rem; color: var(--muted); text-decoration: none;
  transition: color .2s;
}
.kontakt-soc-link:hover { color: var(--green); }

/* Right: form */
.kontakt-form-wrap {
  background: var(--dark); border-radius: var(--radius);
  padding: 36px; position: relative;
}
.kontakt-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.5);
  letter-spacing: .5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px; padding: 12px 14px; color: #fff;
  font-family: var(--fb); font-size: .92rem;
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--dark); color: #fff; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-checks {
  display: grid; grid-template-columns: 1fr 1fr; grid-auto-flow: column; grid-template-rows: repeat(4, auto); gap: 8px;
}
.form-check {
  display: flex; align-items: center; gap: 8px;
  font-size: .88rem; color: rgba(255,255,255,.7);
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px; border-radius: 4px;
  border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08);
  accent-color: var(--green); cursor: pointer;
}
.form-submit {
  align-self: flex-start; margin-top: 8px;
}

/* MAP */
.map-section { line-height: 0; }
.map-section iframe { width: 100%; height: 350px; filter: grayscale(0.3); }

@media (max-width: 960px) {
  .kontakt-grid { grid-template-columns: 1fr; gap: 40px; }
}
/* ───────── WHATSAPP BUTTON ───────── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 180;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center;
  justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,.2);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(0,0,0,.25); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

@media (max-width: 600px) {
  .wa-float { bottom: 16px; right: 16px; width: 50px; height: 50px; }
  .wa-float svg { width: 24px; height: 24px; }
}

@media (max-width: 600px) {
  .hero-kontakt { padding: 100px 14px 40px; }
  .kontakt-section { padding: 40px 14px; }
  .kontakt-form-wrap { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 14px; }
  .map-section iframe { height: 250px; }
}
