@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --primary-dark: #0a3d23;
  --primary: #147a3e;
  --primary-light: #1a9d4a;
  --accent: #22c55e;
  --accent-light: #4ade80;
  --gold: #eab308;
  --gold-light: #facc15;
  --white: #fff;
  --off-white: #f8fbf9;
  --gray-50: #f0f5f1;
  --gray-100: #e2e8e4;
  --gray-200: #c5d1c8;
  --gray-400: #8a9b8f;
  --gray-500: #5f7263;
  --gray-700: #374139;
  --gray-800: #1f2921;
  --black: #0c1810;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: hidden;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--off-white);
  color: var(--gray-700);
  overflow-x: hidden;
  line-height: 1.7;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes loading {
  0% {
    width: 0;
  }
  50% {
    width: 70%;
  }
  100% {
    width: 100%;
  }
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--gray-100);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--primary-light));
  border-radius: 10px;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
form#wpforms-form-30 svg path {
  stroke: #147a3e;
  fill: #147a3e;
}
.page-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.page-bg-gradient {
  position: absolute;
  width: 150%;
  height: 150%;
  top: -25%;
  left: -25%;
  background:
    radial-gradient(
      ellipse at 20% 20%,
      rgba(20, 122, 62, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 80%,
      rgba(34, 197, 94, 0.03) 0%,
      transparent 50%
    );
  animation: bgShift 30s ease-in-out infinite;
}
@keyframes bgShift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(2%, -2%);
  }
  66% {
    transform: translate(-2%, 2%);
  }
}
.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.15;
}
.particle:nth-child(1) {
  top: 10%;
  left: 10%;
  animation: float 20s linear infinite;
}
.particle:nth-child(2) {
  top: 20%;
  left: 80%;
  animation: float 25s linear infinite reverse;
}
.particle:nth-child(3) {
  top: 60%;
  left: 20%;
  animation: float 22s linear infinite;
}
.particle:nth-child(4) {
  top: 70%;
  left: 70%;
  animation: float 28s linear infinite reverse;
}
@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(100px, -50px);
  }
  50% {
    transform: translate(50px, -100px);
  }
  75% {
    transform: translate(-50px, -50px);
  }
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.5s;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 30px rgba(10, 61, 35, 0.1);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  height: 38px;
  width: auto;
  transition: transform 0.3s;
}
.page-id-21 .nav,
.page-id-23 .nav,
.page-id-27 .nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 30px rgba(10, 61, 35, 0.1);
}
/* .logo:hover img {
  transform: scale(1.05);
} */
.nav-links {
  display: flex;
  gap: 8px;
}
.nav-link {
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 20px;
  border-radius: 12px;
  transition: all 0.3s;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: all 0.3s;
  transform: translateX(-50%);
  border-radius: 2px;
}
.nav-link:hover {
  color: var(--primary);
}
.nav-link:hover::after {
  width: 30px;
}
.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.4s;
  box-shadow: 0 4px 15px rgba(20, 122, 62, 0.3);
}
.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(20, 122, 62, 0.4);
}
.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gray-50);
  border: none;
  cursor: pointer;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: -webkit-fill-available;
  background: var(--white);
  z-index: 999;
  padding: 90px 28px;
  transform: translateX(100%);
  transition: transform 0.5s;
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu-links a {
  text-decoration: none;
  color: var(--gray-800);
  font-weight: 600;
  font-size: 1.5rem;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu-links a:hover {
  background: var(--gray-50);
  color: var(--primary);
  padding-left: 20px;
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  top: -200px;
  right: -100px;
  animation: orbFloat 25s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  bottom: -100px;
  left: -100px;
  animation: orbFloat 30s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(50px, -30px) scale(1.1);
  }
  50% {
    transform: translate(-30px, 50px) scale(0.95);
  }
  75% {
    transform: translate(30px, 30px) scale(1.05);
  }
}
.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(20, 122, 62, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 122, 62, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}
.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(
    135deg,
    rgba(20, 122, 62, 0.1),
    rgba(34, 197, 94, 0.1)
  );
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 32px;
  border: 1px solid rgba(20, 122, 62, 0.15);
  opacity: 0;
  transform: translateY(30px);
  animation: reveal 0.8s 0.3s forwards;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: badgePulse 2s infinite;
}
@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(234, 179, 8, 0.4);
  }
  50% {
    transform: scale(1.2);
    box-shadow: 0 0 0 8px rgba(234, 179, 8, 0);
  }
}
.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(30px);
  animation: reveal 0.8s 0.4s forwards;
}
.highlight {
  position: relative;
  color: var(--primary);
}
.highlight::before {
  content: "";
  position: absolute;
  bottom: 8px;
  left: -4px;
  right: -4px;
  height: 14px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0.35;
  z-index: -1;
  transform: skewX(-6deg);
  border-radius: 4px;
}
.hero-description {
  font-size: 1.15rem;
  color: var(--gray-500);
  margin-bottom: 40px;
  max-width: 520px;
  opacity: 0;
  transform: translateY(30px);
  animation: reveal 0.8s 0.5s forwards;
}
@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  animation: reveal 0.8s 0.6s forwards;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 18px 36px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(20, 122, 62, 0.3);
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(20, 122, 62, 0.4);
}
.btn-primary svg {
  transition: transform 0.3s;
}
.btn-primary:hover svg {
  transform: translateX(4px);
}
.btn-secondary {
  background: var(--white);
  color: var(--primary);
  padding: 18px 36px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s;
  border: 2px solid var(--gray-200);
  box-shadow: 0 2px 8px rgba(10, 61, 35, 0.06);
}
.btn-secondary:hover {
  border-color: var(--primary);
  background: rgba(20, 122, 62, 0.03);
  transform: translateY(-4px);
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: reveal 0.8s 0.7s forwards;
}
.hero-trust-avatars {
  display: flex;
}
.hero-trust-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid var(--white);
  margin-left: -12px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(10, 61, 35, 0.1);
}
.hero-trust-avatar:first-child {
  margin-left: 0;
}
.hero-trust-text {
  font-size: 0.9rem;
  color: var(--gray-500);
}
.hero-trust-text strong {
  color: var(--black);
  font-weight: 700;
}
.hero-trust-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.hero-trust-rating svg {
  color: var(--gold);
}
.hero-trust-rating span {
  font-weight: 700;
  color: var(--black);
}
.hero-visual {
  position: relative;
  opacity: 0;
  transform: translateX(60px);
  animation: revealRight 1s 0.6s forwards;
}
@keyframes revealRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero-image-wrapper {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(10, 61, 35, 0.2);
}
.hero-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(10, 61, 35, 0.6) 100%
  );
  z-index: 1;
}
.hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.hero-image-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 32px 14px;
  z-index: 2;
  color: var(--white);
}
.hero-image-stat {
  display: flex;
  gap: 40px;
}
.hero-stat-item h4 {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-item p {
  font-size: 0.85rem;
  opacity: 0.8;
}
.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 20px 60px rgba(10, 61, 35, 0.15);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
}
.hero-float-card-1 {
  top: 20px;
  right: -40px;
  animation: floatCard 4s ease-in-out infinite;
}
.hero-float-card-2 {
  bottom: 110px;
  left: -50px;
  animation: floatCard 4s ease-in-out infinite 1s;
}
@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
.float-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-card-icon.green {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
}
.float-card-icon.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
}
.float-card-text h5 {
  font-weight: 800;
  color: var(--black);
  font-size: 1.3rem;
  margin-bottom: 2px;
}
.float-card-text p {
  font-size: 0.8rem;
  color: var(--gray-500);
}
.marquee-section {
  padding: 40px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: fit-content;
}
.marquee-wrapper {
  display: flex;
  gap: 60px;
  padding-right: 60px;
  flex-shrink: 0;
  animation: marquee-scroll var(--marquee-duration, 20s) linear infinite;
}
.marquee-section:hover .marquee-wrapper {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  color: var(--gray-400);
  font-weight: 600;
  font-size: 1.1rem;
}
.marquee-item svg {
  color: var(--primary);
  flex-shrink: 0;
}
section {
  padding: 100px 0;
  position: relative;
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(
    135deg,
    rgba(20, 122, 62, 0.08),
    rgba(34, 197, 94, 0.08)
  );
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1px solid rgba(20, 122, 62, 0.1);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--black);
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  line-height: 1.8;
}
.about {
  background: var(--white);
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  width: 100%;
}
.about-images {
  position: relative;
  height: 600px;
  width: 100%;
}
.about-img {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 61, 35, 0.15);
}
.about-img-1 {
  width: 65%;
  height: 70%;
  top: 0;
  left: 0;
  z-index: 2;
}
.about-img-2 {
  width: 55%;
  height: 50%;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-experience-badge {
  position: absolute;
  bottom: 35%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  padding: 24px 32px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(10, 61, 35, 0.15);
  text-align: left;
  z-index: 3;
}
.about-experience-badge h4 {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.about-experience-badge p {
  font-size: 0.9rem;
  color: var(--gray-500);
  font-weight: 600;
}
.about-decoration {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 4px solid var(--gold);
  border-radius: 24px;
  bottom: 10%;
  left: -30px;
  z-index: 0;
  opacity: 0.5;
}
.about-content .section-tag {
  margin-bottom: 16px;
}
.about-content h3 {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 24px;
  line-height: 1.2;
}
.about-content p {
  color: var(--gray-500);
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--gray-50);
  border-radius: 16px;
  transition: all 0.4s;
  border: 1px solid transparent;
}
.about-feature:hover {
  background: var(--white);
  border-color: var(--gray-100);
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(10, 61, 35, 0.1);
}
.about-feature-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.about-feature span {
  font-weight: 700;
  color: var(--gray-800);
  font-size: 0.95rem;
}
.services {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 28px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
  border: 1px solid var(--gray-100);
  cursor: pointer;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 0;
}
.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: linear-gradient(180deg, var(--gold), var(--accent));
  transition: height 0.5s;
  border-radius: 0 4px 4px 0;
}
.service-card:hover::after {
  height: 100%;
}
.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 100px rgba(10, 61, 35, 0.2);
}
.service-card:hover::before {
  opacity: 1;
}
.service-card > * {
  position: relative;
  z-index: 1;
  transition: color 0.4s;
}
.service-card:hover .service-icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}
.service-card:hover .service-title,
.service-card:hover .service-desc,
.service-card:hover .service-link {
  color: var(--white);
}
.service-card:hover .service-number {
  color: rgba(255, 255, 255, 0.1);
}
.service-image {
  width: 100%;
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.service-card:hover .service-image img {
  transform: scale(1.1);
}
.service-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(
    135deg,
    rgba(20, 122, 62, 0.1),
    rgba(34, 197, 94, 0.1)
  );
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary);
  transition: all 0.4s;
}
.service-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
}
.service-desc {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  margin-top: auto;
}
.service-link svg {
  transition: transform 0.3s;
}
.service-link:hover svg {
  transform: translateX(6px);
}
.service-number {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--gray-100);
  line-height: 1;
}
.process {
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.process .section-tag {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}
.process .section-title {
  color: var(--white);
}
.process .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}
.process-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.4s;
}
.process-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
}
.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary-dark);
  margin: 0 auto 24px;
}
.process-card h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.process-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.7;
}
.stats {
  background: var(--white);
  padding: 100px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stat-card {
  text-align: center;
  padding: 40px 20px;
  background: var(--gray-50);
  border-radius: 24px;
  transition: all 0.4s;
  border: 1px solid var(--gray-100);
}
.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(10, 61, 35, 0.15);
  background: var(--white);
}
.stat-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin: 0 auto 20px;
}
.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 1rem;
  color: var(--gray-500);
  font-weight: 600;
}
.faq {
  background: var(--off-white);
  overflow: hidden;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.faq-content {
  position: sticky;
  top: 0px;
}
.faq-content h3 {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 20px;
  line-height: 1.2;
}
.faq-content p {
  color: var(--gray-500);
  margin-bottom: 32px;
  font-size: 1.05rem;
}
.faq-contact-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 24px;
  padding: 32px;
  color: var(--white);
}
.faq-contact-card h4 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.faq-contact-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  font-size: 0.95rem;
}
.faq-contact-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--primary);
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
}
.faq-contact-card a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s;
  border: 1px solid var(--gray-100);
}
.faq-item:hover {
  box-shadow: 0 8px 30px rgba(10, 61, 35, 0.1);
}
.faq-item.active {
  box-shadow: 0 20px 60px rgba(10, 61, 35, 0.15);
}
.faq-question {
  width: 100%;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: all 0.3s;
  gap: 20px;
}
.faq-question:hover {
  background: var(--gray-50);
}
.faq-question-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
}
.faq-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  transition: all 0.4s;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s;
}
.faq-answer-inner {
  padding: 0 32px 28px;
  color: var(--gray-500);
  line-height: 1.8;
  font-size: 1rem;
}
.reviews {
  background: var(--white);
  overflow: hidden;
}
.reviews-wrapper {
  overflow: hidden;
}
.reviews-slider {
  display: flex;
  gap: 30px;
  padding: 0 1rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.review-card {
  flex: 0 0 calc(33.333% - 20px);
  background: var(--gray-50);
  border-radius: 28px;
  padding: 40px;
  position: relative;
  transition: all 0.4s;
  border: 1px solid var(--gray-100);
}
.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(10, 61, 35, 0.1);
  background: var(--white);
}
.review-quote {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}
.review-stars svg {
  color: var(--gold);
}
.review-text {
  color: var(--gray-700);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 32px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  object-fit: cover;
}
.review-author-info h4 {
  font-weight: 800;
  color: var(--black);
  margin-bottom: 4px;
  font-size: 1.05rem;
}
.review-author-info span {
  font-size: 0.9rem;
  color: var(--gray-500);
}
.reviews-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 50px;
}
.reviews-nav button {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--primary);
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reviews-nav button:hover:not(.disabled) {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.reviews-nav button.disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}
.reviews-nav button:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.cta {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  animation: ctaOrb 20s linear infinite;
}
@keyframes ctaOrb {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}
.cta-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btn-primary {
  background: var(--white);
  color: var(--primary);
  padding: 18px 40px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.cta-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.cta-btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 18px 40px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s;
}
.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}
.contact {
  background: var(--off-white);
  overflow: hidden;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  background: var(--white);
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(10, 61, 35, 0.2);
}
.contact-info {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  padding: 45px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}
.contact-info > * {
  position: relative;
  z-index: 1;
}
.contact-info h3 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 16px;
}
.contact-info > p {
  opacity: 0.85;
  margin-bottom: 48px;
  line-height: 1.8;
  font-size: 1.05rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 48px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.contact-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-text span {
  display: block;
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 6px;
  font-weight: 500;
}
.contact-item-text strong {
  font-size: 1.1rem;
  font-weight: 700;
}
.contact-social {
  display: flex;
  gap: 12px;
}
.contact-social a {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s;
}
.contact-social a:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-4px);
}
.contact-form-wrapper {
  padding: 45px;
}
.contact-form-wrapper h3 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 32px;
}
.contact-form-wrapper .wpforms-container {
  margin-bottom: 0 !important;
}
#wpforms-form-32 .wpforms-field-container {
  display: flex;
  gap: 0 14px;
  width: 100%;
  flex-wrap: wrap;
}
#wpforms-form-32 .wpforms-field {
  width: 100%;
}
#wpforms-form-32 .wpforms-field.half-width {
  width: 48%;
}
#wpforms-form-32 .wpforms-field label {
  display: block;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 10px;
  font-size: 0.95rem;
}
#wpforms-form-32 .wpforms-field input,
#wpforms-form-32 .wpforms-field select,
#wpforms-form-32 .wpforms-submit {
  height: 60px;
}
#wpforms-form-32 .wpforms-field input,
#wpforms-form-32 .wpforms-field textarea,
#wpforms-form-32 .wpforms-field select {
  width: 100%;
  padding: 14px 22px;
  border: 2px solid var(--gray-100);
  border-radius: 14px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
  background: var(--gray-50);
  color: var(--gray-800);
}
#wpforms-form-32 .wpforms-field input:focus,
#wpforms-form-32 .wpforms-field textarea:focus,
#wpforms-form-32 .wpforms-field select:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(20, 122, 62, 0.1);
}
#wpforms-form-32 .wpforms-field input::placeholder,
#wpforms-form-32 .wpforms-field textarea::placeholder {
  color: var(--gray-400);
}
#wpforms-form-32 .wpforms-field textarea {
  resize: vertical;
  max-height: 140px;
}
#wpforms-form-32 .wpforms-field a {
  text-decoration: none;
  color: var(--primary);
}
#wpforms-form-32 .wpforms-field a:hover {
  text-decoration: underline;
}
#wpforms-form-32 .wpforms-submit {
  width: 100%;
  padding: 20px 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  margin-top: 1rem;
  color: var(--white);
  border: none;
  border-radius: 14px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(20, 122, 62, 0.3);
}
#wpforms-form-32 .wpforms-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(20, 122, 62, 0.4);
}
@media screen and (max-width: 767px) {
  #wpforms-form-32 .wpforms-field.half-width {
    width: 100%;
  }
}
.footer {
  background: var(--black);
  color: var(--white);
  padding: 100px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  margin: 24px 0 32px;
  line-height: 1.8;
  max-width: 320px;
}
.footer-brand img {
  height: 46px;
  filter: brightness(0) invert(1);
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-4px);
}
.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--white);
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 14px;
}
.footer-col ul a,
.footer-col:last-child ul li:first-child {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.footer-col ul a:hover {
  color: var(--accent-light);
  transform: translateX(6px);
}
.footer-col:last-child ul li:first-child {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 14px;
}
.footer-col:last-child ul li:first-child svg {
  margin-top: 6px;
  stroke: rgba(255, 255, 255, 0.6);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}
.footer-bottom-links {
  display: flex;
  gap: 32px;
}
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-bottom-links a:hover {
  color: var(--accent-light);
}
.floating-buttons {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}
.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.4s;
  box-shadow: 0 20px 60px rgba(10, 61, 35, 0.15);
  position: relative;
}
.float-btn:hover {
  transform: translateY(-5px) scale(1.1);
}
.float-btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}
.float-btn-phone {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}
.float-btn-top {
  background: linear-gradient(135deg, var(--gray-700), var(--gray-800));
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.float-btn-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.float-btn-tooltip {
  position: absolute;
  right: 75px;
  background: var(--black);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  pointer-events: none;
}
.float-btn:hover .float-btn-tooltip {
  opacity: 1;
  visibility: visible;
}
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: var(--white);
  border-radius: 32px;
  overflow: hidden;
  max-width: 900px;
  width: 90%;
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.3);
}
.popup.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: var(--gray-100);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  transition: all 0.3s;
  z-index: 10;
}
.popup-close:hover {
  background: var(--gray-200);
  color: var(--black);
}
.popup-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.popup-image {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
}
.popup-image svg {
  width: 120px;
  height: 120px;
  margin-bottom: 24px;
  opacity: 0.9;
}
.popup-image h4 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 12px;
}
.popup-image p {
  opacity: 0.85;
  font-size: 1rem;
}
.popup-form {
  padding: 90px 60px;
}
.popup-form h3 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 12px;
}
.popup-form > p {
  color: var(--gray-500);
  margin-bottom: 32px;
}
.popup-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.popup-cta-buttons .popup-call-btn {
  width: 100%;
  padding: 20px 30px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border: none;
  border-radius: 14px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(20, 122, 62, 0.3);
}
.popup-cta-buttons .popup-call-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(20, 122, 62, 0.4);
}
.popup-cta-buttons #wpforms-form-32 .wpforms-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.popup-form .form-group {
  margin-bottom: 20px;
}
.popup-discount {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary-dark);
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 800;
  margin-bottom: 24px;
}
@media screen and (max-width: 576px) {
  .popup-close {
    top: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s;
}
.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s;
}
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 992px) {
  .reveal-left {
    transform: translateX(-30px);
  }
  .reveal-right {
    transform: translateX(30px);
  }
}
@media (max-width: 768px) {
  .reveal-left {
    transform: translateX(-20px);
  }
  .reveal-right {
    transform: translateX(20px);
  }
}
@media (max-width: 480px) {
  .reveal-left,
  .reveal-right {
    transform: translateX(0);
    transform: translateY(30px);
  }
  .reveal-left.active,
  .reveal-right.active {
    transform: translateY(0);
  }
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s;
}
.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}
.stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s;
}
.stagger.active > *:nth-child(1) {
  transition-delay: 0.1s;
}
.stagger.active > *:nth-child(2) {
  transition-delay: 0.2s;
}
.stagger.active > *:nth-child(3) {
  transition-delay: 0.3s;
}
.stagger.active > *:nth-child(4) {
  transition-delay: 0.4s;
}
.stagger.active > *:nth-child(5) {
  transition-delay: 0.5s;
}
.stagger.active > *:nth-child(6) {
  transition-delay: 0.6s;
}
.stagger.active > * {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }
  .hero-content {
    gap: 50px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .review-card {
    flex: 0 0 calc(50% - 15px);
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .hero-bg {
    opacity: 0.2;
  }
  .about-content h3 {
    font-size: 2rem;
  }
  .about-decoration {
    left: 30px;
  }
}
@media (max-width: 992px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hero-image-stat {
    gap: 16px;
  }
  .hero-stat-item h4 {
    font-size: 2rem;
  }
  .mobile-toggle {
    display: flex;
  }
  .hero-content {
    grid-template-columns: 1fr;
    text-align: left;
    padding-top: 2rem;
  }
  .hero-description {
    margin: 0 auto 40px;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
  }
  .hero-visual {
    max-width: 600px;
    margin: 0 auto;
  }
  .hero-float-card-1 {
    right: 0;
  }
  .hero-float-card-2 {
    left: 0;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-images {
    height: 500px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .faq-content {
    position: static;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .popup-content {
    grid-template-columns: 1fr;
  }
  .popup-image {
    padding: 40px;
  }
  .popup-form {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  .hero {
    padding-top: 80px;
  }
  .hero-float-card {
    display: none;
  }
  .hero-image {
    height: 350px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .review-card {
    flex: 0 0 100%;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .about-images {
    height: 400px;
  }
  .about-img-1 {
    width: 80%;
    height: 60%;
  }
  .about-img-2 {
    width: 60%;
    height: 45%;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .floating-buttons {
    right: 20px;
    bottom: 20px;
  }
  .float-btn {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }
  .popup {
    width: 95%;
    border-radius: 24px;
  }
  .popup-image {
    display: none;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .service-card {
    padding: 32px 24px;
  }
  .contact-info,
  .contact-form-wrapper {
    padding: 30px 24px;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* Legal Pages (Impressum, Datenschutz) */
.legal-section {
  padding: 160px 0 80px;
}
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h1 {
  color: var(--black);
}
.legal-content h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--black);
  margin: 40px 0 20px;
  line-height: 1.3;
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-800);
  margin: 32px 0 16px;
}
.legal-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-700);
  margin: 24px 0 12px;
}
.legal-content p {
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.8;
}
.legal-content a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s;
}
.legal-content a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}
.legal-content ul {
  margin: 16px 0;
  padding-left: 24px;
  color: var(--gray-600);
}
.legal-content ul li {
  margin-bottom: 8px;
  line-height: 1.7;
}
.legal-content img {
  max-width: 100%;
  height: auto;
  margin: 16px 0;
}
@media (max-width: 768px) {
  .legal-section {
    padding: 100px 0 60px;
  }
  .legal-content h2 {
    font-size: 1.5rem;
  }
  .legal-content h3 {
    font-size: 1.15rem;
  }
}
