/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --card: #161616;
  --green: #3dba4e;
  --green-bright: #5ee870;
  --green-dark: #267832;
  --red: #d72b2b;
  --white: #f5f5f5;
  --gray: #888888;
  --border: rgba(61,186,78,0.18);
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* ===== INTRO ===== */
.intro {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.intro.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.intro-inner {
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
  text-align: center;
}
.intro-logo {
  width: 220px; height: auto; object-fit: contain;
  animation: introPop .7s cubic-bezier(.34,1.56,.64,1) both;
  border-radius: 8px;
}
@keyframes introPop {
  from { opacity: 0; transform: scale(.6); }
  to   { opacity: 1; transform: scale(1); }
}
.intro-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px; overflow: hidden;
}
.intro-fill {
  height: 100%; width: 0;
  background: var(--green);
  border-radius: 99px;
  animation: fillBar 1.8s ease forwards .3s;
}
@keyframes fillBar {
  from { width: 0; }
  to   { width: 100%; }
}
.intro-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .85rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray);
  animation: fadeIn .5s ease both .2s;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px) scale(.9);
  transition: opacity .8s ease .2s, transform .8s ease .2s;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.6); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
  padding: 0 5vw;
  gap: 1.5rem;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 50px; width: auto; object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(61,186,78,.3));
  transition: filter .2s;
}
.nav-logo-img:hover { filter: drop-shadow(0 0 14px rgba(61,186,78,.6)); }

.nav-links {
  display: flex; gap: 2rem; list-style: none; margin-left: auto;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: .95rem; letter-spacing: 1px;
  color: var(--gray); text-decoration: none;
  text-transform: uppercase; transition: color .2s;
}
.nav-links a:hover { color: var(--green); }

.nav-cta-wrap { position: relative; }
.nav-cta {
  background: var(--green); color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: .9rem; letter-spacing: 1px;
  text-transform: uppercase;
  padding: .5rem 1.2rem; border-radius: 4px;
  border: none; cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--green-bright); }

