/* ==========================================================================
   GARTENSERVICE BONN RHEIN SIEG · STYLES
   Inspired by Chekin · CI-Farben aus dem Logo
   ========================================================================== */

:root {
  /* CI Farben aus dem Logo */
  --green: #4caf3a;
  --green-dark: #3a8e2a;
  --green-light: #6dd058;
  --green-soft: #e8f5e3;

  --blue: #1f7ec8;
  --blue-dark: #155a96;
  --blue-light: #3aa0e8;
  --blue-soft: #e3f0fb;

  /* Neutral - clean wie Chekin */
  --ink: #0f1d1a;
  --text: #1a2a26;
  --text-2: #5a6b66;
  --muted: #8a9994;
  --line: #e5ebe8;
  --bg: #ffffff;
  --bg-soft: #f7faf6;
  --bg-section: #f3f7f1;

  /* Effekte */
  --shadow-xs: 0 1px 2px rgba(15,29,26,.04);
  --shadow-sm: 0 4px 14px rgba(15,29,26,.06);
  --shadow-md: 0 12px 32px rgba(15,29,26,.08);
  --shadow-lg: 0 24px 60px rgba(15,29,26,.12);
  --shadow-green: 0 12px 36px rgba(76,175,58,.25);
  --shadow-blue: 0 12px 36px rgba(31,126,200,.25);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --max-w: 1200px;
  --max-w-narrow: 900px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.grad-green {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.grad-blue {
  background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.grad-green-light {
  background: linear-gradient(135deg, var(--green-light), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-soft);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.eyebrow-center { display: inline-block; }
.eyebrow-light {
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}
.section-title-light { color: #fff; }

.section-sub {
  font-size: 1.08rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

.section { padding: 100px 0; position: relative; }

.section-head {
  text-align: center;
  margin-bottom: 60px;
}

/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 20px; left: 20px; right: 20px;
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transform: translateY(calc(100% + 40px));
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.cookie-text { flex: 1; min-width: 260px; }
.cookie-text h4 { font-size: 1rem; margin-bottom: 6px; }
.cookie-text p { font-size: .9rem; color: var(--text-2); line-height: 1.55; }
.cookie-text a { color: var(--green-dark); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-cookie {
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-cookie-accept {
  background: var(--ink);
  color: #fff;
}
.btn-cookie-accept:hover { background: var(--green-dark); }
.btn-cookie-decline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-cookie-decline:hover { background: var(--bg-soft); }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all .3s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,.96);
  border-bottom-color: var(--line);
  box-shadow: 0 2px 16px rgba(15,29,26,.04);
}
.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 56px;
  width: auto;
  transition: transform .3s ease;
}
.nav-logo:hover img { transform: scale(1.04); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  padding: 10px 16px;
  border-radius: 10px;
  transition: all .25s ease;
  position: relative;
}
.nav-link:hover {
  color: var(--green-dark);
  background: var(--green-soft);
}
.nav-link.active:not(.nav-cta) {
  color: var(--green-dark);
}
.nav-link.active:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px; right: 16px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  border-radius: 2px;
}
.nav-cta {
  background: var(--ink);
  color: #fff !important;
  padding: 12px 22px !important;
  border-radius: 999px !important;
  margin-left: 10px;
  transition: all .3s ease !important;
}
.nav-cta:hover {
  background: var(--green-dark) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-green);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}
.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: all .3s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 6px 20px rgba(15,29,26,.18);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,.5);
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding: 140px 0 100px;
  background: linear-gradient(180deg, var(--bg-soft) 0%, #ffffff 100%);
  overflow: hidden;
}
.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .35;
}
.blob-1 {
  width: 480px; height: 480px;
  background: var(--green-light);
  top: -100px; right: -100px;
  animation: drift 18s ease-in-out infinite;
}
.blob-2 {
  width: 380px; height: 380px;
  background: var(--blue-light);
  bottom: -120px; left: -120px;
  animation: drift 22s ease-in-out infinite reverse;
}
@keyframes drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px,30px) scale(1.08); }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-title {
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  font-weight: 800;
  margin-bottom: 22px;
  line-height: 1.08;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--text-2);
  margin-bottom: 26px;
  max-width: 540px;
  line-height: 1.7;
}
.hero-bullets {
  margin-bottom: 32px;
}
.hero-bullets li {
  position: relative;
  padding: 8px 0 8px 32px;
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
}
.hero-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 20px; height: 20px;
  background: var(--green-soft);
  border-radius: 50%;
}
.hero-bullets li::after {
  content: '';
  position: absolute;
  left: 6px; top: 18px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--green-dark);
  border-bottom: 2px solid var(--green-dark);
  transform: rotate(-45deg);
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .92rem;
  color: var(--text-2);
  font-weight: 500;
}
.trust-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 700;
}

