:root {
  --brand-green-dark: #0b5d2a;
  --brand-green: #0e7a34;
  --brand-green-soft: #eaf5ec;
  --brand-red: #d92323;
  --brand-red-dark: #b71c1c;
  --brand-yellow: #f2c21a;
  --brand-yellow-soft: #fff7da;
  --brand-text: #1e1e1e;
  --brand-text-light: #f8f8f8;
  --brand-muted: #666666;
  --brand-bg: #ffffff;
  --brand-bg-soft: #f7f8f7;
  --brand-border: #e6e6e6;
  --brand-shadow: rgba(0, 0, 0, 0.08);
  --container: 1200px;
  --radius: 16px;
}

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

body {
  margin: 0;
  font-family: Inter, Segoe UI, Arial, sans-serif;
  color: var(--brand-text);
  background: var(--brand-bg);
  line-height: 1.6;
  font-size: 16px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(600px 300px at 8% -5%, rgba(14, 122, 52, 0.08), transparent 70%),
    radial-gradient(500px 260px at 95% 0%, rgba(242, 194, 26, 0.08), transparent 72%);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  z-index: 60;
  background: linear-gradient(90deg, #f2c21a, #d92323, #0e7a34);
  box-shadow: 0 0 14px rgba(217, 35, 35, 0.35);
}

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

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

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(120deg, var(--brand-green-dark), var(--brand-green));
  color: var(--brand-text-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  background: linear-gradient(120deg, rgba(11, 93, 42, 0.92), rgba(14, 122, 52, 0.92));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px -18px rgba(4, 24, 12, 0.65);
}

.site-header.is-scrolled .header-row {
  padding-block: 0.5rem;
}

.site-header .btn-primary {
  animation: ctaPulse 2.8s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(217, 35, 35, 0.45);
  }
  50% {
    box-shadow: 0 0 0 9px rgba(217, 35, 35, 0);
  }
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: padding 0.3s ease;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  height: 52px;
  width: auto;
  display: block;
}

.footer-logo {
  height: 56px;
  margin-bottom: 0.55rem;
}

.menu-toggle {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--brand-text-light);
  border-radius: 10px;
  padding: 0.4rem 0.6rem;
}

.main-menu {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding-bottom: 1rem;
}

.main-menu.is-open {
  display: flex;
}

.main-menu a {
  opacity: 0.95;
  font-size: 0.93rem;
  font-weight: 600;
}

.main-menu a.is-active {
  color: var(--brand-yellow, #f2c21a);
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  padding: 0.82rem 1.15rem;
  font-weight: 600;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.btn-primary {
  background: var(--brand-red);
  color: #fff;
  box-shadow: 0 14px 24px -18px rgba(217, 35, 35, 0.75);
}

.btn-secondary {
  background: var(--brand-yellow);
  color: var(--brand-text);
  box-shadow: 0 14px 24px -20px rgba(242, 194, 26, 0.85);
}

.hero {
  background: linear-gradient(145deg, var(--brand-green-dark), #114f31 55%, #0d3b24);
  color: var(--brand-text-light);
  padding: 4.8rem 0 3.1rem;
  position: relative;
  overflow: hidden;
}

.hero .container {
  width: min(100% - 2rem, 1320px);
}

.hero::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -150px;
  top: -130px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.02) 65%);
  filter: blur(2px);
  animation: heroFloat 9s ease-in-out infinite;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  min-width: 0;
}

.hero-grid > div {
  min-width: 0;
}

.hero-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--brand-yellow);
  font-weight: 700;
}

.hero-localities-marquee {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0 0 0.85rem;
  padding: 0.15rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.hero-localities-marquee .locality-marquee-track {
  display: flex;
  width: max-content;
  animation: localityMarqueeScroll 52s linear infinite;
}

.hero-localities-marquee .marquee-half {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
}

.hero-localities-marquee .locality-marquee-label,
.hero-localities-marquee .locality-marquee-link,
.hero-localities-marquee .locality-marquee-sep {
  font-size: 0.76rem;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  white-space: nowrap;
  flex: 0 0 auto;
}

.hero-localities-marquee .locality-marquee-label {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  margin-right: 0.55rem;
}

.hero-localities-marquee .locality-marquee-link {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}

.hero-localities-marquee .locality-marquee-link:hover,
.hero-localities-marquee .locality-marquee-link:focus-visible {
  color: #fff;
  outline: none;
}

.hero-localities-marquee .locality-marquee-sep {
  color: rgba(255, 255, 255, 0.38);
  font-weight: 400;
  margin: 0 0.55rem;
}

.hero-localities-marquee:hover .locality-marquee-track,
.hero-localities-marquee:focus-within .locality-marquee-track {
  animation-play-state: paused;
}

@keyframes localityMarqueeScroll {
  to {
    transform: translateX(-50%);
  }
}

h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  margin: 0.4rem 0 0.8rem;
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0 0 1rem;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 0.55rem;
  line-height: 1.3;
}

