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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1f2937;
  background: #fff;
}

/* SCROLL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* HERO */
.hero {
  position: relative;
  background: linear-gradient(135deg, #14532d 0%, #16a34a 60%, #4ade80 100%);
  color: white;
  padding: 64px 24px 80px;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  opacity: .07;
  background-image: radial-gradient(circle, white 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-content { position: relative; z-index: 1; }
.avatar-img {
  width: 112px; height: 112px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,.4);
  margin: 0 auto 18px;
  display: block;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  animation: heroFadeIn .8s ease forwards;
}
.avatar-initials {
  width: 112px; height: 112px;
  border-radius: 50%;
  background: white;
  color: #15803d;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  animation: heroFadeIn .8s ease forwards;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: scale(.85) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.badge {
  display: inline-block;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  color: white;
  font-size: 11px;
  font-weight: 500;
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
  letter-spacing: .04em;
  animation: heroFadeIn .8s .15s ease both;
}
.hero h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -.5px;
  animation: heroFadeIn .8s .25s ease both;
}
.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,.85);
  max-width: 340px;
  margin: 0 auto;
  line-height: 1.7;
  animation: heroFadeIn .8s .35s ease both;
}
.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
  animation: heroFadeIn .8s .45s ease both;
}
.btn-white {
  background: white;
  color: #15803d;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 24px;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
  transition: transform .2s, opacity .2s;
}
.btn-white:hover { opacity: .9; transform: scale(1.04); }
.btn-outline {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.4);
  color: white;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 24px;
  border-radius: 14px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.btn-outline:hover { background: rgba(255,255,255,.25); transform: scale(1.04); }

/* STATS */
.stats-bar { background: #15803d; padding: 22px 24px; }
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
  color: white;
}
.stat-num { font-size: 24px; font-weight: 700; }
.stat-lbl { font-size: 11px; color: rgba(255,255,255,.65); margin-top: 4px; }
.stat-mid {
  border-left: 1px solid rgba(255,255,255,.2);
  border-right: 1px solid rgba(255,255,255,.2);
}

/* SECTIONS */
.section { padding: 56px 24px; }
.section-gray { background: #f9fafb; }
.section-white { background: white; }
.section-label {
  font-size: 10px;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: .14em;
  text-align: center;
  margin-bottom: 32px;
}

/* SERVICE CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 560px;
  margin: 0 auto;
}
@media (min-width: 520px) { .cards-grid { grid-template-columns: 1fr 1fr 1fr; } }
.card {
  background: white;
  border-radius: 18px;
  padding: 24px 20px;
  text-align: center;
  border: 1px solid #f0f0f0;
  box-shadow: 0 1px 6px rgba(0,0,0,.05);
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); transform: translateY(-3px); }
.icon-wrap {
  width: 48px; height: 48px;
  background: #dcfce7;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.icon-wrap svg { width: 24px; height: 24px; stroke: #15803d; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 13px; font-weight: 600; color: #1f2937; margin-bottom: 8px; }
.card p { font-size: 12px; color: #6b7280; line-height: 1.6; }

/* VIDEO */
.video-wrap {
  max-width: 560px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.video-wrap video { width: 100%; display: block; }

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 680px;
  margin: 0 auto;
}
@media (min-width: 560px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
.testimonial-card {
  background: #f0fdf4;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #bbf7d0;
  transition: transform .2s;
}
.testimonial-card:hover { transform: translateY(-2px); }
.stars { color: #facc15; font-size: 15px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card p { font-size: 13px; color: #14532d; font-style: italic; line-height: 1.7; margin-bottom: 12px; }
.testimonial-card span { font-size: 12px; color: #16a34a; font-weight: 600; }

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 560px;
  margin: 0 auto;
}
@media (min-width: 480px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item { border-radius: 12px; overflow: hidden; }
.gallery-item img { width: 100%; height: 160px; object-fit: cover; display: block; }
.gallery-item p { font-size: 11px; color: #6b7280; text-align: center; padding: 6px 4px; }

/* CONTACT WITH PULSE RING */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 320px;
  margin: 0 auto;
}
.contact-btn-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.contact-btn-wrap.primary::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 18px;
  opacity: 0;
  animation: pulseRing 2.2s ease-out infinite;
}
.contact-btn-wrap.viber::before  { background: #7b519d; }
.contact-btn-wrap.wa-wrap::before { background: #25D366; animation-delay: .7s; }

@keyframes pulseRing {
  0%   { transform: scale(1);    opacity: .5; }
  70%  { transform: scale(1.08); opacity: 0; }
  100% { transform: scale(1.08); opacity: 0; }
}

.contact-btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  width: 100%;
  transition: transform .18s, opacity .18s;
}
.contact-btn:hover  { opacity: .92; transform: scale(1.03); }
.contact-btn:active { transform: scale(.97); }

.viber { background: #7b519d; }
.wa    { background: #25D366; }
.email { background: #4f46e5; }
.ig    { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.fb    { background: #1877F2; }

/* FOOTER */
footer {
  background: #14532d;
  color: rgba(255,255,255,.55);
  font-size: 12px;
  text-align: center;
  padding: 24px;
}

/* STICKY HEADER */
.sticky-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: #14532d;
  transform: translateY(-100%);
  transition: transform .3s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.sticky-header.visible { transform: translateY(0); }
.sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 600px;
  margin: 0 auto;
}
.sticky-name { color: white; font-weight: 600; font-size: 14px; }
.sticky-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #7b519d;
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  transition: opacity .2s;
}
.sticky-cta:hover { opacity: .88; }

/* FLOATING VIBER BUTTON */
.float-btn {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #7b519d;
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 13px 18px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(123,81,157,.45);
  animation: floatPulse 2.5s ease-in-out infinite;
  transition: transform .2s;
}
.float-btn:hover { transform: scale(1.06); }
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(123,81,157,.45); }
  50%       { box-shadow: 0 4px 28px rgba(123,81,157,.75); }
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: #1f2937;
  padding: 16px 20px;
  box-shadow: 0 -2px 16px rgba(0,0,0,.2);
}
.cookie-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-banner p { font-size: 13px; color: #d1d5db; line-height: 1.6; }
.cookie-btns { display: flex; gap: 10px; }
.cookie-accept {
  background: #16a34a;
  color: white;
  border: none;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .2s;
}
.cookie-accept:hover { opacity: .88; }
.cookie-decline {
  background: transparent;
  color: #9ca3af;
  border: 1px solid #374151;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
  transition: color .2s;
}
.cookie-decline:hover { color: white; }

.float-btn { bottom: 110px; right: 20px; padding: 14px 22px; font-size: 14px; }
.cookie-btns { display: flex; gap: 10px; margin-top: 10px; }
.cookie-accept { background: #16a34a; color: white; border: none; padding: 9px 20px; border-radius: 999px; font-weight: 600; cursor: pointer; }
.cookie-decline { background: transparent; color: #9ca3af; border: 1px solid #374151; padding: 9px 20px; border-radius: 999px; cursor: pointer; }