.nav-dropdown {
  display: none;
  position: absolute; top: calc(100% + 10px); right: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 1rem;
  min-width: 260px;
  box-shadow: 0 12px 40px rgba(0,0,0,.7);
  z-index: 600;
}
.nav-dropdown.open { display: block; }
.nav-drop-label {
  font-size: .7rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray); margin-bottom: .8rem; font-weight: 600;
}
.nav-drop-person {
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-drop-person:last-child { border-bottom: none; padding-bottom: 0; }
.drop-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem; text-transform: uppercase;
  min-width: 70px; color: var(--white);
}
.drop-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: .82rem; letter-spacing: .5px;
  text-decoration: none; padding: .3rem .7rem; border-radius: 4px;
  transition: all .2s; white-space: nowrap;
}
.drop-btn.call { background: rgba(61,186,78,0.15); color: var(--green); border: 1px solid rgba(61,186,78,0.3); }
.drop-btn.call:hover { background: var(--green); color: var(--black); }
.drop-btn.whatsapp { background: rgba(37,211,102,0.12); color: #25d366; border: 1px solid rgba(37,211,102,0.3); }
.drop-btn.whatsapp:hover { background: #25d366; color: #fff; }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all .3s;
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none; flex-direction: column; padding: 1rem 5vw 1.5rem;
  border-top: 1px solid var(--border);
  gap: .2rem;
}
.mobile-menu.open { display: flex; }
.mob-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 1.1rem; letter-spacing: 1px;
  text-transform: uppercase; color: var(--gray);
  text-decoration: none; padding: .6rem 0;
  transition: color .2s;
}
.mob-link:hover { color: var(--green); }
.mob-contact-section { margin-top: .8rem; display: flex; flex-direction: column; gap: .6rem; }
.mob-contact-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: .95rem; text-transform: uppercase;
  letter-spacing: .5px; color: var(--white);
}
.mob-contact-btns { display: flex; gap: .6rem; }
.mob-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: .9rem; letter-spacing: .5px;
  text-decoration: none; padding: .5rem 1rem; border-radius: 5px;
  transition: all .2s;
}
.mob-btn.call { background: rgba(61,186,78,0.15); color: var(--green); border: 1px solid rgba(61,186,78,0.3); }
.mob-btn.call:hover { background: var(--green); color: var(--black); }
.mob-btn.whatsapp { background: rgba(37,211,102,0.12); color: #25d366; border: 1px solid rgba(37,211,102,0.3); }
.mob-btn.whatsapp:hover { background: #25d366; color: #fff; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex; align-items: center;
  padding-left: 5vw; padding-right: 5vw;
  position: relative; overflow: hidden;
  gap: 2rem;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 65% 60% at 75% 50%, rgba(61,186,78,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(61,186,78,0.05) 0%, transparent 70%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(61,186,78,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61,186,78,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
  0%   { background-position: 0 0; }
  100% { background-position: 50px 50px; }
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 620px; flex: 1;
  padding: 5rem 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(61,186,78,0.1);
  border: 1px solid rgba(61,186,78,0.3);
  border-radius: 100px;
  padding: .3rem 1rem;
  font-size: .78rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 1.5rem;
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  animation: pulse 1.6s ease-in-out infinite;
  display: inline-block;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(1.5); }
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  line-height: .95; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 .green { color: var(--green); }

.hero-sub {
  font-size: 1.05rem; color: var(--gray); line-height: 1.7;
  max-width: 500px; margin-bottom: 1.8rem;
}
.hero-sub strong { color: var(--white); }

.hero-pills {
  display: flex; gap: .7rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.pill {
  display: flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px; padding: .4rem .9rem;
  font-size: .85rem; font-weight: 500;
}

.hero-actions {
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
}
.btn-primary {
  background: var(--green); color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.05rem; letter-spacing: 1px;
  text-transform: uppercase;
  padding: .85rem 2rem; border-radius: 4px;
  border: none; cursor: pointer; transition: all .2s;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61,186,78,0.35);
}
.btn-secondary {
  color: var(--white); font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 1rem; letter-spacing: 1px;
  text-decoration: none; display: flex; align-items: center; gap: .5rem;
  transition: color .2s;
}
.btn-secondary:hover { color: var(--green); }

.hero-logo-wrap {
  position: relative; z-index: 1; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
}
/* Light orb behind the logo */
.hero-logo-wrap::before {
  content: '';
  position: absolute;
  width: 85%; height: 85%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(61,186,78,0.28) 0%,
    rgba(61,186,78,0.14) 35%,
    rgba(61,186,78,0.05) 65%,
    transparent 100%
  );
  filter: blur(18px);
  animation: glowPulse 4s ease-in-out infinite;
  z-index: 0;
}
/* Secondary warm light ring */
.hero-logo-wrap::after {
  content: '';
  position: absolute;
  width: 60%; height: 60%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(180, 255, 140, 0.18) 0%,
    rgba(61,186,78,0.08) 50%,
    transparent 100%
  );
  filter: blur(10px);
  animation: glowPulse 4s ease-in-out infinite reverse;
  z-index: 0;
}
@keyframes glowPulse {
  0%,100% { opacity: .7; transform: scale(1); }
  50%      { opacity: 1;  transform: scale(1.12); }
}
.hero-logo-big {
  width: clamp(220px, 28vw, 400px);
  height: auto; object-fit: contain;
  position: relative; z-index: 1;
  filter:
    drop-shadow(0 0 18px rgba(61,186,78,0.55))
    drop-shadow(0 0 40px rgba(61,186,78,0.25))
    drop-shadow(0 8px 24px rgba(0,0,0,0.6));
  animation: floatLogo 4s ease-in-out infinite;
}
@keyframes floatLogo {
  0%,100% { transform: translateY(0);    filter: drop-shadow(0 0 18px rgba(61,186,78,0.55)) drop-shadow(0 0 40px rgba(61,186,78,0.25)) drop-shadow(0 8px 24px rgba(0,0,0,.6)); }
  50%     { transform: translateY(-14px); filter: drop-shadow(0 0 28px rgba(61,186,78,0.80)) drop-shadow(0 0 60px rgba(61,186,78,0.40)) drop-shadow(0 16px 30px rgba(0,0,0,.5)); }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--green);
  display: flex; justify-content: center;
  overflow: hidden;
}
.stat-item {
  flex: 1; max-width: 260px;
  text-align: center; padding: 1.4rem 1rem;
  border-right: 1px solid rgba(0,0,0,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 2.2rem; color: var(--black);
  line-height: 1;
}
.stat-label {
  font-size: .78rem; font-weight: 600; color: rgba(0,0,0,0.6);
  letter-spacing: 1px; text-transform: uppercase; margin-top: .2rem;
}

/* ===== SECTIONS ===== */
.container { max-width: 1200px; margin: 0 auto; }
.section-dark { background: var(--dark); padding: 6rem 5vw; }
.section-black { background: var(--black); padding: 6rem 5vw; }

.section-head { margin-bottom: 3rem; }
.section-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: .78rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--green);
  margin-bottom: .7rem;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase; line-height: 1;
  margin-bottom: 1rem;
}
.section-desc { color: var(--gray); line-height: 1.7; max-width: 520px; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px; padding: 2rem;
  position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.service-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2.6rem; margin-bottom: 1rem; display: block; }
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.35rem; text-transform: uppercase;
  letter-spacing: .5px; margin-bottom: .6rem;
}
.service-card p { color: var(--gray); font-size: .9rem; line-height: 1.6; }
.service-badge {
  display: inline-block; margin-top: 1rem;
  background: rgba(61,186,78,0.1); border: 1px solid rgba(61,186,78,0.25);
  color: var(--green); font-size: .72rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  padding: .25rem .7rem; border-radius: 3px;
}

