:root {
  --primary: #373670;
  --primary-light: #4a4988;
  --primary-dark: #2a2955;
  --secondary: #87d567;
  --secondary-light: #a3e08a;
  --secondary-dark: #6bc44a;
  --accent: #373670;
  --accent-light: #4a4988;
  --text: #e8e8e8;
  --text-muted: #9ca3b5;
  --text-dark: #f0f2f8;
  --bg: #1a1a2e;
  --bg-card: rgba(55, 54, 112, 0.35);
  --bg-card-hover: rgba(55, 54, 112, 0.5);
  --border: rgba(135, 213, 103, 0.15);
  --border-hover: rgba(135, 213, 103, 0.35);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --glass: rgba(26, 26, 46, 0.9);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

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

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  background: rgba(135, 213, 103, 0.1);
  border: 1px solid rgba(135, 213, 103, 0.25);
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.section-text {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn i {
  font-size: 0.9rem;
  transition: transform var(--transition);
}

.btn:hover i {
  transform: translateX(4px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(135, 213, 103, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(135, 213, 103, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 1.5px solid rgba(135, 213, 103, 0.4);
}

.btn-outline:hover {
  background: rgba(135, 213, 103, 0.1);
  border-color: var(--secondary);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Cursor Follower */
.cursor-follower {
  display: none;
}

@media (hover: hover) {
  .cursor-follower {
    display: block;
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s, border-color 0.3s;
    mix-blend-mode: difference;
  }
}

/* ============= HEADER ============= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: var(--glass);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.3rem;
}

.logo-img {
  height: 48px;
  width: auto;
}

.logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  border-radius: 10px;
  color: var(--primary);
  font-size: 1.1rem;
}

.logo-text {
  color: var(--text-dark);
}

.logo-accent {
  color: var(--secondary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--secondary);
  background: rgba(135, 213, 103, 0.1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============= HERO ============= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(55, 54, 112, 0.6) 50%, rgba(26, 26, 46, 0.85) 100%),
    url('../images/hero-bg.jpg') center/cover fixed;
  pointer-events: none;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 0% 50%, rgba(135, 213, 103, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 50%, rgba(55, 54, 112, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(135, 213, 103, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--secondary);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

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

.hero-content {
  max-width: 580px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(135, 213, 103, 0.1);
  border: 1px solid rgba(135, 213, 103, 0.2);
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: bounceDown 2s ease infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.hero-card-header {
  text-align: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.hero-card-brand {
  margin-bottom: 16px;
}

.hero-card-logo {
  max-width: 100px;
  margin: 0 auto;
  display: block;
}

.hero-card-title {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.hero-card-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-card-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.hero-card-location i {
  color: var(--secondary);
  font-size: 0.9rem;
}

.hero-card-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(135, 213, 103, 0.1), transparent);
  border-radius: 50%;
  animation: glowPulse 4s ease infinite;
}

@keyframes glowPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.5);
    opacity: 1;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 20px 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============= ABOUT ============= */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-bg-image {
  position: absolute;
  inset: 0;
  background: url('../images/about-bg.jpg') center/cover;
  opacity: 0.35;
}

.about-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(55, 54, 112, 0.25) 50%, var(--bg) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-features {
  display: grid;
  gap: 20px;
  margin: 32px 0;
}

.about-feature {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.about-feature:hover {
  border-color: var(--border-hover);
  transform: translateX(6px);
}

.feature-text h4 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image-card {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.about-image-card-glow {
  position: absolute;
  top: -20%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(135, 213, 103, 0.12), transparent);
  border-radius: 50%;
  pointer-events: none;
  animation: glowPulse 6s ease infinite;
}

.about-image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  aspect-ratio: 5/6;
}

.about-image-frame .about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: 100%;
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-image-frame:hover .about-image {
  transform: scale(1.05);
}

.about-image-badge {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about-image-badge i {
  color: var(--secondary);
  margin-right: 6px;
}

.about-image-badge span {
  display: flex;
  align-items: center;
}

/* ============= SERVICES ============= */
.services-section {
  position: relative;
  overflow: hidden;
}

.services-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(55, 54, 112, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

.service-card-inner {
  position: relative;
  overflow: hidden;
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 100%;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-card-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.service-card-content .service-features-mini {
  margin-bottom: 16px;
}

.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: scale(1);
  z-index: 0;
}

.service-card:hover .service-card-bg {
  opacity: 0.4;
  transform: scale(1.05);
}

.service-card-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 26, 46, 0) 0%, rgba(26, 26, 46, 0.97) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.service-card:hover .service-card-bg-overlay {
  opacity: 1;
}

.service-card-content {
  position: relative;
  z-index: 2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  perspective: 1000px;
}

.service-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-inner {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-card:hover .service-card-inner::before {
  transform: scaleX(1);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.service-link i {
  transition: transform var(--transition);
}

.service-link:hover i {
  transform: translateX(4px);
}

/* ============= NUMBERS ============= */
.numbers-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.numbers-bg-image {
  position: absolute;
  inset: 0;
  background: url('../images/numbers-bg.jpg') center/cover;
  opacity: 0.30;
  pointer-events: none;
}

.numbers-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(55, 54, 112, 0.75) 0%, rgba(55, 54, 112, 0.6) 100%);
  pointer-events: none;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.number-item {
  text-align: center;
  padding: 40px 20px;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), border-color var(--transition), background var(--transition);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.number-item:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  background: rgba(135, 213, 103, 0.04);
}

.number-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 8px;
  position: relative;
}

.number-value::after {
  content: '+';
  font-size: 2rem;
  color: var(--secondary);
  opacity: 0.5;
}

.number-label {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============= CTA ============= */
.cta-section {
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.cta-bg-image {
  position: absolute;
  inset: 0;
  background: url('../images/cta-bg.jpg') center/cover fixed;
  opacity: 0.45;
  pointer-events: none;
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(55, 54, 112, 0.75) 100%);
  pointer-events: none;
}

.cta-card {
  position: relative;
  padding: 80px 60px;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(135, 213, 103, 0.08), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--text-dark);
  margin-bottom: 16px;
  position: relative;
}

.cta-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  position: relative;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ============= PAGE HERO ============= */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(135, 213, 103, 0.05) 0%, transparent 60%);
}

.page-hero-content {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.page-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--text-dark);
  margin: 16px 0;
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* ============= ABOUT DETAILED ============= */
.about-detailed {
  padding: 60px 0 100px;
}

.about-story {
  display: grid;
  gap: 48px;
}

.story-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

.story-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(135, 213, 103, 0.1);
  border-radius: 14px;
  color: var(--secondary);
  font-size: 1.4rem;
}

.value-card h3 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============= TEAM ============= */
.team-grid {
  display: flex;
  justify-content: center;
}

.team-card {
  max-width: 340px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.team-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.team-image-wrapper {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  position: relative;
  overflow: hidden;
}

.team-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(135, 213, 103, 0.1), transparent);
}

.team-image-placeholder {
  font-size: 5rem;
  color: var(--secondary);
  opacity: 0.6;
  position: relative;
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.team-info {
  padding: 28px;
  text-align: center;
}

.team-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.team-role {
  display: block;
  font-size: 0.85rem;
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 12px;
}

.team-info p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.team-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(135, 213, 103, 0.1);
  color: var(--secondary);
  transition: var(--transition);
}

.team-social a:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* ============= SERVICES DETAILED ============= */
.services-detailed {
  padding: 60px 0 100px;
}

.services-list {
  display: grid;
  gap: 24px;
}

.service-detailed-card {
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.service-detailed-card:hover {
  border-color: var(--border-hover);
  transform: translateX(8px);
}

.service-detailed-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-detailed-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 16px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(135, 213, 103, 0.75);
  position: relative;
  padding-left: 0;
}

.service-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  min-width: 5px;
  background: var(--secondary);
  border-radius: 50%;
  opacity: 0.5;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
  text-decoration: none;
  padding: 8px 20px;
  border: 1px solid rgba(135, 213, 103, 0.2);
  border-radius: 100px;
  transition: all 0.3s ease;
}

.service-link:hover {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}

/* ============= SERVICES BANNER ============= */
.services-banner {
  position: relative;
  padding: 140px 0;
  background: var(--bg-dark);
  overflow: hidden;
}

.services-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/about-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  will-change: transform;
  animation: bannerKenBurns 20s ease-in-out infinite alternate;
}

