@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/inter-400-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/inter-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
  --primary: #079D6B;
  --primary-dark: #067a53;
  --primary-light: #0ab87e;
  --primary-bg: rgba(7, 157, 107, 0.06);
  --white: #ffffff;
  --off-white: #f8faf9;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 40px -10px rgba(0,0,0,0.1);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  font-family: var(--font);
  color: var(--gray-700);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  color: rgba(15, 42, 35, 0.95);
  font-weight: 700;
  line-height: 1.25;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { color: var(--gray-600); }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 100px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.section-header p {
  max-width: 600px;
  margin: 24px auto 0;
  font-size: 1.1rem;
}
.bg-light {
  background: var(--off-white);
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #00d4aa);
  z-index: 10001;
  width: 0%;
  box-shadow: 0 0 10px rgba(7, 157, 107, 0.5);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7, 157, 107, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}
.hero:hover .hero-glow {
  opacity: 1;
}
.tilt-card {
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.15s ease;
}
.btn-magnetic {
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.stagger-in > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.stagger-in.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-in.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-in.visible > *:nth-child(3) { transition-delay: 0.12s; }
.stagger-in.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-in.visible > *:nth-child(5) { transition-delay: 0.28s; }
.stagger-in.visible > *:nth-child(6) { transition-delay: 0.36s; }
.stagger-in.visible > *:nth-child(7) { transition-delay: 0.44s; }
.stagger-in.visible > *:nth-child(8) { transition-delay: 0.52s; }
.stagger-in.visible > *:nth-child(9) { transition-delay: 0.6s; }
.stagger-in.visible > *:nth-child(10) { transition-delay: 0.68s; }
.stagger-in.visible > * {
  opacity: 1;
  transform: translateY(0);
}
.text-reveal {
  overflow: hidden;
  display: inline-block;
}
.text-reveal-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.text-reveal.revealed .text-reveal-inner {
  transform: translateY(0);
}
.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    115deg,
    transparent 40%,
    rgba(7, 157, 107, 0.06) 45%,
    rgba(7, 157, 107, 0.1) 50%,
    rgba(7, 157, 107, 0.06) 55%,
    transparent 60%
  );
  transform: translateX(-100%);
  pointer-events: none;
}
.service-card:hover::after {
  animation: shimmer 0.8s ease forwards;
}
@keyframes shimmer {
  100% { transform: translateX(100%); }
}
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: rippleEffect 0.6s linear;
  pointer-events: none;
}
@keyframes rippleEffect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
.section-header h2::after {
  transform: scaleX(0) translateX(-50%);
  transform-origin: center;
}
.section-header.visible h2::after {
  transform: scaleX(1) translateX(-50%);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(7, 157, 107, 0.1), 0 0 20px rgba(7, 157, 107, 0.08);
}
.tech-grid .tech-item {
  opacity: 0;
  transform: scale(0.5) rotate(-10deg);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.tech-grid.visible .tech-item {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
.tech-grid.visible .tech-item:nth-child(1) { transition-delay: 0.0s; }
.tech-grid.visible .tech-item:nth-child(2) { transition-delay: 0.07s; }
.tech-grid.visible .tech-item:nth-child(3) { transition-delay: 0.14s; }
.tech-grid.visible .tech-item:nth-child(4) { transition-delay: 0.21s; }
.tech-grid.visible .tech-item:nth-child(5) { transition-delay: 0.28s; }
.tech-grid.visible .tech-item:nth-child(6) { transition-delay: 0.35s; }
.tech-grid.visible .tech-item:nth-child(7) { transition-delay: 0.42s; }
.tech-grid.visible .tech-item:nth-child(8) { transition-delay: 0.49s; }
.tech-grid.visible .tech-item:nth-child(9) { transition-delay: 0.56s; }
.tech-grid.visible .tech-item:nth-child(10) { transition-delay: 0.63s; }
.experience-card h3 {
  transition: text-shadow 0.4s ease;
}
.experience-card:hover h3 {
  text-shadow: 0 0 20px rgba(7, 157, 107, 0.4), 0 0 40px rgba(7, 157, 107, 0.2);
}
.hero-logo {
  animation: logoPulse 3s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { box-shadow: 0 20px 40px -10px rgba(15, 42, 35, 0.3); }
  50% { box-shadow: 0 20px 60px -5px rgba(7, 157, 107, 0.4), 0 0 30px rgba(7, 157, 107, 0.15); }
}
.team-avatar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(7, 157, 107, 0.08), transparent);
  transition: none;
}
.team-card:hover .team-avatar::after {
  animation: teamShimmer 1s ease forwards;
}
@keyframes teamShimmer {
  100% { left: 100%; }
}
.about-image-main {
  animation: aboutFloat 6s ease-in-out infinite;
}
@keyframes aboutFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-8px) rotate(0.5deg); }
  66% { transform: translateY(4px) rotate(-0.5deg); }
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(7, 157, 107, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(7, 157, 107, 0.3);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 42, 35, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
  padding: 16px 0;
}
.navbar.scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  padding: 10px 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
}
.nav-logo img {
  height: 38px;
  width: auto;
}
#lyve_horizontal {
    height: 20px;
    width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}