p {
  margin: 0.35rem 0 0.85rem;
  color: #2d332f;
}

.hero p {
  color: rgba(248, 248, 248, 0.95);
}

ul {
  margin: 0.45rem 0 0.25rem;
  padding-left: 1.15rem;
}

li {
  margin-bottom: 0.35rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.hero-trust {
  display: grid;
  gap: 0.55rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.35rem;
}

.hero-trust-pill {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.55rem 0.7rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(248, 248, 248, 0.96);
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.hero-trust-pill:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
}

.hero-trust-icon {
  flex: 0 0 auto;
  width: 1.35rem;
  height: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(242, 194, 26, 0.18);
  color: var(--brand-yellow);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}

.hero-trust-text {
  display: grid;
  gap: 0.08rem;
  min-width: 0;
}

.hero-trust-text strong {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.hero-trust-text small {
  font-size: 0.72rem;
  line-height: 1.25;
  color: rgba(248, 248, 248, 0.78);
}

.main-nav-bar {
  background: var(--brand-yellow-soft);
  border-top: 1px solid #eadfae;
  border-bottom: 1px solid #eadfae;
  padding: 0.55rem 0;
}

.main-nav-list {
  display: grid;
  gap: 0.45rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.main-nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  border: 1px solid #e3d59a;
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand-green-dark);
  text-decoration: none;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.main-nav-link:hover {
  transform: translateY(-1px);
  border-color: #c8b56a;
  box-shadow: 0 10px 18px -16px rgba(56, 45, 8, 0.55);
}

.form-emergency-option {
  display: flex !important;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0 0 0.85rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid #efbbbb;
  background: #fff8f8;
  color: #7a1515;
  font-weight: 600;
}

.form-emergency-option span {
  color: #7a1515;
  font-weight: 600;
}

.card-form .form-emergency-option,
.card-form .form-emergency-option span {
  color: #7a1515;
}

.form-emergency-option input {
  width: auto !important;
  margin-top: 0.15rem;
}

.card-form .form-priority-badge[hidden] {
  display: none !important;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-carousel {
  position: relative;
  aspect-ratio: 16 / 10;
  height: auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 50px -35px rgba(0, 0, 0, 0.55);
}

.hero-carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 27, 15, 0.16), rgba(6, 27, 15, 0.02) 45%, rgba(255, 255, 255, 0.04));
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 1.6s ease;
}

.hero-slide.is-image-fallback {
  object-fit: contain;
  background: rgba(255, 255, 255, 0.06);
  padding: 1rem;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 0.9rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.4rem;
}