.services-banner-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(135, 213, 103, 0.15) 0%, transparent 60%);
  pointer-events: none;
  animation: bannerGlow 6s ease-in-out infinite alternate;
}

.services-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.97) 0%, rgba(55,54,112,0.85) 50%, rgba(26,26,46,0.97) 100%);
  pointer-events: none;
}

.services-banner-orb {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(135, 213, 103, 0.04), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: bannerOrbFloat 12s ease-in-out infinite alternate;
}

.services-banner-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.banner-shape {
  position: absolute;
  border: 2px solid rgba(135, 213, 103, 0.2);
  border-radius: 50%;
  background: rgba(135, 213, 103, 0.05);
}

.banner-shape--1 {
  width: 60px;
  height: 60px;
  top: 15%;
  left: 8%;
  animation: bannerShapeDrift 18s ease-in-out infinite;
}

.banner-shape--2 {
  width: 40px;
  height: 40px;
  bottom: 20%;
  right: 12%;
  animation: bannerShapeDrift 22s ease-in-out infinite reverse;
}

.banner-shape--3 {
  width: 30px;
  height: 30px;
  top: 55%;
  left: 50%;
  animation: bannerShapeDrift 15s ease-in-out infinite 3s;
}

@keyframes bannerKenBurns {
  0% { transform: scale(1) translateX(0); }
  100% { transform: scale(1.15) translateX(-30px); }
}