/* ===== APARATURA ===== */
.aparatura-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.aparat-item {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 6px; padding: 1.5rem;
  display: flex; align-items: flex-start; gap: 1rem;
  transition: border-color .25s, transform .25s;
}
.aparat-item:hover {
  border-color: rgba(61,186,78,0.4);
  transform: translateY(-2px);
}
.aparat-ico {
  width: 48px; height: 48px; border-radius: 8px;
  background: rgba(61,186,78,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
}
.aparat-info h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem; text-transform: uppercase;
  letter-spacing: .5px; margin-bottom: .3rem;
}
.aparat-info p { font-size: .82rem; color: var(--gray); line-height: 1.5; }

/* ===== DE CE NOI ===== */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.why-list { display: flex; flex-direction: column; gap: 1.5rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-check {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(61,186,78,0.1);
  border: 1.5px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: .95rem; flex-shrink: 0;
  margin-top: .1rem;
}
.why-text h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.1rem; text-transform: uppercase;
  margin-bottom: .3rem;
}
.why-text p { color: var(--gray); font-size: .9rem; line-height: 1.6; }

.why-visual {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 2rem;
}
.cert-badge {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(61,186,78,0.06);
  border: 1px solid rgba(61,186,78,0.15);
  border-radius: 8px; margin-bottom: .8rem;
}
.cert-badge:last-child { margin-bottom: 0; }
.cert-ico { font-size: 1.8rem; flex-shrink: 0; }
.cert-text strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: .95rem; text-transform: uppercase;
  margin-bottom: .15rem;
}
.cert-text span { font-size: .82rem; color: var(--gray); }