/* Hero Logo Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-logo-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.hero-logo-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(76,175,58,.25) 0%, rgba(31,126,200,.15) 40%, transparent 70%);
  border-radius: 50%;
  animation: pulse 5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .7; }
  50% { transform: scale(1.08); opacity: 1; }
}
.hero-logo {
  position: relative;
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(76,175,58,.25));
  animation: floatUp 7s ease-in-out infinite;
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Hero wave separator */
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  z-index: 2;
}
.hero-wave svg { width: 100%; height: 100%; display: block; }

/* ==========================================================================
   STATS BAR
   ========================================================================== */
.stats-bar {
  padding: 60px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-cell {
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid var(--line);
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--green-dark), var(--blue-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: .92rem;
  color: var(--text-2);
  font-weight: 500;
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.section-services {
  background: #fff;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 24px;
}
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  transition: all .4s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}
.service-card-highlight {
  background: linear-gradient(135deg, #fff 0%, var(--green-soft) 60%, var(--blue-soft) 100%);
  border-color: var(--green-light);
}
.service-card-highlight::before {
  transform: scaleX(1) !important;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 22px;
  transition: all .4s ease;
}
.service-icon.icon-green {
  background: var(--green-soft);
  color: var(--green-dark);
}
.service-icon.icon-blue {
  background: var(--blue-soft);
  color: var(--blue-dark);
}
.service-card:hover .service-icon.icon-green {
  background: var(--green);
  color: #fff;
  transform: rotate(-4deg) scale(1.05);
}
.service-card:hover .service-icon.icon-blue {
  background: var(--blue);
  color: #fff;
  transform: rotate(-4deg) scale(1.05);
}
.service-icon svg { width: 36px; height: 36px; }

.service-tag {
  position: absolute;
  top: 28px; right: 28px;
  background: var(--green-soft);
  color: var(--green-dark);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.service-tag.tag-blue {
  background: var(--blue-soft);
  color: var(--blue-dark);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 18px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-dark);
  font-weight: 600;
  font-size: .95rem;
  transition: gap .25s ease, color .25s ease;
}
.service-link:hover {
  color: var(--blue-dark);
  gap: 10px;
}
.service-link span { transition: transform .25s ease; }
.service-link:hover span { transform: translateX(2px); }

.services-cta {
  margin-top: 70px;
  padding: 50px 50px;
  background: linear-gradient(135deg, var(--green-soft) 0%, var(--blue-soft) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.services-cta-text h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.services-cta-text p {
  color: var(--text-2);
  font-size: 1rem;
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.section-about {
  background: var(--bg-section);
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  max-width: 480px;
}
.about-image-deco {
  position: absolute;
  inset: -20px -20px 20px 20px;
  background: linear-gradient(135deg, var(--green-light), var(--blue-light));
  border-radius: var(--radius-xl);
  opacity: .25;
  z-index: 0;
}
.about-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 1;
}
.about-image-frame img {
  width: 100%;
  display: block;
  transition: transform .6s ease;
}
.about-image-frame:hover img { transform: scale(1.04); }

.about-badge {
  position: absolute;
  bottom: -22px; right: -22px;
  background: #fff;
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}
.about-badge-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-badge-icon svg { width: 22px; height: 22px; }
.about-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ink);
}
.about-badge span {
  font-size: .85rem;
  color: var(--text-2);
}

.about-lead {
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 500;
  margin: 18px 0 16px;
  line-height: 1.6;
}
.about-content p {
  color: var(--text-2);
  margin-bottom: 14px;
  line-height: 1.7;
}
.about-list {
  margin: 28px 0;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  color: var(--text);
  font-weight: 500;
}
.check-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  margin-top: 1px;
}
.check-icon svg { width: 14px; height: 14px; }

/* ==========================================================================
   PERSONAL MESSAGE
   ========================================================================== */
.section-message {
  background: linear-gradient(135deg, var(--bg-soft) 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.message-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.message-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .25;
}
.blob-msg-1 {
  width: 400px; height: 400px;
  background: var(--green-light);
  top: -100px; right: -100px;
  animation: drift 20s ease-in-out infinite;
}
.blob-msg-2 {
  width: 350px; height: 350px;
  background: var(--blue-light);
  bottom: -80px; left: -80px;
  animation: drift 24s ease-in-out infinite reverse;
}

.message-card {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 70px 60px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  overflow: hidden;
}
.message-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 100%;
  background: linear-gradient(180deg, var(--green), var(--blue));
}

.message-quote-mark {
  position: absolute;
  top: 30px; right: 40px;
  width: 80px; height: 80px;
  color: var(--green-light);
  opacity: 0.18;
  z-index: 1;
}
.message-quote-mark svg {
  width: 100%;
  height: 100%;
}

.message-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
  align-items: center;
}