.hero-dot {
  appearance: none;
  display: block;
  padding: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero-dot.is-active {
  background: #fff;
}

.section {
  padding: clamp(2.8rem, 6vw, 6rem) 0;
}

.section-soft {
  background: var(--brand-bg-soft);
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: #fff;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 12px 30px -22px var(--brand-shadow);
}

.card-equal {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-equal .link-cta {
  margin-top: auto;
}

.card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.8rem;
  border: 1px solid #e4e9e4;
}

.card-path,
.card-service,
.card-knowledge,
.card-reference {
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.card-path:hover,
.card-service:hover,
.card-knowledge:hover,
.card-reference:hover {
  border-color: #c2d8c6;
  transform: translateY(-2px);
  box-shadow: 0 16px 28px -22px rgba(13, 31, 17, 0.25);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.link-cta {
  color: var(--brand-green);
  font-weight: 700;
  font-size: 0.93rem;
}

.usp {
  background: var(--brand-yellow-soft);
  border-top: 1px solid #f4e4a6;
  border-bottom: 1px solid #f4e4a6;
  padding: 0.8rem 0;
}

.usp-list {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.usp-card {
  display: grid;
  gap: 0.15rem;
  align-content: center;
  justify-items: start;
  min-height: 76px;
  padding: 0.62rem 0.78rem;
  border-radius: 12px;
  border: 1px solid #eadfae;
  background: rgba(255, 255, 255, 0.75);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.usp-card:hover {
  transform: translateY(-1px);
  border-color: #d8c574;
  box-shadow: 0 10px 18px -16px rgba(56, 45, 8, 0.55);
}

.usp-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #d8e5d2;
  color: #0e7a34;
  font-size: 0.78rem;
  margin-bottom: 0.15rem;
}

.usp-title {
  font-weight: 700;
  font-size: 0.94rem;
  line-height: 1.2;
  color: #202420;
}

.usp-sub {
  font-size: 0.8rem;
  color: #4b534b;
}

.badge {
  border: 1px solid var(--brand-border);
  border-radius: 999px;
  background: #fff;
  padding: 0.5rem 0.9rem;
  font-size: 0.95rem;
}

.brand-badge {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.brand-logo-image {
  max-height: 24px;
  width: auto;
  object-fit: contain;
}

.brand-fallback {
  display: none;
  font-size: 0.9rem;
  color: #2f3631;
}

.brand-logo-image.is-image-fallback,
.brand-badge-text .brand-logo-image {
  display: none;
}

.brand-logo-image.is-image-fallback + .brand-fallback,
.brand-badge-text .brand-fallback {
  display: inline;
  font-weight: 700;
}

body.spik-edit-mode .brand-badge {
  justify-content: flex-start;
  gap: 0.65rem;
  padding-right: 2rem;
}

body.spik-edit-mode .brand-logo-slot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 72px;
  min-height: 34px;
  padding: 0.2rem 0.45rem;
  border: 2px dashed #9ed0ad;
  border-radius: 8px;
  background: #fff;
  color: #0b5d2a;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
}

body.spik-edit-mode .brand-logo-slot:hover {
  background: #eaf5ec;
  border-color: #0e7a34;
}

.brands-edit-grid .brand-badge {
  width: 100%;
}

.tag {
  display: inline-block;
  background: var(--brand-green-soft);
  color: var(--brand-green-dark);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
}

.split {
  display: grid;
  gap: 1rem;
}

.fb-box {
  border: 1px dashed #9ab89f;
  border-radius: var(--radius);
  background: #f4faf4;
  padding: 1.2rem;
}

.realizations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin: 0.6rem 0 1rem;
}

.realization-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #d7e3d9;
  cursor: zoom-in;
}

.is-hidden {
  display: none !important;
}

.stars {
  display: inline-flex;
  gap: 2px;
  margin: 0.15rem 0 0.45rem;
  font-size: 1rem;
  line-height: 1;
}

.stars .star {
  color: #d5ddd6;
}

.stars .star.is-filled {
  color: #f2b01a;
}

.google-reviews-summary {
  margin: 0 0 1rem;
  font-size: 1.02rem;
}

.google-review-cta {
  margin-top: 1.1rem;
}

.article-body p {
  margin: 0 0 1.05rem;
  line-height: 1.75;
  font-size: 1.02rem;
}

.article-body p:last-child {
  margin-bottom: 0;
}

.form-feedback {
  display: none;
  margin: 0.1rem 0 0.9rem;
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-feedback.is-success {
  display: block;
  background: #e7f7ec;
  border: 1px solid #9ed0ad;
  color: #10552a;
}

.form-feedback.is-error {
  display: block;
  background: #fdecec;
  border: 1px solid #efbbbb;
  color: #8a1f1f;
}

.form-feedback.is-info {
  display: block;
  background: #eef6ff;
  border: 1px solid #b8d4f5;
  color: #174a7a;
}

.form-success-panel {
  display: block;
  padding: 1rem 1.1rem;
}

.form-error-panel,
.form-info-panel {
  display: block;
  padding: 1rem 1.1rem;
}

.form-success-panel h3,
.form-error-panel h3,
.form-info-panel h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
}

.form-success-lead {
  margin: 0 0 0.55rem;
  font-weight: 700;
}

.form-success-ticket {
  margin: 0 0 0.8rem;
  font-size: 1rem;
}

.form-success-summary {
  display: grid;
  grid-template-columns: minmax(120px, 34%) 1fr;
  gap: 0.35rem 0.8rem;
  margin: 0 0 0.9rem;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.form-success-summary dt {
  font-weight: 700;
  margin: 0;
}

.form-success-summary dd {
  margin: 0;
  white-space: pre-wrap;
}

.form-success-note {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
  font-weight: 500;
}

.card-form .form-feedback.is-success.form-success-panel {
  background: #f7fcf8;
  border: 1px solid #9ed0ad;
  color: #0f3d22;
}

.card-form .form-feedback.is-success.form-success-panel h3,
.card-form .form-feedback.is-success.form-success-panel p,
.card-form .form-feedback.is-success.form-success-panel strong,
.card-form .form-feedback.is-success.form-success-panel dt,
.card-form .form-feedback.is-success.form-success-panel dd {
  color: #0f3d22;
}

.card-form .form-feedback.is-error.form-error-panel {
  background: #fdecec;
  border: 1px solid #efbbbb;
  color: #7a1515;
}

.card-form .form-feedback.is-error.form-error-panel h3,
.card-form .form-feedback.is-error.form-error-panel p,
.card-form .form-feedback.is-error.form-error-panel strong {
  color: #7a1515;
}

.card-form .form-feedback.is-info.form-info-panel {
  background: #eef6ff;
  border: 1px solid #b8d4f5;
  color: #174a7a;
}

.card-form .form-feedback.is-info.form-info-panel p {
  color: #174a7a;
}

.card-form .form-success-summary {
  background: rgba(255, 255, 255, 0.9);
  color: #1e1e1e;
}

form.is-submitting [type="submit"] {
  opacity: 0.75;
  cursor: wait;
}

.subpage-hero-image {
  width: 100%;
  max-height: 280px;
  margin-top: 1rem;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.is-image-fallback {
  display: none !important;
}

.form-wrap {
  display: grid;
  gap: 1.2rem;
}

form {
  display: grid;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.42rem;
  font-size: 0.92rem;
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.75rem;
  border-radius: 10px;
  border: 1px solid #cfd6cf;
  font: inherit;
  background: #fff;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(14, 122, 52, 0.35);
  outline-offset: 1px;
  border-color: #75ab84;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.card-form {
  background: linear-gradient(150deg, #0d5227, #0f6a35 60%, #0d4a26);
  border-color: rgba(255, 255, 255, 0.16);
  color: #f2f8f3;
}

.card-form p {
  color: #f2f8f3;
}

.card-form h2,
.card-form h3 {
  color: #fff;
}

.card-form label {
  color: #eaf5ec;
}

.card-form input,
.card-form textarea,
.card-form select {
  background: #fff;
  color: var(--brand-text);
  border-color: rgba(255, 255, 255, 0.35);
}

.card-form input:focus,
.card-form textarea:focus,
.card-form select:focus {
  outline: 2px solid rgba(242, 194, 26, 0.65);
  border-color: var(--brand-yellow);
}

.card-form input[type="file"] {
  background: rgba(255, 255, 255, 0.92);
}

.card-form .consent span {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

.card-form .btn-primary {
  box-shadow: 0 16px 30px -18px rgba(0, 0, 0, 0.55);
}

.form-priority-badge {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.12rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 224, 130, 0.2);
  color: #ffe082;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.72rem;
  font-weight: 800;
  vertical-align: middle;
}

.card-form .form-feedback.is-success {
  background: #eaf7ee;
  color: #0b5d2a;
}

.card-form .form-feedback.is-error {
  background: #fdecec;
  color: #b71c1c;
}

.contact-card {
  padding: 0;
  overflow: hidden;
}

.contact-card-header {
  background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-green));
  padding: 1.1rem 1.2rem;
  display: flex;
  justify-content: center;
  border-bottom: 3px solid var(--brand-yellow);
}

.contact-card-logo {
  height: 58px;
  width: auto;
}

.contact-card-body {
  padding: 1.2rem;
}

.contact-title {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.contact-legal {
  font-weight: 600;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--brand-muted);
  margin: 0 0 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--brand-border);
}

.contact-lines {
  list-style: none;
  margin: 0 0 0.9rem;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
}

.contact-line a {
  color: var(--brand-text);
  font-weight: 600;
}

.contact-line a:hover {
  color: var(--brand-green);
}

.contact-ico {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 50%;
  background: var(--brand-green-soft);
  border: 1px solid #d8eadc;
}

.contact-region {
  font-size: 0.86rem;
  color: var(--brand-muted);
  margin: 0 0 1rem;
}

.contact-map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--brand-border);
  aspect-ratio: 4 / 3;
  box-shadow: 0 14px 30px -24px rgba(8, 22, 12, 0.5);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.form-hint {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
}

.card-form .form-hint::before {
  content: "✦ ";
  color: var(--brand-yellow);
}

.ocr-status {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  margin-top: 0.35rem;
  line-height: 1.4;
}

.ocr-status.is-info {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.ocr-status.is-success {
  background: #eaf7ee;
  color: #0b5d2a;
}

.ocr-status.is-warn {
  background: var(--brand-yellow-soft);
  color: #7a5c00;
}

input.is-ocr-filled {
  border-color: var(--brand-yellow);
  background: #fffdf2;
}

.form-hint-block {
  display: block;
  margin: -0.35rem 0 0.85rem;
}

.client-type-toggle {
  display: flex;
  gap: 0.25rem;
  flex-wrap: nowrap;
  margin: 0.25rem 0 0.65rem;
  padding: 0.22rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  width: 100%;
  max-width: 26rem;
  grid-column: 1 / -1;
}

.client-type-option {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  gap: 0.45rem;
  min-height: 2.65rem;
  padding: 0.55rem 0.85rem;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.25;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.client-type-option input[type="radio"] {
  width: auto !important;
  min-width: 0;
  margin: 0;
  flex-shrink: 0;
}

.client-type-option:has(input:checked) {
  background: #fff;
  color: var(--brand-green-dark, #0b5d2a);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.14);
}

.client-fields-personal,
.client-fields-company {
  display: contents;
}

.form-install-option {
  display: flex !important;
  align-items: flex-start;
  gap: 0.55rem;
  margin-top: 0.1rem;
  grid-column: 1 / -1;
}

.form-install-option input[type="checkbox"] {
  width: auto !important;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.form-install-option span {
  line-height: 1.45;
}

.card-form .form-install-option,
.card-form .form-install-option span {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

.client-install-fields {
  display: contents;
}

.client-fields-company[hidden],
.client-install-fields[hidden] {
  display: none !important;
}

.file-preview {
  margin-top: 0.55rem;
}

.file-preview img {
  display: block;
  width: 100%;
  max-width: 320px;
  max-height: 220px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.15);
}

.card-form .file-preview img {
  border-color: #d8e3d8;
  background: #f7faf7;
}

.file-preview-name {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--text-muted, #5a665a);
}

.file-preview-meta {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: #d8efe0;
  line-height: 1.45;
}

.card-form .file-preview-meta {
  color: #d8efe0;
}

.file-preview-meta.is-warn {
  color: #ffe082;
}

.consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.consent input {
  width: auto;
  margin-top: 0.25rem;
}

.hidden-hp {
  position: absolute;
  left: -9999px;
}

.floating-contact {
  position: fixed;
  right: 1rem;
  bottom: 1.2rem;
  display: grid;
  gap: 0.45rem;
  z-index: 30;
}

.floating-contact a {
  display: flex;
  align-items: stretch;
  width: 168px;
  height: 44px;
  padding: 0;
  overflow: hidden;
  border: 1px solid #cfdad1;
  border-radius: 999px;
  box-shadow: 0 12px 24px -20px rgba(8, 22, 12, 0.55);
  font-size: 0.84rem;
  font-weight: 700;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-contact a:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px -18px rgba(8, 22, 12, 0.6);
}

.fc-ico {
  flex: 0 0 33.33%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.fc-ico img {
  width: 21px;
  height: 21px;
}

.fc-label {
  flex: 1 1 66.66%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-green-dark));
  color: #fff;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.site-footer {
  background: #122217;
  color: #dfe9df;
  padding: 2.8rem 0 1rem;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: #dfe9df;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer .footer-bottom p {
  color: #a9bcab;
}

.footer-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-bottom {
  margin-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 0.8rem;
  font-size: 0.88rem;
}

.subpage-hero {
  background: linear-gradient(120deg, #0d3d23, #15633a);
  color: #fff;
  padding: 3.2rem 0 2.4rem;
}

.subpage-hero p {
  color: rgba(248, 248, 248, 0.95);
}

.stats {
  background: linear-gradient(120deg, #0d3d23, #116234);
  color: #fff;
  padding: 1.7rem 0;
}

.stats-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  text-align: center;
}

.stat-value {
  display: block;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--brand-yellow);
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
}

.section-note {
  margin: -0.2rem 0 1.1rem;
  font-size: 0.92rem;
  color: var(--brand-muted);
}

.brands-marquee {
  overflow: hidden;
  padding: 0.5rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brands-marquee-strip {
  background: #fff;
  padding: 0.65rem 0 0.75rem;
  border-bottom: 1px solid #e4ece4;
}

.brands-marquee-strip .brands-marquee {
  padding: 0.15rem 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}

.marquee-half {
  display: flex;
  align-items: center;
}

.marquee-half .brand-badge {
  margin-right: 0.9rem;
  white-space: nowrap;
  flex: 0 0 auto;
  min-width: 150px;
}

.brands-marquee:hover .marquee-track,
.brands-marquee:focus-within .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  to {
    transform: translateX(-50%);
  }
}

.steps {
  list-style: none;
  margin: 0.7rem 0 0.2rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: #dbe7dd;
}

.step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  opacity: 0.55;
  transition: opacity 0.35s ease;
}

.step.is-done {
  opacity: 1;
}

.step-num {
  position: relative;
  z-index: 1;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #cfe0d2;
  color: var(--brand-green-dark);
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.step.is-done .step-num {
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: transparent;
  transform: scale(1.06);
}

.step.is-done .step-num::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
}

.realization-thumb,
.card-image,
.subpage-hero-image {
  cursor: zoom-in;
}

body.has-lightbox {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1.2rem;
  background: rgba(8, 16, 11, 0.88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-body {
  margin: 0;
  max-width: min(1100px, 86vw);
  max-height: 84vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 84vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px -40px rgba(0, 0, 0, 0.85);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.lightbox.is-open .lightbox-image {
  transform: scale(1);
}

.lightbox-close,
.lightbox-nav {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.28);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  width: 42px;
  height: 42px;
  font-size: 1.5rem;
  line-height: 1;
}

.lightbox-nav {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  line-height: 1;
}

.back-to-top {
  position: fixed;
  left: 1rem;
  bottom: 1.2rem;
  z-index: 30;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #dbe4dc;
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 24px -18px rgba(8, 22, 12, 0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-2px);
}

.back-to-top img {
  width: 24px;
  height: 24px;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-16px, 14px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::after {
    animation: none;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-slide {
    transition: none;
  }

  .site-header .btn-primary {
    animation: none;
  }

  .brands-marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .marquee-track {
    animation: none;
    width: auto;
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .marquee-half {
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .hero-localities-marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-localities-marquee .locality-marquee-track {
    animation: none;
    width: auto;
    flex-wrap: wrap;
    gap: 0.35rem 0.55rem;
  }

  .hero-localities-marquee .marquee-half {
    flex-wrap: wrap;
    gap: 0.35rem 0.55rem;
  }

  .hero-localities-marquee .locality-marquee-label,
  .hero-localities-marquee .locality-marquee-link,
  .hero-localities-marquee .locality-marquee-sep {
    white-space: normal;
  }

  .step {
    opacity: 1;
  }

  .lightbox,
  .lightbox-image,
  .back-to-top {
    transition: none;
  }
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .main-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.1rem;
    padding-bottom: 0;
  }

  .hero-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 2.2rem;
  }

  .hero-carousel {
    aspect-ratio: 16 / 9;
  }

  .split {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .form-wrap {
    grid-template-columns: 1.2fr 0.8fr;
  }

  form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 0.9rem;
  }

  form label {
    margin-bottom: 0.05rem;
  }

  form label:has(textarea),
  form label:has(input[type="file"]),
  form .consent,
  form .form-emergency-option,
  form .client-type-toggle,
  form .form-install-option,
  form button {
    grid-column: 1 / -1;
  }

  .main-menu .btn {
    margin-left: 0.2rem;
  }
}

@media (max-width: 767px) {
  .hero-trust {
    grid-template-columns: 1fr;
  }

  .main-nav-list {
    grid-template-columns: 1fr;
  }

  .main-nav-link {
    min-height: auto;
    padding: 0.75rem 0.85rem;
  }

  .usp-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-carousel {
    aspect-ratio: 4 / 5;
  }

  .floating-contact {
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.6rem;
    grid-template-columns: repeat(3, 1fr);
  }

  .floating-contact a {
    width: 100%;
    height: 42px;
    border-radius: 12px;
    font-size: 0.78rem;
  }

  .fc-ico {
    flex-basis: 30%;
  }

  .fc-ico img {
    width: 19px;
    height: 19px;
  }

  .stats-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .back-to-top {
    left: 0.6rem;
    bottom: 4.6rem;
    width: 42px;
    height: 42px;
  }

  .lightbox-close {
    top: 0.7rem;
    right: 0.7rem;
  }

  .lightbox-nav {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
  }
}

/* --- Obszar działania (mapa interaktywna) --- */
.service-area-stage {
  position: relative;
  max-width: 980px;
  margin: 0 auto 0.75rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px -28px rgba(0, 0, 0, 0.45);
  border: 1px solid #d8e3d8;
}

.service-area-image {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

.service-area-overlay {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.service-area-overlay .service-area-hotspot {
  pointer-events: auto;
}

.service-area-hotspot {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 2px solid transparent;
  background: transparent;
  border-radius: 999px;
  box-shadow: none;
  cursor: pointer;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
}

.service-area-hotspot:hover,
.service-area-hotspot:focus-visible {
  background: rgba(242, 194, 26, 0.28);
  border-color: rgba(242, 194, 26, 0.85);
  box-shadow: 0 0 0 4px rgba(242, 194, 26, 0.2);
  outline: none;
  z-index: 3;
}

.service-area-hotspot img {
  display: none;
}

.service-area-hotspot.is-hq {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  z-index: 4;
}

.service-area-hotspot.is-hq img {
  display: none;
}

.service-area-hotspot-name {
  display: none;
}

.service-area-note {
  text-align: center;
  font-size: 0.78rem;
  color: #6a7a6a;
  margin: 0 0 1.2rem;
}

.service-area-missing {
  max-width: 980px;
  margin: 0 auto;
  padding: 1.2rem 1.3rem;
}

.service-area-missing code {
  background: #f4f7f4;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}

.service-area-list,
.service-area-localities {
  max-width: 980px;
  margin: 0 auto;
  padding: 1.2rem 1.3rem;
}

.service-area-localities {
  margin-top: 1rem;
}

.service-area-list h2,
.service-area-localities h2 {
  margin-top: 0;
  font-size: 1.15rem;
}

.service-area-links {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.service-area-link {
  display: inline-block;
  border: 1px solid #c8dcc8;
  background: #f7faf7;
  color: #0b5d2a;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

.service-area-link:hover,
.service-area-link:focus-visible {
  background: #e8f3e8;
  outline: none;
}

.service-area-dialog {
  border: 0;
  border-radius: 16px;
  padding: 0;
  max-width: min(420px, calc(100vw - 2rem));
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.45);
}

.service-area-dialog::backdrop {
  background: rgba(10, 20, 10, 0.55);
}

.service-area-dialog-body {
  padding: 1.35rem 1.4rem 1.4rem;
}

.service-area-dialog-close {
  position: absolute;
  top: 0.55rem;
  right: 0.65rem;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: #5a6a5a;
}

.service-area-dialog-lead {
  margin: 0.5rem 0 0.85rem;
  line-height: 1.55;
}

.service-area-dialog-phone {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.service-area-dialog-phone a {
  color: var(--brand-green);
  text-decoration: none;
}

.service-area-dialog-actions {
  display: grid;
  gap: 0.55rem;
}

@media (max-width: 720px) {
  .service-area-hotspot {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
  }

  .service-area-hotspot.is-hq {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }
}

.locality-breadcrumb {
  margin: 0 0 0.65rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
}

.locality-breadcrumb a {
  color: inherit;
}

.locality-page-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.locality-page-card h2 {
  margin-top: 0;
}

.locality-page-lead {
  margin: 0.5rem 0 1rem;
}

.locality-page-phone {
  margin: 0 0 0.75rem;
}

.locality-phone-btn {
  font-size: 1.15rem;
  padding: 0.75rem 1.25rem;
}

.locality-page-note {
  margin: 0;
  font-size: 0.92rem;
  color: var(--brand-muted, #5a6b5f);
}

.locality-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.locality-page-wide {
  grid-column: 1 / -1;
}

.locality-services-list {
  margin: 0.5rem 0 1rem;
  padding-left: 1.2rem;
}

@media (max-width: 720px) {
  .locality-page-grid {
    grid-template-columns: 1fr;
  }
}

/* Ankieta satysfakcji (/ankiety/) */
.survey-form-card .form-hint-block {
  margin: -0.25rem 0 1rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
}

.survey-app-hint {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.survey-form-app #survey-identity-fields {
  display: none;
}

.survey-question {
  margin: 1.35rem 0 1.5rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.survey-question-label {
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.65rem;
  line-height: 1.35;
}

.survey-required {
  color: var(--brand-yellow);
}

.survey-stars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.survey-star-option {
  position: relative;
  margin: 0;
}

.survey-star-option input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.survey-star-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.65rem;
  min-height: 2.65rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.survey-star-option:hover .survey-star-btn,
.survey-star-option input:focus-visible + .survey-star-btn {
  color: var(--brand-yellow);
  border-color: rgba(242, 194, 26, 0.65);
  background: rgba(255, 255, 255, 0.14);
}

.survey-star-option input:checked + .survey-star-btn {
  color: var(--brand-yellow);
  border-color: var(--brand-yellow);
  background: rgba(242, 194, 26, 0.18);
  box-shadow: 0 0 0 2px rgba(242, 194, 26, 0.25);
  transform: scale(1.04);
}

.survey-scale-hint {
  margin-top: 0.45rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.68);
}

.survey-thanks h2 {
  margin-top: 0;
}

.survey-thanks-lead {
  font-size: 1.05rem;
}

.survey-google-btn {
  margin-top: 0.35rem;
}

.survey-thanks-back {
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.survey-thanks-back .link-cta {
  color: #fff;
}

.survey-captcha {
  margin: 1.1rem 0 0.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.survey-captcha-field {
  display: grid;
  gap: 0.55rem;
  margin: 0;
}

.survey-captcha-label {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
}

.survey-captcha-input {
  width: 100%;
  max-width: 7.5rem;
  margin: 0;
  border-radius: 10px;
}

.survey-captcha-hint {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}

.survey-captcha-hint::before {
  content: "✦ ";
  color: var(--brand-yellow);
}

@media (max-width: 640px) {
  .survey-stars {
    gap: 0.35rem;
  }

  .survey-star-btn {
    min-width: 2.35rem;
    min-height: 2.35rem;
    padding: 0.3rem 0.45rem;
    font-size: 0.85rem;
  }
}

/* Zaproszenie do ankiety (strona główna) */
.survey-invite {
  margin-top: 2.25rem;
}

.survey-invite-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 1.85rem 2rem;
  text-align: center;
  border-radius: 18px;
  border: 1px solid #c2d8c6;
  background: linear-gradient(145deg, #f8fbf9 0%, #edf6ef 55%, #e6f1e9 100%);
  box-shadow: 0 18px 36px -28px rgba(13, 74, 38, 0.35);
}

.survey-invite-kicker {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-green);
}

.survey-invite-title {
  margin: 0.55rem 0 0.75rem;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  line-height: 1.25;
  color: var(--brand-text);
}

.survey-invite-text {
  margin: 0 auto 1.25rem;
  max-width: 38rem;
  color: #4a5a4d;
  line-height: 1.55;
}

.survey-invite-btn {
  min-width: min(100%, 18rem);
}

@media (max-width: 640px) {
  .survey-invite-inner {
    padding: 1.35rem 1.1rem;
  }
}

/* Przycisk i baner aplikacji Mój kocioł */
.btn-app-download {
  background: linear-gradient(135deg, #f2c21a 0%, #e6b800 100%);
  color: #1a1a1a;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 700;
  box-shadow: 0 10px 24px -14px rgba(242, 194, 26, 0.8);
}

.btn-app-download:hover {
  background: linear-gradient(135deg, #ffd84a 0%, #f2c21a 100%);
  color: #111;
  transform: translateY(-1px);
}

.btn-app-download-lg {
  min-width: min(100%, 20rem);
  font-size: 1.02rem;
  padding: 0.85rem 1.35rem;
}

.app-home-promo {
  background: linear-gradient(135deg, #0d3d23 0%, #116234 48%, #0e7a34 100%);
  color: #fff;
  padding: 2.6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.app-home-promo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.app-home-promo-kicker {
  margin: 0 0 0.55rem;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-yellow);
}

.app-home-promo h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.2;
}

.app-home-promo-copy > p {
  margin: 0 0 1rem;
  color: rgba(248, 248, 248, 0.94);
  line-height: 1.55;
  max-width: 40rem;
}

.app-home-promo-trust {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.app-home-promo-trust li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.92rem;
  color: rgba(248, 248, 248, 0.9);
}

.app-home-promo-trust span {
  color: var(--brand-yellow);
  font-weight: 700;
}

.app-home-promo-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn-on-green {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-on-green:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.app-home-promo-visual {
  display: flex;
  justify-content: center;
}

.app-home-promo-phone {
  width: min(100%, 280px);
  padding: 0.65rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 22px 44px -28px rgba(0, 0, 0, 0.45);
}

.app-home-promo-phone img {
  width: 100%;
  border-radius: 20px;
}

@media (max-width: 860px) {
  .app-home-promo-grid {
    grid-template-columns: 1fr;
  }

  .app-home-promo-visual {
    order: -1;
  }

  .app-home-promo-phone {
    width: min(100%, 220px);
  }
}

@media (max-width: 640px) {
  .app-home-promo-ctas .btn {
    width: 100%;
  }
}