.nav-cta .btn.btn-primary,
.nav-cta .btn.btn-primary:hover,
.nav-cta a.active.btn-primary {
  color: var(--white);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-cta {
  margin-left: 8px;
}
.nav-cta .btn {
  padding: 10px 28px;
  font-size: 0.9rem;
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--white) 0%, var(--off-white) 50%, rgba(7, 157, 107, 0.04) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7, 157, 107, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7, 157, 107, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content {
  max-width: 560px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-bg);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(7, 157, 107, 0.15);
}
.hero-badge i {
  font-size: 0.85rem;
}
.hero-content h1 {
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-content h1 .highlight {
  color: var(--primary);
  position: relative;
  background: linear-gradient(90deg, var(--primary), #00d4aa, var(--primary-dark), var(--primary));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-content p {
  font-size: 1.15rem;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}
.hero-stat h4 {
  font-size: 1.8rem;
  color: var(--primary);
  font-weight: 800;
}
.hero-stat p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-top: 2px;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-illustration {
  width: 100%;
  max-width: 520px;
  background: none;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: none;
}
.hero-logo {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
  background: #0f2a23;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.hero-map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.hero-map-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.hero-map-label i {
  color: var(--primary);
  font-size: 0.95rem;
}
.hero-map-label span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-800);
}
.floating-card {
  position: absolute;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 6s ease-in-out infinite;
  border: 1px solid var(--gray-100);
}
.floating-card i {
  font-size: 1.3rem;
  color: var(--primary);
}
.floating-card span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-800);
}
.floating-card:nth-child(2) {
  top: 8%;
  right: -5%;
  animation-delay: -1s;
}
.floating-card:nth-child(3) {
  top: 8%;
  left: -5%;
  animation-delay: -2.5s;
}
.floating-card:nth-child(4) {
  bottom: 8%;
  left: -5%;
  animation-delay: -4s;
}
.floating-card:nth-child(5) {
  bottom: 8%;
  right: -5%;
  animation-delay: -5.5s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-image-main i {
  font-size: 6rem;
  color: rgba(255,255,255,0.2);
}
.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-image-badge h4 {
  font-size: 1.5rem;
  color: var(--primary);
}
.about-image-badge p {
  font-size: 0.85rem;
  color: var(--gray-500);
}
.about-content h2 {
  margin-bottom: 20px;
}
.about-content > p {
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.about-features {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-feature i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.about-feature span {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-700);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(7, 157, 107, 0.2);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition);
}
.service-icon i {
  font-size: 1.5rem;
  color: var(--primary);
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--primary);
}
.service-card:hover .service-icon i {
  color: var(--white);
}
.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}
.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  min-width: 130px;
  transition: all var(--transition);
}
.tech-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(7, 157, 107, 0.25);
}
.tech-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--primary-bg);
  color: var(--primary);
  transition: all var(--transition);
}
.tech-item:hover .tech-icon {
  background: var(--primary);
  color: var(--white);
}
.tech-icon i {
  font-size: 1.6rem;
}
.tech-icon .tech-svg {
  width: 26px;
  height: 26px;
}
.tech-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
}
.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}
.process-step {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
  align-items: flex-start;
}
.process-step:last-child {
  margin-bottom: 0;
}
.process-number {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--gray-400);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}
.process-step:hover .process-number {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(7, 157, 107, 0.3);
}
.process-content {
  background: var(--white);
  padding: 28px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  flex: 1;
  transition: all var(--transition);
}
.process-step:hover .process-content {
  border-color: rgba(7, 157, 107, 0.3);
  box-shadow: var(--shadow);
}
.process-content h3 {
  margin-bottom: 8px;
  color: var(--gray-800);
}
.process-content p {
  font-size: 0.95rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
  justify-items: center;
}
.team-grid .team-card:only-child {
  grid-column: 1 / -1;
  max-width: 380px;
  width: 100%;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  text-align: center;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.team-avatar {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary-bg), rgba(7, 157, 107, 0.02));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-avatar i {
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.25;
}
.team-info {
  padding: 28px;
}
.team-info h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.team-info .team-role {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.team-info p {
  font-size: 0.9rem;
  line-height: 1.6;
}
.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.experience-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.experience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(7, 157, 107, 0.2);
}
.experience-card .exp-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all var(--transition);
}
.experience-card:hover .exp-icon {
  background: var(--primary);
}
.experience-card .exp-icon i {
  font-size: 1.4rem;
  color: var(--primary);
  transition: color var(--transition);
}
.experience-card:hover .exp-icon i {
  color: var(--white);
}
.experience-card h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 4px;
}
.experience-card p {
  font-size: 0.9rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-card .quote-icon {
  color: var(--primary);
  font-size: 1.8rem;
  opacity: 0.3;
  margin-bottom: 16px;
}
.testimonial-card p {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-author-avatar i {
  color: var(--primary);
  font-size: 1rem;
}
.testimonial-author-info strong {
  font-size: 0.9rem;
  display: block;
  color: var(--gray-800);
}
.testimonial-author-info span {
  font-size: 0.8rem;
  color: var(--gray-500);
}
.stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 16px;
  display: flex;
  gap: 2px;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.location-info h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.location-info > p {
  margin-bottom: 28px;
  font-size: 1.05rem;
}
.location-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.location-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.location-detail-icon i {
  color: var(--primary);
  font-size: 1.1rem;
}
.location-detail-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--gray-800);
  margin-bottom: 2px;
}
.location-detail-text span {
  font-size: 0.9rem;
  color: var(--gray-500);
}
.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  height: 400px;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.map-consent-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  text-align: center;
  padding: 32px;
}
.map-consent-content i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.map-consent-content h4 {
  font-size: 1.1rem;
  color: var(--gray-800);
  margin-bottom: 8px;
}
.map-consent-content p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 16px;
  max-width: 280px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.contact-info > p {
  font-size: 1.05rem;
  margin-bottom: 32px;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-method-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.contact-method:hover .contact-method-icon {
  background: var(--primary);
}
.contact-method-icon i {
  color: var(--primary);
  font-size: 1.2rem;
  transition: color var(--transition);
}
.contact-method:hover .contact-method-icon i {
  color: var(--white);
}
.contact-method-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--gray-800);
}
.contact-method-text span {
  font-size: 0.9rem;
  color: var(--gray-500);
}
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--gray-50);
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(7, 157, 107, 0.1);
}
.form-group textarea {
  min-height: 130px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-submit {
  margin-top: 8px;
}
.form-submit .btn {
  width: 100%;
  justify-content: center;
}
.form-notice {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--gray-400);
}
.form-notice a {
  color: var(--primary);
  text-decoration: underline;
}
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.cta-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  max-width: 550px;
  margin: 0 auto 32px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer {
  background: rgba(15, 42, 35, 0.95);
  color: var(--gray-400);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-400);
}
.footer-brand .nav-logo {
  color: var(--white);
}
.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-links a {
  display: block;
  color: var(--gray-400);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: all var(--transition);
}
.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 6px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}
.footer-contact-item i {
  color: var(--primary);
  width: 18px;
  text-align: center;
}
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a:hover {
  color: var(--primary-light);
}
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 999;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(7, 157, 107, 0.4);
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.legal-page {
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: 80vh;
}
.legal-page h1 {
  margin-bottom: 12px;
  font-size: 2.2rem;
}
.legal-page .legal-updated {
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-bottom: 40px;
}
.legal-page h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 12px;
}
.legal-page h3 {
  font-size: 1.15rem;
  margin-top: 24px;
  margin-bottom: 8px;
}
.legal-page p,
.legal-page li {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-page ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 42, 35, 0.95);
  color: var(--gray-300);
  padding: 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 2px solid var(--primary);
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cookie-banner p {
  font-size: 0.9rem;
  color: var(--gray-300);
  flex: 1;
}
.cookie-banner p a {
  color: var(--primary-light);
  text-decoration: underline;
}
.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    display: none;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    background: #0f2a23;
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 0;
    box-shadow: none;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 998;
    align-items: flex-start;
    overflow-y: auto;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links a {
    padding: 18px 0;
    font-size: 1.3rem;
    font-weight: 600;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: -0.3px;
  }
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--primary-light);
  }
  .nav-links a::after,
  .nav-links a:hover::after,
  .nav-links a.active::after {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }
  .nav-cta {
    margin-left: 0;
    margin-top: 28px;
    width: 100%;
  }
  .nav-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
  }
  .nav-toggle {
    display: flex;
    z-index: 999;
  }
  .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);
  }
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }
  .nav-overlay.open {
    opacity: 1;
    visibility: visible;
  }
  .services-grid,
  .experience-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }
  .process-step {
    gap: 20px;
  }
  .process-content {
    padding: 20px 24px;
  }
  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }
  .hero {
    padding-top: 120px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero-badge { font-size: 0.8rem; }
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
}