.message-lead {
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.55;
  margin: 22px 0 22px;
  padding-left: 24px;
  border-left: 4px solid var(--green);
  font-family: var(--font-display);
}
.message-text p {
  color: var(--text-2);
  margin-bottom: 16px;
  line-height: 1.75;
  font-size: 1.05rem;
}
.message-text strong {
  color: var(--ink);
  font-weight: 700;
}
.message-signature {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.message-signature-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green-dark), var(--blue-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}
.message-signature-role {
  font-size: .92rem;
  color: var(--text-2);
  font-weight: 500;
}

.message-photo {
  display: flex;
  justify-content: center;
}
.message-photo-frame {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
  outline: 2px solid var(--green-light);
  outline-offset: 6px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.message-photo-frame::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  z-index: -1;
}
.message-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .8s ease;
}
.message-card:hover .message-photo-frame {
  transform: scale(1.03) rotate(-1deg);
}
.message-card:hover .message-photo-frame img {
  transform: scale(1.08);
}

@media (max-width: 900px) {
  .message-card {
    padding: 50px 32px;
  }
  .message-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .message-text {
    order: 2;
  }
  .message-photo {
    order: 1;
  }
  .message-photo-frame {
    width: 200px;
    height: 200px;
  }
  .message-lead {
    border-left: none;
    border-top: 4px solid var(--green);
    padding-left: 0;
    padding-top: 16px;
    text-align: center;
  }
  .message-quote-mark {
    width: 50px; height: 50px;
    top: 20px; right: 24px;
  }
  .message-signature {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .message-card {
    padding: 40px 24px;
  }
  .message-lead {
    font-size: 1.1rem;
  }
  .message-text p {
    font-size: 1rem;
  }
}
/* ==========================================================================
   AREAS
   ========================================================================== */
.section-areas {
  background: #fff;
}
.areas-group {
  margin-bottom: 60px;
}
.areas-group:last-of-type {
  margin-bottom: 0;
}
.areas-group-title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.areas-group-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--green-soft);
  color: var(--green-dark);
  border-radius: 12px;
  flex-shrink: 0;
}
.areas-group-icon.icon-blue-bg {
  background: var(--blue-soft);
  color: var(--blue-dark);
}
.areas-group-icon svg {
  width: 22px;
  height: 22px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}
.area-card {
  text-align: center;
  padding: 26px 16px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}
