/* ─── SHARED ─────────────────────────────────────────────────── */
.section { padding: var(--sec-y) var(--px-lg); }
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.sec-desc {
  font-size: .92rem;
  color: var(--gray);
  font-weight: 400;
  line-height: 1.7;
  max-width: 360px;
}

/* ─── BOOTSTRAP OVERRIDES ─────────────────────────────────────── */
.btn-success,
.btn-success:focus,
.btn-success:active {
  background-color: var(--green) !important;
  border-color: var(--green) !important;
  color: var(--white) !important;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: -.01em;
  border-radius: 8px;
  padding: .65rem 1.6rem;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.btn-success:hover {
  background-color: var(--green-mid) !important;
  border-color: var(--green-mid) !important;
  box-shadow: var(--shadow-green) !important;
  transform: translateY(-1px);
}
.card { border-radius: var(--radius) !important; }

/* ─── PRODUCTS ───────────────────────────────────────────────── */
.products { background: var(--off-white); }
.prod-section-title {
  margin-bottom: .4rem;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.prod-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition-sl), box-shadow var(--transition-sl);
  -webkit-tap-highlight-color: transparent;
}
.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.prod-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 5;
  background: var(--green);
  color: var(--white);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .26rem .8rem;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(26,71,49,.30);
}
.prod-img-wrap {
  overflow: hidden;
  height: 240px;
  background: var(--green-mist);
  position: relative;
}
.prod-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(237,247,241,.6) 100%);
  pointer-events: none;
}
.prod-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.prod-card:hover .prod-img-wrap img { transform: scale(1.05); }
.prod-body {
  padding: 1.6rem 1.8rem 2rem;
}
.prod-cat {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: .6rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.prod-cat::before {
  content: '';
  width: 18px; height: 1.5px;
  background: var(--green-mid);
  flex-shrink: 0;
}
.prod-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: .6rem;
}
.prod-desc {
  font-size: .87rem;
  color: var(--gray);
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 1.4rem;
}
.prod-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.8rem;
}
.prod-feat {
  font-size: .83rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: .65rem;
  line-height: 1.4;
}
.feat-check {
  width: 18px; height: 18px;
  flex-shrink: 0;
  background: var(--green-mist);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green-pale);
}
.feat-check svg {
  width: 9px; height: 9px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.btn-prod {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: .9rem 1.6rem;
  min-height: 52px;
  background: var(--green);
  color: var(--white);
  border-radius: 10px;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  text-decoration: none;
}
.btn-prod:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
  color: var(--white);
}
.btn-prod svg {
  width: 15px; height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--transition);
}
.btn-prod:hover svg { transform: translateX(3px); }