/* ===== CONTACT ===== */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 4rem; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-ico {
  width: 44px; height: 44px; border-radius: 8px;
  background: rgba(61,186,78,0.1);
  border: 1px solid rgba(61,186,78,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0; margin-top: .2rem;
}
.contact-detail strong {
  display: block; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: .4rem;
}
.contact-detail span { font-size: .9rem; color: var(--gray); }
.contact-btns { display: flex; gap: .5rem; flex-wrap: wrap; }
.cbtn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: .82rem; letter-spacing: .5px;
  text-decoration: none; padding: .35rem .8rem; border-radius: 4px;
  transition: all .2s; white-space: nowrap;
}
.cbtn.call { background: rgba(61,186,78,0.12); color: var(--green); border: 1px solid rgba(61,186,78,0.25); }
.cbtn.call:hover { background: var(--green); color: var(--black); }
.cbtn.whatsapp { background: rgba(37,211,102,0.1); color: #25d366; border: 1px solid rgba(37,211,102,0.25); }
.cbtn.whatsapp:hover { background: #25d366; color: #fff; }
.contact-logo-wrap { margin-top: .5rem; }
.contact-logo {
  width: 160px; height: auto; object-fit: contain; border-radius: 8px;
  opacity: .85;
}

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-field label {
  font-size: .75rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gray);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 5px; padding: .75rem 1rem;
  color: var(--white); font-family: 'Barlow', sans-serif; font-size: .9rem;
  outline: none; transition: border-color .2s;
  resize: none; appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--green); }
.form-field select option { background: #1a1a1a; color: var(--white); }
.form-submit {
  background: var(--green); color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem; letter-spacing: 1.5px;
  text-transform: uppercase; padding: .9rem 2rem;
  border: none; border-radius: 5px; cursor: pointer;
  transition: all .2s; width: 100%;
}
.form-submit:hover { background: var(--green-bright); transform: translateY(-2px); }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.8rem 5vw;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  max-width: 1200px; margin: 0 auto;
}
.footer-logo-img { height: 44px; width: auto; object-fit: contain; border-radius: 4px; }
.footer-copy { font-size: .82rem; color: var(--gray); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: .82rem; color: var(--gray); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--green); }

/* ===== FLOATING BUTTONS ===== */
.floating-wrap {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 400;
  display: flex; flex-direction: column; align-items: flex-end; gap: .7rem;
}
.floating-group {
  display: flex; flex-direction: column; gap: .6rem;
  opacity: 0; pointer-events: none;
  transform: translateY(10px) scale(.95);
  transition: opacity .25s, transform .25s;
}
.floating-group.open {
  opacity: 1; pointer-events: all;
  transform: translateY(0) scale(1);
}
.float-person {
  display: flex; align-items: center; gap: .5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 30px; padding: .4rem .7rem .4rem 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.5);
}
.float-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: .9rem; text-transform: uppercase;
  color: var(--white); letter-spacing: .5px; min-width: 58px;
}
.float-btn {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  flex-shrink: 0;
}
.float-btn.call { background: var(--green); box-shadow: 0 2px 10px rgba(61,186,78,.4); }
.float-btn.call:hover { transform: scale(1.15); box-shadow: 0 4px 16px rgba(61,186,78,.6); }
.float-btn.wa { background: #25d366; box-shadow: 0 2px 10px rgba(37,211,102,.4); }
.float-btn.wa:hover { transform: scale(1.15); box-shadow: 0 4px 16px rgba(37,211,102,.6); }
.float-toggle {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--green); color: var(--black);
  border: none; cursor: pointer; font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(61,186,78,.55);
  transition: transform .3s, background .2s;
  animation: floatBob 2.5s ease-in-out infinite;
}
.float-toggle.open { animation: none; background: var(--green-bright); transform: rotate(135deg); }
.float-toggle:hover { animation: none; transform: scale(1.1); }
@keyframes floatBob {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero { flex-direction: column; padding-top: calc(var(--nav-h) + 2rem); text-align: center; }
  .hero-content { padding: 2rem 0 1rem; }
  .hero h1 { font-size: clamp(2.4rem, 9vw, 3.8rem); }
  .hero-sub { margin: 0 auto 1.8rem; }
  .hero-pills { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-logo-wrap { padding-bottom: 3rem; }
  .hero-logo-big { width: clamp(180px, 55vw, 300px); }
  .why-grid, .contact-wrap { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta-wrap { display: none; }
  .nav-burger { display: flex; }
  .stats-bar { flex-wrap: wrap; }
  .stat-item { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(0,0,0,0.12); }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