.area-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green), var(--blue));
  opacity: 0;
  transition: opacity .35s ease;
}
.area-card.area-card-primary {
  border-color: var(--green);
  background: linear-gradient(135deg, var(--green-soft) 0%, #fff 60%);
  box-shadow: 0 4px 16px rgba(76,175,58,.12);
}
.area-card > * { position: relative; z-index: 1; }
.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.area-card:hover::before { opacity: 1; }
.area-card:hover h4,
.area-card:hover p { color: #fff; }
.area-card:hover .area-icon {
  background: rgba(255,255,255,.2) !important;
  color: #fff !important;
}

.area-icon {
  width: 44px; height: 44px;
  margin: 0 auto 12px;
  background: var(--green-soft);
  color: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .35s ease;
}
.area-icon.icon-blue-bg-soft {
  background: var(--blue-soft);
  color: var(--blue-dark);
}
.area-icon svg { width: 20px; height: 20px; }

.area-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
  transition: color .3s ease;
  color: var(--ink);
  font-family: var(--font-display);
}
.area-card p {
  font-size: .8rem;
  color: var(--text-2);
  transition: color .3s ease;
}

.areas-note {
  text-align: center;
  margin-top: 36px;
  font-style: italic;
  color: var(--text-2);
  font-size: 1.02rem;
}

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.section-reviews {
  background: var(--bg-section);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  max-width: 920px;
  margin: 0 auto;
}
.review-card {
  position: relative;
  background: #fff;
  padding: 40px 36px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: all .35s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.review-quote {
  position: absolute;
  top: -18px; left: 28px;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.review-quote svg { width: 22px; height: 22px; }
.review-stars {
  color: #ffb300;
  font-size: 1.1rem;
  margin: 8px 0 16px;
  letter-spacing: 3px;
}
.review-card blockquote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 26px;
  font-style: normal;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.review-avatar {
  width: 46px; height: 46px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
}
.avatar-green { background: linear-gradient(135deg, var(--green), var(--green-dark)); }
.avatar-blue { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); }
.review-author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ink);
}
.review-author span {
  font-size: .87rem;
  color: var(--text-2);
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.section-contact {
  padding: 80px 0;
  background: #fff;
}
.contact-card {
  background: linear-gradient(135deg, #0f1d1a 0%, #122d24 50%, #0d2640 100%);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.contact-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.contact-decor::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(76,175,58,.3), transparent 65%);
  border-radius: 50%;
}
.contact-decor::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(31,126,200,.3), transparent 65%);
  border-radius: 50%;
}
.contact-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.contact-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  line-height: 1.7;
}
.contact-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.contact-info-cell {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}
.contact-info-icon {
  font-size: 1.4rem;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-cell small {
  display: block;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  margin-bottom: 2px;
  font-weight: 600;
}
.contact-info-cell a,
.contact-info-cell span:not(.contact-info-icon) {
  font-size: .95rem;
  color: rgba(255,255,255,.95);
  font-weight: 500;
}
.contact-info-cell a:hover { color: var(--green-light); }

/* ==========================================================================
   FLOAT WHATSAPP
   ========================================================================== */
.float-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.5);
  z-index: 50;
  transition: transform .3s ease;
  animation: pulseWa 2.5s ease-in-out infinite;
}
@keyframes pulseWa {
  0%, 100% { box-shadow: 0 10px 30px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.5); }
  50% { box-shadow: 0 10px 30px rgba(37,211,102,.5), 0 0 0 16px rgba(37,211,102,0); }
}
.float-wa:hover { transform: scale(1.1); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 70px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-col-brand p { max-width: 320px; line-height: 1.7; }
.footer-logo {
  height: 70px;
  width: auto;
  margin-bottom: 18px;
}
.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.footer-col p,
.footer-col a {
  font-size: .92rem;
  line-height: 1.85;
  transition: color .25s ease;
}
.footer-col a:hover { color: var(--green-light); }
.footer-col ul li { margin-bottom: 6px; }
.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  font-size: .87rem;
  color: rgba(255,255,255,.5);
}