@keyframes bannerGlow {
  0% { opacity: 0.4; transform: translateX(-20px); }
  100% { opacity: 1; transform: translateX(20px); }
}

@keyframes bannerOrbFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-60px, 40px) scale(1.2); }
}

@keyframes bannerShapeDrift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.2; }
  25% { transform: translate(40px, -30px) rotate(90deg); opacity: 0.5; }
  50% { transform: translate(-20px, -60px) rotate(180deg); opacity: 0.3; }
  75% { transform: translate(30px, 20px) rotate(270deg); opacity: 0.6; }
}

.services-banner-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.services-banner-content .section-tag {
  display: inline-block;
  margin-bottom: 16px;
}

.services-banner-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 20px;
}

.services-banner-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.services-banner-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ============= CONTACT ============= */
.contact-section {
  padding: 60px 0 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--border-hover);
  transform: translateX(6px);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(135, 213, 103, 0.1);
  border-radius: 12px;
  color: var(--secondary);
  font-size: 1.2rem;
}

.contact-card-text h4 {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-card-text a,
.contact-card-text p {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}

.contact-card-text a:hover {
  color: var(--secondary);
}

.contact-form-wrapper {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-group {
  display: grid;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--secondary);
  background: rgba(135, 213, 103, 0.05);
  box-shadow: 0 0 0 3px rgba(135, 213, 103, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238892b0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}

.form-group select option {
  background: var(--primary);
  color: var(--text);
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.form-success i {
  font-size: 3rem;
  color: #25d366;
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-muted);
}

/* ============= FOOTER ============= */
.footer {
  background: linear-gradient(180deg, var(--bg) 0%, var(--primary) 100%);
  border-top: 1px solid var(--border);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .logo {
  margin-bottom: 12px;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(135, 213, 103, 0.08);
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}

.footer h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.footer-links ul,
.footer-services ul,
.footer-contact ul {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-services a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-contact i {
  color: var(--secondary);
  width: 16px;
  text-align: center;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-credits {
  color: var(--secondary);
}

/* ============= WHATSAPP FLOAT ============= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulseWhatsApp 2s ease infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulseWhatsApp {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
}

/* ============= REVEAL ANIMATIONS ============= */
/* ============= SECTION REVEAL WRAPPER ============= */
.section-reveal {
  overflow: hidden;
}

/* ============= DATA-ANIM ANIMATION SYSTEM ============= */
[data-anim] {
  opacity: 0;
  will-change: transform, opacity, filter;
}

[data-anim].anim-visible {
  opacity: 1;
}

/* fade-up */
.anim-fade-up {
  transform: translateY(80px);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim-fade-up.anim-visible {
  transform: translateY(0);
}

/* slide-up */
.anim-slide-up {
  transform: translateY(60px);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.8s ease;
}
.anim-slide-up.anim-visible {
  transform: translateY(0);
}

/* slide-right */
.anim-slide-right {
  transform: translateX(-60px);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.8s ease;
}
.anim-slide-right.anim-visible {
  transform: translateX(0);
}

/* scale-in */
.anim-scale-in {
  transform: scale(0.7);
  transition: transform 1s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 1s ease;
}
.anim-scale-in.anim-visible {
  transform: scale(1);
}

/* zoom-in: most dramatic */
.anim-zoom-in {
  transform: translateY(60px) scale(0.85);
  filter: blur(12px);
  transition: transform 1.1s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 1.1s ease,
              filter 1.1s ease;
}
.anim-zoom-in.anim-visible {
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* ============= CONTINUOUS DECORATIVE ANIMATIONS ============= */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}

@keyframes floatReverse {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(16px); }
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.6); opacity: 1; }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ============= RESPONSIVE ============= */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .nav {
    position: relative;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 1001;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(10, 15, 30, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    font-size: 1.4rem;
    padding: 14px 28px;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1002;
    background: transparent;
    border: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .cta-card {
    padding: 40px 24px;
  }

  .cta-title {
    font-size: 2rem;
  }

  .page-title {
    font-size: 2.4rem;
  }

  .service-detailed-card {
    padding: 24px;
  }

  .service-features {
    grid-template-columns: 1fr;
  }

  .story-values {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 24px;
  }

  .about-image-wrapper {
    max-width: 100%;
  }

  .about-exp-card {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 16px;
  }
}

/* ============= SERVICE LANDING PAGE ============= */
.service-landing {
  padding: 60px 0 100px;
}

.service-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-intro-content h2 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.service-intro-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

.service-intro-visual {
  display: flex;
  justify-content: center;
}

.service-intro-card {
  width: 100%;
  max-width: 420px;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.service-intro-card .service-icon-large {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(135, 213, 103, 0.15), rgba(135, 213, 103, 0.05));
  border-radius: 20px;
  color: var(--secondary);
  font-size: 2.2rem;
}

.service-intro-card h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-intro-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.service-feature-card {
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}

.service-feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-feature-card .feature-icon-lg {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(135, 213, 103, 0.1);
  border-radius: 14px;
  color: var(--secondary);
  font-size: 1.5rem;
}

.service-feature-card h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-feature-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.service-process {
  background: linear-gradient(0deg, var(--bg) 0%, rgba(10, 22, 40, 0.3) 100%);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}

.process-step:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 50%;
}

.process-step h4 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.benefit-item:hover {
  border-color: var(--border-hover);
  transform: translateX(6px);
}

.benefit-item i {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-top: 2px;
}

.benefit-item div h4 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.benefit-item div p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-faq {
  background: linear-gradient(0deg, var(--bg) 0%, rgba(10, 22, 40, 0.3) 100%);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--border-hover);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 16px;
}

.faq-question i {
  color: var(--secondary);
  transition: transform var(--transition);
  font-size: 0.9rem;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .service-intro {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .service-features-grid {
    grid-template-columns: 1fr;
  }

  .service-benefits-list {
    grid-template-columns: 1fr;
  }

  .service-intro-content h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .number-value {
    font-size: 2.5rem;
  }

  .service-card-inner {
    padding: 28px 20px;
  }
}

/* ============= SCROLL PROGRESS ============= */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* ============= PARALLAX ORBS ============= */
.parallax-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}

.parallax-orb--1 {
  top: 5%;
  left: -120px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(135, 213, 103, 0.15), transparent 70%);
}

.parallax-orb--2 {
  bottom: 10%;
  right: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(55, 54, 112, 0.2), transparent 70%);
}

.parallax-orb--3 {
  top: 15%;
  right: 10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(135, 213, 103, 0.12), transparent 70%);
}