/* ── Service Rows ────────────────────────────────────────── */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-row {
  display: grid;
  grid-template-columns: 48px 64px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 36px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: background var(--transition);
}
.service-row:last-child {
  border-bottom: none;
}
.service-row:hover {
  background: var(--off-white);
}
.service-row-number {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-300);
  letter-spacing: 1px;
}
.service-row-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.service-row:hover .service-row-icon {
  background: var(--primary);
}
.service-row-icon i {
  font-size: 1.2rem;
  color: var(--primary);
  transition: color var(--transition);
}
.service-row:hover .service-row-icon i {
  color: var(--white);
}
.service-row-content h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.service-row-content p {
  font-size: 0.9rem;
  line-height: 1.6;
}
.service-row-cta {
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--transition);
}
.service-row:hover .service-row-cta {
  opacity: 1;
  transform: translateX(0);
}

/* ── Why Section ─────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-intro h2 {
  margin-bottom: 16px;
}
.why-intro p {
  font-size: 1.05rem;
  line-height: 1.8;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-check i {
  font-size: 0.75rem;
  color: var(--white);
}
.why-item strong {
  display: block;
  font-size: 1rem;
  color: var(--gray-800);
  margin-bottom: 4px;
}
.why-item p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .service-row {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto;
    gap: 12px 16px;
    padding: 20px 20px;
  }
  .service-row-number {
    grid-row: 1;
    grid-column: 1;
    align-self: start;
    padding-top: 4px;
  }
  .service-row-icon {
    display: none;
  }
  .service-row-content {
    grid-row: 1 / 3;
    grid-column: 2;
  }
  .service-row-cta {
    grid-row: 2;
    grid-column: 2;
    opacity: 1;
    transform: none;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ── Trust Bar responsive ────────────────────────────────── */
.trust-bar {
  background: rgba(15, 42, 35, 0.95);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
}
.trust-item i {
  color: var(--primary-light);
  font-size: 1rem;
}
.trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.1);
}

/* ── Testimonials CTA ────────────────────────────────────── */
.testimonials-cta {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}
.testimonials-cta p {
  font-size: 0.95rem;
  color: var(--gray-500);
}
.testimonials-cta a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.testimonials-cta a:hover {
  color: var(--primary-dark);
}
.testimonials-cta a i {
  font-size: 0.75rem;
  margin-left: 4px;
}

/* ── CTA outline-white button ────────────────────────────── */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ── Trust-bar responsive ────────────────────────────────── */
@media (max-width: 768px) {
  .trust-bar-inner {
    gap: 0;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }
  .trust-divider {
    display: none;
  }
  .trust-item {
    padding: 8px 18px;
    white-space: nowrap;
    flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}