/* ==========================================================================
   REVEAL ANIMATIONS - ENHANCED
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s cubic-bezier(.25,.46,.45,.94), transform 1s cubic-bezier(.25,.46,.45,.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-right {
  transform: translateX(50px);
}
.reveal-right.visible { transform: translateX(0); }

.reveal-left {
  transform: translateX(-50px);
}
.reveal-left.visible { transform: translateX(0); }

.reveal-zoom {
  transform: scale(0.92);
}
.reveal-zoom.visible { transform: scale(1); }

.reveal-rotate {
  transform: rotate(-3deg) translateY(40px);
}
.reveal-rotate.visible { transform: rotate(0) translateY(0); }

/* Stagger children animation */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.stagger-children.visible > *:nth-child(1) { transition-delay: .05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: .15s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: .25s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: .35s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: .45s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: .55s; }
.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Floating decorative elements */
@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes floatMedium {
  0%, 100% { transform: translateY(0) translateX(0); }
  33% { transform: translateY(-15px) translateX(10px); }
  66% { transform: translateY(-5px) translateX(-10px); }
}

/* Parallax scroll effect for sections */
.parallax-bg {
  will-change: transform;
}

/* Underline animation */
@keyframes underline {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* Number counter pulse */
@keyframes numberPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
.stat-num.counting {
  animation: numberPulse 1.6s ease-in-out;
}

/* Service card stagger entrance */
.service-card.reveal {
  transform: translateY(50px) scale(0.96);
}
.service-card.reveal.visible {
  transform: translateY(0) scale(1);
}

/* Area card hover lift */
.area-card {
  will-change: transform;
}

/* Bullet points stagger animation */
.hero-bullets.visible li {
  animation: bulletSlide .6s ease forwards;
}
.hero-bullets li {
  opacity: 0;
}
.hero-bullets.visible li:nth-child(1) { animation-delay: .1s; }
.hero-bullets.visible li:nth-child(2) { animation-delay: .2s; }
.hero-bullets.visible li:nth-child(3) { animation-delay: .3s; }
.hero-bullets.visible li:nth-child(4) { animation-delay: .4s; }
.hero-bullets.visible li:nth-child(5) { animation-delay: .5s; }
@keyframes bulletSlide {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hero title letter reveal */
@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-title {
  animation: titleReveal 1s cubic-bezier(.25,.46,.45,.94) .1s both;
}
.hero-sub {
  animation: titleReveal 1s cubic-bezier(.25,.46,.45,.94) .3s both;
}
.hero-cta {
  animation: titleReveal 1s cubic-bezier(.25,.46,.45,.94) .5s both;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  opacity: 0;
  animation: hintFadeIn 1s ease 1.5s forwards, hintBounce 2s ease infinite 2.5s;
  pointer-events: none;
}
@keyframes hintFadeIn {
  to { opacity: 1; }
}
@keyframes hintBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
.scroll-hint-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid var(--text-2);
  border-radius: 14px;
  position: relative;
}
.scroll-hint-mouse::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--green-dark);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 14px); opacity: 0; }
}

/* Section transition decorations */
.section-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.section-deco-leaf {
  width: 60px;
  height: 60px;
  opacity: 0.08;
  animation: floatSlow 8s ease-in-out infinite;
}
.section-deco-leaf-2 {
  animation-delay: -3s;
  animation-duration: 10s;
}

/* Service icon hover micro-animation */
.service-card:hover .service-icon svg {
  animation: iconWiggle .6s ease;
}
@keyframes iconWiggle {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-8deg); }
  75% { transform: rotate(8deg); }
}

/* Smooth section reveal with parallax background */
.section {
  position: relative;
  overflow: hidden;
}

/* Stat counter hover */
.stat-cell {
  transition: transform .35s ease;
}
.stat-cell:hover {
  transform: translateY(-4px);
}
.stat-cell:hover .stat-num {
  animation: numberPulse .5s ease;
}