.parallax-orb--4 {
  bottom: 5%;
  left: 5%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(55, 54, 112, 0.18), transparent 70%);
}

.parallax-orb--5 {
  top: 20%;
  left: 15%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(135, 213, 103, 0.1), transparent 70%);
}

.parallax-orb--6 {
  top: 8%;
  right: 5%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(135, 213, 103, 0.1), transparent 70%);
}

.parallax-orb--7 {
  bottom: 15%;
  left: 8%;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(55, 54, 112, 0.15), transparent 70%);
}

.parallax-orb--8 {
  top: 10%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(135, 213, 103, 0.08), transparent 70%);
}

.parallax-orb--9 {
  top: 12%;
  right: 8%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(135, 213, 103, 0.12), transparent 70%);
}


/* ============= REVEAL CARD (SCALE + BLUR ENTRANCE) ============= */
.reveal-card {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  filter: blur(6px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
              filter 0.8s ease;
}

.reveal-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* ============= REVEAL TEXT (SLIDE MASK) ============= */
.reveal-text {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-text.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============= FLOATING ANIMATION ============= */
@keyframes floatSlow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(1deg); }
  66% { transform: translateY(8px) rotate(-1deg); }
}

/* ============= DATA TILT ============= */
[data-tilt] {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ============= MISSION / PILARES SECTION ============= */
.mission-section {
  position: relative;
  overflow: hidden;
}

.mission-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(135, 213, 103, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(55, 54, 112, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mission-card {
  padding: 48px 32px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.mission-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.mission-glow {
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(135, 213, 103, 0.06), transparent);
  border-radius: 50%;
  pointer-events: none;
  transition: all 0.6s ease;
}

.mission-card:hover .mission-glow {
  transform: translateX(-50%) scale(1.5);
}

.mission-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.mission-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============= PROCESS SECTION ============= */
.process-section {
  position: relative;
  overflow: hidden;
}

.process-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.process-bg-image {
  position: absolute;
  inset: 0;
  background: url('../images/process-bg.jpg') center/cover;
  opacity: 0.35;
}

.process-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(55, 54, 112, 0.2) 50%, var(--bg) 100%);
}

.process-grid {
  display: flex;
  gap: 0;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}

.process-card {
  flex: 1;
  max-width: 260px;
  padding: 40px 24px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.process-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(-6px);
}

.process-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: 4px;
  right: 16px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  user-select: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.process-card:hover .process-number {
  opacity: 0.3;
  transform: scale(1.1);
}

.process-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.process-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin: 0;
}