/* ─── CLAIMS / VERSPRECHEN ───────────────────────────────────── */
.claims {
  background: var(--green-dark);
  padding: 0 var(--px-lg);
}
.claims-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.claim-item {
  padding: 2.8rem 2rem;
  border-right: 1px solid rgba(255,255,255,.08);
}
.claim-item:last-child { border-right: none; }
.claim-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.claim-icon svg {
  width: 20px; height: 20px;
  stroke: var(--green-pale);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.claim-title {
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .4rem;
  letter-spacing: -.01em;
}
.claim-text {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  font-weight: 400;
}

/* ─── USP / FEATURES ─────────────────────────────────────────── */
.features { background: var(--white); border-top: 1px solid var(--line); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.usp-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 2rem 1.8rem;
  background: var(--white);
  transition: background var(--transition);
}
.usp-item:hover { background: var(--off-white); }
.usp-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  background: var(--green-mist);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green-pale);
}
.usp-icon svg {
  width: 20px; height: 20px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.usp-title {
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: .3rem;
  letter-spacing: -.01em;
}
.usp-text {
  font-size: .82rem;
  color: var(--gray);
  line-height: 1.65;
  font-weight: 400;
}

/* ─── WARUM WIR ──────────────────────────────────────────────── */
.why-us { background: var(--off-white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  border: 1px solid var(--line);
  transition: transform var(--transition-sl), box-shadow var(--transition-sl);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  width: 48px; height: 48px;
  background: var(--green-mist);
  border-radius: 12px;
  border: 1px solid var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
}
.why-icon svg {
  width: 22px; height: 22px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-num {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-pale);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: .7rem;
}
.why-title {
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: .4rem;
  letter-spacing: -.01em;
}
.why-text {
  font-size: .83rem;
  color: var(--gray);
  line-height: 1.7;
  font-weight: 400;
}

/* ─── CTA BAR ────────────────────────────────────────────────── */
.cta-bar {
  background: linear-gradient(135deg, var(--green-dark) 0%, #1a4731 100%);
  padding: 4rem var(--px-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-bar::before {
  content: '';
  position: absolute;
  top: -40%; right: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(76,175,125,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-bar-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-pale);
  margin-bottom: .5rem;
}
.cta-bar-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.03em;
}
.cta-bar-title em { font-style: normal; color: var(--green-pale); }
.cta-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-bar-contact {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  font-weight: 500;
  transition: color var(--transition);
}
.cta-bar-contact:hover { color: var(--white); }
.cta-bar-contact svg {
  width: 16px; height: 16px;
  stroke: var(--green-pale);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.btn-cta-bar {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  color: var(--green-dark);
  padding: .9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: -.01em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-cta-bar:hover {
  background: var(--green-pale);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,.15);
  color: var(--green-dark);
}

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials { background: var(--white); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testi-card {
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: box-shadow var(--transition-sl), transform var(--transition-sl);
  position: relative;
}
.testi-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 1.2rem; right: 1.6rem;
  font-size: 4rem;
  line-height: 1;
  color: var(--green-pale);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
}
.testi-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}
.testi-stars svg {
  width: 14px; height: 14px;
  fill: #f59e0b;
  stroke: none;
}
.testi-quote {
  font-size: .9rem;
  color: var(--charcoal);
  line-height: 1.8;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 1.3rem;
}
.testi-author {
  font-size: .75rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -.01em;
}
.testi-location {
  font-size: .72rem;
  color: var(--gray-lt);
  font-weight: 400;
  margin-top: .1rem;
}
.testi-verified {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .65rem;
  color: var(--green-mid);
  font-weight: 600;
  margin-top: .6rem;
  letter-spacing: .04em;
}
.testi-verified svg {
  width: 12px; height: 12px;
  stroke: var(--green-mid);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── PROCESS ────────────────────────────────────────────────── */
.process { background: var(--white); border-top: 1px solid var(--line); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.process-step {
  padding: 2.8rem 2.4rem;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background var(--transition);
}
.process-step:hover { background: var(--off-white); }
.process-step:last-child { border-right: none; }
.step-num {
  font-family: 'Inter', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--green-pale);
  line-height: 1;
  letter-spacing: -.05em;
  margin-bottom: 1rem;
}
.step-icon {
  width: 44px; height: 44px;
  background: var(--green-mist);
  border-radius: 12px;
  border: 1px solid var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.step-icon svg {
  width: 20px; height: 20px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.step-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: .55rem;
  letter-spacing: -.02em;
}
.step-text {
  font-size: .84rem;
  color: var(--gray);
  line-height: 1.7;
  font-weight: 400;
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq { background: var(--off-white); }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: .97rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -.01em;
  transition: color var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.faq-q:hover { color: var(--green); }
.faq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  stroke: var(--gray-lt);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  transition: transform var(--transition-sl), stroke var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  stroke: var(--green);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a-inner {
  padding: 0 0 1.5rem;
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.8;
  font-weight: 400;
}

/* ─── CONTACT ────────────────────────────────────────────────── */
.contact { background: var(--white); border-top: 1px solid var(--line); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-info-lead {
  font-size: .95rem;
  color: var(--gray);
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 2rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cd-row {
  display: flex;
  gap: .9rem;
  align-items: center;
}
.cd-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  background: var(--green-mist);
  border-radius: 10px;
  border: 1px solid var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cd-icon svg {
  width: 15px; height: 15px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cd-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-mid);
  display: block;
  margin-bottom: .1rem;
}
.cd-val {
  font-size: .88rem;
  color: var(--charcoal);
  font-weight: 500;
}
.contact-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}
.c-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--green-mist);
  border: 1px solid var(--green-pale);
  color: var(--green);
  font-size: .7rem;
  font-weight: 600;
  padding: .32rem .9rem;
  border-radius: 50px;
  letter-spacing: .02em;
}
.c-trust-pill svg {
  width: 11px; height: 11px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Form */
.form-card {
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: var(--shadow-sm);
}
.form-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -.03em;
  margin-bottom: .25rem;
}
.form-sub {
  font-size: .8rem;
  color: var(--gray);
  font-weight: 400;
  margin-bottom: 1.8rem;
}
.form-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: .75rem;
}
.form-1col { margin-bottom: .75rem; }
.field {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.field label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gray);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .8rem 1rem;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green-lt);
  box-shadow: 0 0 0 3px rgba(76,175,125,.12);
}
.field textarea {
  min-height: 100px;
  resize: vertical;
}
.submit-btn {
  width: 100%;
  margin-top: .75rem;
  padding: .95rem 1.2rem;
  min-height: 54px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.submit-btn:hover {
  background: var(--green-mid);
  box-shadow: var(--shadow-green);
  transform: translateY(-2px);
}
.submit-btn:disabled { opacity: .6; cursor: default; transform: none; }
.success-msg {
  display: none;
  margin-top: .9rem;
  padding: .9rem 1.1rem;
  background: var(--green-mist);
  border: 1px solid var(--green-pale);
  border-radius: 8px;
  font-size: .86rem;
  font-weight: 600;
  color: var(--green);
}
.error-msg {
  display: none;
  margin-top: .9rem;
  padding: .9rem 1.1rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  font-size: .86rem;
  font-weight: 600;
  color: #c0392b;
}

/* ─── FLOATING WHATSAPP ─────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.40);
  transition: transform var(--transition), box-shadow var(--transition);
  -webkit-tap-highlight-color: transparent;
  animation: wa-bounce 3s ease infinite 2s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37,211,102,.50);
}
.wa-float svg {
  width: 28px; height: 28px;
  fill: #fff;
}
@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}
.wa-float:hover { animation: none; }

/* ─── STICKY MOBILE CTA ─────────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 450;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: .9rem var(--px) calc(.9rem + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px rgba(0,0,0,.08);
}
.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--green);
  color: var(--white);
  border-radius: 10px;
  padding: .95rem;
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: -.01em;
  min-height: 52px;
  transition: background var(--transition);
}
.sticky-cta a:hover { background: var(--green-mid); }

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--charcoal);
  padding: 64px var(--px-lg) 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--white);
  display: block;
  margin-bottom: .7rem;
  letter-spacing: -.02em;
}
.footer-logo span { color: var(--green-lt); }
.footer-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.32);
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 1.2rem;
}
.swiss-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px;
  padding: .38rem .9rem;
  font-size: .65rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .07em;
  text-transform: uppercase;
  font-weight: 600;
}
footer h5 {
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 1rem;
}
footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
footer ul a {
  color: rgba(255,255,255,.48);
  font-size: .84rem;
  font-weight: 400;
  transition: color var(--transition);
}
footer ul a:hover { color: var(--white); }
.footer-bar {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.1rem var(--px-lg) calc(1.1rem + env(safe-area-inset-bottom));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bar p {
  font-size: .73rem;
  color: rgba(255,255,255,.22);
}
.footer-bar a { transition: color var(--transition); }
.footer-bar a:hover { color: rgba(255,255,255,.6); }

/* ─── RESPONSIVE – TABLET ≤ 960px ──────────────────────────── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .burger    { display: flex; }

  .claims-grid { grid-template-columns: repeat(2, 1fr); }
  .claim-item:nth-child(2) { border-right: none; }
  .claim-item:nth-child(1),
  .claim-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.08); }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }

  .testi-grid { grid-template-columns: 1fr; gap: 1.2rem; }

  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--line); padding: 2.2rem 2rem; }
  .process-step:last-child { border-bottom: none; }

  .cta-bar { flex-direction: column; align-items: flex-start; padding: 3rem var(--px); }
  .cta-bar-right { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .contact-grid { grid-template-columns: 1fr; gap: 2.8rem; }

  footer { grid-template-columns: 1fr; gap: 2rem; padding: 48px var(--px) 32px; }
  .footer-bar { flex-direction: column; gap: .4rem; text-align: center; padding: 1rem var(--px); }

  .section { padding: 72px var(--px); }
  .sec-head { flex-direction: column; align-items: flex-start; gap: .75rem; margin-bottom: 2.8rem; }
  .sec-desc { max-width: 100%; }

  .sticky-cta { display: block; }
  .wa-float { bottom: 88px; }
}

/* ─── RESPONSIVE – PHONE ≤ 640px ───────────────────────────── */
@media (max-width: 640px) {
  :root {
    --px: 16px;
    --sec-y: 60px;
    --nav-h: 60px;
  }

  .products-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .prod-img-wrap { height: 220px; }
  .prod-body { padding: 1.5rem 1.4rem 1.8rem; }

  .claims-grid { grid-template-columns: 1fr; }
  .claim-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.08); padding: 1.8rem var(--px); }
  .claim-item:last-child { border-bottom: none; }

  .features-grid { grid-template-columns: 1fr; }
  .usp-item { border-right: none !important; border-bottom: 1px solid var(--line); }
  .usp-item:last-child { border-bottom: none; }

  .why-grid { grid-template-columns: 1fr; gap: 1rem; }

  .testi-card { padding: 1.6rem 1.4rem; }
  .testi-quote { font-size: .86rem; }

  .step-num { font-size: 2.8rem; }

  .faq-q { font-size: .92rem; padding: 1.2rem 0; }

  .form-2col { grid-template-columns: 1fr; gap: .65rem; }
  .form-card { padding: 1.6rem 1.2rem; }

  .section { padding: 52px var(--px); }

  footer { padding: 48px var(--px) 32px; gap: 1.8rem; }

  .wa-float { bottom: 84px; right: 16px; width: 50px; height: 50px; }
  .wa-float svg { width: 24px; height: 24px; }
}

/* ─── SMALL PHONE ≤ 390px ───────────────────────────────────── */
@media (max-width: 390px) {
  :root { --px: 14px; }
}