/* Review card decorative shine on hover */
.review-card {
  position: relative;
  overflow: hidden;
}
.review-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(76,175,58,.06), transparent);
  transition: left .8s ease;
  pointer-events: none;
}
.review-card:hover::after {
  left: 100%;
}

/* Link arrow micro-animation on services */
.service-link span {
  display: inline-block;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.service-card:hover .service-link span {
  animation: arrowSlide 1s ease infinite;
}
@keyframes arrowSlide {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */
.legal-page {
  padding: 140px 0 80px;
  min-height: 100vh;
  background: var(--bg-soft);
}
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  padding: 56px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.legal-content h1 {
  font-size: 2.4rem;
  margin-bottom: 32px;
  background: linear-gradient(135deg, var(--green-dark), var(--blue-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.legal-content h2 {
  font-size: 1.35rem;
  margin: 36px 0 14px;
  color: var(--ink);
}
.legal-content h3 {
  font-size: 1.1rem;
  margin: 24px 0 10px;
  color: var(--ink);
}
.legal-content p,
.legal-content li {
  color: var(--text-2);
  margin-bottom: 12px;
  line-height: 1.75;
}
.legal-content ul {
  padding-left: 22px;
  margin-bottom: 18px;
  list-style: disc;
}
.legal-content a {
  color: var(--green-dark);
  text-decoration: underline;
}
.legal-content a:hover { color: var(--blue-dark); }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-weight: 600;
  color: var(--green-dark);
}
.legal-back:hover { color: var(--blue-dark); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .about-image-wrap { margin: 0 auto; }
  .hero-bullets { display: inline-block; text-align: left; }
  .hero-cta,
  .hero-trust { justify-content: center; }
  .hero-logo-wrap { max-width: 360px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3),
  .stat-cell:nth-child(4) { border-top: 1px solid var(--line); padding-top: 30px; }
  .contact-grid { grid-template-columns: 1fr; gap: 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 86%;
    max-width: 340px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 96px 28px 40px;
    transition: right .4s cubic-bezier(.4,0,.2,1);
    box-shadow: -10px 0 40px rgba(0,0,0,.1);
    gap: 4px;
  }
  .nav-menu.active { right: 0; }
  .nav-menu .nav-link {
    padding: 14px 16px;
    font-size: 1.05rem;
    border-radius: 10px;
  }
  .nav-menu .nav-cta {
    margin-left: 0;
    margin-top: 16px;
    text-align: center;
  }
  .nav-toggle { display: flex; }
  .section { padding: 70px 0; }
  .hero { padding: 110px 0 70px; }
  .hero-cta .btn { width: 100%; }
  .hero-bullets { display: block; text-align: left; max-width: 420px; margin-left: auto; margin-right: auto; }
  .stats-bar { padding: 40px 0; }
  .services-cta { padding: 36px 28px; text-align: center; flex-direction: column; }
  .about-badge {
    bottom: -16px; right: 50%;
    transform: translateX(50%);
    flex-direction: row;
  }
  .contact-card { padding: 56px 28px; }
  .contact-buttons .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .legal-content { padding: 32px 24px; }
  .legal-content h1 { font-size: 1.8rem; }
  .float-wa { width: 56px; height: 56px; bottom: 18px; right: 18px; }
  .float-wa svg { width: 28px; height: 28px; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 18px 20px; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn-cookie { flex: 1; }
}

@media (max-width: 480px) {
  .nav-logo img { height: 46px; }
  .hero-title { font-size: 2.1rem; }
  .hero-sub { font-size: .98rem; }
  .section-title { font-size: 1.8rem; }
  .stats-row { grid-template-columns: 1fr; gap: 0; }
  .stat-cell { border-right: none !important; border-top: 1px solid var(--line); padding: 24px 16px; }
  .stat-cell:first-child { border-top: none; }
  .service-card { padding: 30px 24px 26px; }
  .review-card { padding: 32px 24px 28px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