.process-connector {
  width: 32px;
  min-width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), rgba(135, 213, 103, 0.2));
  align-self: center;
  margin: 0 4px;
}

/* ============= BENEFITS / WHY US SECTION ============= */
.benefits-section {
  position: relative;
  overflow: hidden;
}

.benefits-bg-image {
  position: absolute;
  inset: 0;
  background: url('../images/about-bg.jpg') center/cover;
  opacity: 0.35;
  pointer-events: none;
}

.benefits-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--bg) 0%, rgba(55, 54, 112, 0.2) 50%, var(--bg) 100%);
  pointer-events: none;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  padding: 40px 28px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.benefit-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.benefit-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--secondary), transparent, transparent) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.benefit-card:hover::after {
  opacity: 1;
}

.benefit-card:hover {
  border-color: transparent;
}

.benefit-glow {
  position: absolute;
  top: -50%;
  right: -40%;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(135, 213, 103, 0.05), transparent);
  border-radius: 50%;
  pointer-events: none;
  transition: all 0.6s ease;
}

.benefit-card:hover .benefit-glow {
  transform: scale(2);
  opacity: 0.8;
}

.benefit-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.benefit-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ============= SERVICE FEATURES MINI ============= */
.service-features-mini {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.service-features-mini span {
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(135, 213, 103, 0.06);
  border: 1px solid rgba(135, 213, 103, 0.1);
  color: var(--secondary);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* ============= TEAM HIGHLIGHT ============= */
.team-section {
  position: relative;
  overflow: hidden;
}

.team-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(135, 213, 103, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(55, 54, 112, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.team-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.team-highlight:hover {
  border-color: var(--border-hover);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.team-highlight-glow {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(135, 213, 103, 0.06), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.team-highlight-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.team-highlight-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(135, 213, 103, 0.08), transparent);
}

.team-highlight-photo {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(135, 213, 103, 0.2);
  position: relative;
  z-index: 1;
  transition: border-color 0.4s ease, transform 0.6s ease;
}

.team-highlight:hover .team-highlight-photo {
  border-color: var(--secondary);
  transform: scale(1.03);
}

.team-highlight-info {
  padding: 40px 40px 40px 0;
}

.team-highlight-info h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.team-highlight-role {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 50px;
  background: rgba(135, 213, 103, 0.1);
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.team-highlight-info p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.team-highlight-social {
  display: flex;
  gap: 12px;
}

.team-highlight-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(135, 213, 103, 0.08);
  border: 1px solid rgba(135, 213, 103, 0.15);
  color: var(--secondary);
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.team-highlight-social a:hover {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--primary);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(135, 213, 103, 0.3);
}

/* ============= NUMBERS ENHANCED ============= */
.number-item:nth-child(2) .number-value::after,
.number-item:nth-child(4) .number-value::after {
  content: '';
}

/* ============= BUTTON PULSE ============= */
.btn-pulse {
  animation: btnPulse 2.5s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 4px 40px rgba(37, 211, 102, 0.6), 0 0 60px rgba(37, 211, 102, 0.15);
  }
}

/* ============= CTA BG PARTICLES ============= */
.cta-bg-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 1024px) {
  .mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .process-grid {
    flex-wrap: wrap;
    gap: 16px;
  }

  .process-card {
    flex: 1 1 calc(50% - 8px);
    max-width: none;
  }

  .process-connector {
    display: none;
  }

  .team-highlight {
    grid-template-columns: 1fr;
  }

  .team-highlight-info {
    padding: 0 32px 32px;
    text-align: center;
  }

  .team-highlight-image {
    min-height: 260px;
  }

  .team-highlight-social {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    flex-direction: column;
    gap: 16px;
  }

  .process-card {
    flex: none;
    max-width: none;
  }

  .parallax-orb {
    display: none;
  }

  .team-highlight-image {
    min-height: 220px;
    padding: 24px;
  }

  .team-highlight-photo {
    width: 200px;
    height: 200px;
  }
}

/* ============= INSTAGRAM FEED ============= */
.instagram-section {
  background: var(--bg);
  position: relative;
}

.instagram-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.instagram-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}

.instagram-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.instagram-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.instagram-card:hover img {
  transform: scale(1.05);
}

.instagram-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.95) 0%, rgba(26, 26, 46, 0.3) 40%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.instagram-card:hover .instagram-overlay {
  opacity: 1;
}

.instagram-overlay .instagram-caption {
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.instagram-overlay .instagram-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  color: white;
  font-size: 1.2rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.instagram-follow {
  text-align: center;
  margin-top: 40px;
}

.instagram-follow p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

/* ============= SERVICES BANNER RESPONSIVE ============= */
@media (max-width: 1024px) {
  .services-banner-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .services-banner {
    padding: 100px 0;
  }

  .services-banner-title {
    font-size: 1.8rem;
  }

  .services-banner-text {
    font-size: 1rem;
  }

  .banner-shape--3 {
    display: none;
  }
}

@media (max-width: 480px) {
  .services-banner {
    padding: 80px 0;
  }

  .services-banner-title {
    font-size: 1.5rem;
  }

  .banner-shape--1,
  .banner-shape--2 {
    display: none;
  }
}