/* ============================================
   ADVANTE MANAGEMENT SERVICES
   Custom Styles — "Structured Growth" Aesthetic
   ============================================ */

/* --- CSS Variables --- */
:root {
  /* Brand Greens */
  --green-50: #f0faf0;
  --green-100: #d4f5d4;
  --green-200: #a8e6a8;
  --green-300: #6dd66d;
  --green-400: #3ec73e;
  --green-500: #00a651;

  /* Accessible green for text on light backgrounds (4.5:1+ on white) */
  --green-text: #007a3d;
  --green-600: #008c44;
  --green-700: #007338;
  --green-800: #005a2c;
  --green-900: #0a3d1f;

  /* Lime accent (from logo gradient) */
  --lime-400: #8dc63f;
  --lime-500: #7ab632;
  --lime-600: #6aa528;

  /* Red accent (from logo) */
  --red-500: #ed1c24;
  --red-600: #d41920;
  --red-700: #b5151b;

  /* Neutrals */
  --gray-50: #fafafa;
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-300: #d4d4d8;
  --gray-400: #a1a1aa;
  --gray-500: #71717a;
  --gray-600: #52525b;
  --gray-700: #3f3f46;
  --gray-800: #27272a;
  --gray-900: #18181b;

  /* Functional */
  --bg-primary: #ffffff;
  --bg-secondary: #f8faf8;
  --bg-dark: #0f1f14;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-muted: #71717a;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.04);
  --shadow-card-hover: 0 4px 12px rgba(0,0,0,0.08), 0 16px 40px rgba(0,0,0,0.06);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Base Reset & Typography --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Serif display font for headings */
.font-serif {
  font-family: 'Instrument Serif', serif;
}

h1, h2, h3 {
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* --- Geometric Background Pattern --- */
.geo-pattern {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.geo-pattern::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 166, 81, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.geo-pattern::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(141, 198, 63, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

/* Growth bars decoration (echoing logo) */
.growth-bars {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  opacity: 0.07;
  pointer-events: none;
}

.growth-bars span {
  display: block;
  width: 24px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, var(--lime-400), var(--green-500));
}

.growth-bars span:nth-child(1) { height: 40px; }
.growth-bars span:nth-child(2) { height: 64px; }
.growth-bars span:nth-child(3) { height: 96px; }
.growth-bars span:nth-child(4) { height: 140px; }
.growth-bars span:nth-child(5) { height: 180px; }

/* --- Navigation --- */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s var(--ease-out);
}

.nav-wrapper.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height 0.4s var(--ease-out);
}

.nav-wrapper.scrolled .nav-inner {
  height: 64px;
}

.nav-logo img {
  height: 48px;
  width: auto;
  transition: height 0.4s var(--ease-out);
}

.nav-wrapper.scrolled .nav-logo img {
  height: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-600);
}

.nav-links a.active:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green-500);
  border-radius: 1px;
}

/* Services dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: white;
  border-radius: 16px;
  padding: 0.75rem;
  min-width: 280px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-out);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.875rem;
  border-radius: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary) !important;
  transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover {
  background: var(--green-50);
  color: var(--green-700) !important;
}

.nav-dropdown-menu a::after {
  display: none !important;
}

.dropdown-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Nav CTA */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--green-600);
  color: white !important;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s var(--ease-out);
}

.nav-cta:hover {
  background: var(--green-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 140, 68, 0.3);
}

.nav-cta::after {
  display: none !important;
}

/* Mobile menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

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

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

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 999;
  padding: 100px 2rem 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  display: block;
  padding: 0.875rem 0;
  font-size: 1.1rem;
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-100);
  font-weight: 500;
}

.mobile-menu a:hover {
  color: var(--green-600);
}

.mobile-menu .submenu-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  border-bottom: none;
  padding: 0;
}

.mobile-menu .submenu a {
  padding-left: 1rem;
  font-size: 1rem;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f8fdf8 0%, #eef8ee 30%, #f0f9f0 60%, #fafafa 100%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -5%;
  width: 50vw;
  height: 50vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle, rgba(0, 166, 81, 0.08) 0%, rgba(141, 198, 63, 0.03) 50%, transparent 70%);
  border-radius: 50%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

/* Grid lines decoration */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

.hero-grid-lines::before {
  content: '';
  position: absolute;
  top: 20%;
  right: 8%;
  width: 1px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, var(--green-200), transparent);
}

.hero-grid-lines::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 16%;
  width: 1px;
  height: 40%;
  background: linear-gradient(to bottom, transparent, var(--green-200), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: white;
  border: 1px solid var(--green-200);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-700);
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green-500);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero h1 .accent {
  color: var(--green-700);
  position: relative;
}

.hero h1 .accent-line {
  position: relative;
  display: inline-block;
}

.hero h1 .accent-line::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red-500);
  border-radius: 2px;
  opacity: 0.7;
}

.hero p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Abstract visual: stacked cards representing services */
.hero-graphic {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
}

.hero-card {
  position: absolute;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 1.75rem;
  border: 1px solid var(--gray-100);
  transition: transform 0.6s var(--ease-out);
}

.hero-card:hover {
  transform: translate(-4px, -4px) !important;
}

.hero-card-1 {
  top: 5%;
  left: 5%;
  width: 65%;
  z-index: 3;
}

.hero-card-2 {
  top: 25%;
  right: 0;
  width: 55%;
  z-index: 2;
  background: var(--bg-dark);
  color: white;
}

.hero-card-3 {
  bottom: 5%;
  left: 10%;
  width: 60%;
  z-index: 1;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: white;
}

.hero-card .card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.hero-card-1 .card-icon {
  background: var(--green-50);
}

.hero-card-2 .card-icon {
  background: rgba(255,255,255,0.1);
}

.hero-card-3 .card-icon {
  background: rgba(255,255,255,0.2);
}

.hero-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.hero-card p {
  font-size: 0.8rem;
  line-height: 1.4;
  margin-bottom: 0;
}

/* Card 1 (white bg): dark gray text */
.hero-card-1 p {
  color: var(--text-secondary);
}

/* Card 2 (dark bg): high-contrast white text */
.hero-card-2 p {
  color: rgba(255,255,255,0.85);
}

/* Card 3 (green bg): high-contrast white text */
.hero-card-3 p {
  color: rgba(255,255,255,0.9);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease-out);
  font-family: inherit;
}

.btn-primary {
  background: var(--green-600);
  color: white;
}

.btn-primary:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 140, 68, 0.3);
}

.btn-secondary {
  background: white;
  color: var(--text-primary);
  border: 1.5px solid var(--gray-200);
}

.btn-secondary:hover {
  border-color: var(--gray-300);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-dark {
  background: var(--bg-dark);
  color: white;
}

.btn-dark:hover {
  background: var(--gray-800);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--green-600);
  padding: 0.875rem 0;
}

.btn-ghost:hover {
  color: var(--green-700);
}

.btn-ghost svg,
.btn-ghost .arrow {
  transition: transform 0.3s var(--ease-out);
}

.btn-ghost:hover svg,
.btn-ghost:hover .arrow {
  transform: translateX(4px);
}

.btn-white {
  background: white;
  color: var(--green-700);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* --- Stats Section --- */
.stats-bar {
  padding: 4rem 1.5rem;
  background: white;
  border-bottom: 1px solid var(--gray-100);
}

.stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--gray-200);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-600);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

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

/* --- Section Styles --- */
.section {
  padding: 6rem 1.5rem;
  position: relative;
}

.section-dark {
  background: var(--bg-dark);
  color: white;
}

.section-gray {
  background: var(--bg-secondary);
}

.section-green {
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  color: white;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  max-width: 640px;
  margin-bottom: 4rem;
}

.section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-600);
  margin-bottom: 1rem;
}

.section-dark .section-tag {
  color: var(--lime-400);
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--gray-900);
}

.section-dark .section-header h2 {
  color: white;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.section-dark .section-header p {
  color: rgba(255,255,255,0.7);
}

/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 2.25rem;
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lime-400), var(--green-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--green-100);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  background: var(--green-50);
  color: var(--green-600);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}

.service-card p {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green-600);
  transition: gap 0.3s var(--ease-out);
}

.service-card:hover .card-link {
  gap: 0.625rem;
}

/* --- Pricing Cards --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  border: 1.5px solid var(--gray-200);
  position: relative;
  transition: all 0.4s var(--ease-out);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.pricing-card.featured {
  border-color: var(--green-600);
  box-shadow: 0 0 0 1px var(--green-600), var(--shadow-lg);
}

.pricing-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-600);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-name {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.pricing-currency {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.pricing-value {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--gray-900);
}

.pricing-period {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pricing-features li::before {
  content: '✓';
  color: var(--green-600);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

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

/* --- Feature List (for service detail pages) --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  background: var(--green-50);
  color: var(--green-600);
  flex-shrink: 0;
}

.feature-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Process/Steps --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-200), var(--lime-400), var(--green-200));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--green-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-600);
  margin: 0 auto 1.25rem;
  transition: all 0.3s var(--ease-out);
}

.process-step:hover .process-number {
  background: var(--green-600);
  border-color: var(--green-600);
  color: white;
  transform: scale(1.1);
}

.process-step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --- CTA Banner --- */
.cta-banner {
  background:
    /* Dot grid pattern */
    radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px),
    /* Diagonal subtle lines */
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 30px,
      rgba(255,255,255,0.03) 30px,
      rgba(255,255,255,0.03) 31px
    ),
    /* Large soft glow top-right */
    radial-gradient(ellipse at 85% 15%, rgba(141, 198, 63, 0.25) 0%, transparent 50%),
    /* Medium soft glow bottom-left */
    radial-gradient(ellipse at 10% 90%, rgba(255,255,255,0.08) 0%, transparent 40%),
    /* Accent glow center-left */
    radial-gradient(ellipse at 20% 50%, rgba(141, 198, 63, 0.1) 0%, transparent 35%),
    /* Base gradient */
    linear-gradient(135deg, var(--green-600) 0%, var(--green-800) 100%);
  background-size:
    24px 24px,
    auto,
    auto,
    auto,
    auto,
    auto;
  border-radius: 24px;
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
}

.cta-banner h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}

/* --- Footer --- */
.footer {
  background: var(--bg-dark);
  color: white;
  padding: 5rem 1.5rem 2rem;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-top: 1.25rem;
  max-width: 300px;
}

.footer-brand img {
  height: 36px;
  filter: brightness(0) invert(1);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--green-500);
  color: white;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.footer-col a {
  display: block;
  padding: 0.375rem 0;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* --- Page Header (for inner pages) --- */
.page-header {
  padding: 10rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fdf8 0%, #eef8ee 50%, #f0f9f0 100%);
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.page-header .breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-header .breadcrumb a:hover {
  color: var(--green-600);
}

.page-header .breadcrumb .sep {
  opacity: 0.4;
}

.page-header h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
}

/* --- Testimonials --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 2.25rem;
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease-out);
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.testimonial-stars {
  color: #ca8a04;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-100), var(--lime-400));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--green-700);
  font-size: 1rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
}

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

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-50);
  color: var(--green-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-info-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.contact-info-item a {
  color: var(--green-600);
  text-decoration: none;
}

.contact-info-item a:hover {
  text-decoration: underline;
}

.contact-form {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-100);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: 0.925rem;
  font-family: inherit;
  color: var(--text-primary);
  background: white;
  transition: all 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(0, 166, 81, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* --- Trust Logos --- */
.trust-bar {
  padding: 3rem 1.5rem;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* --- About Page Team --- */
.team-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease-out);
  display: grid;
  grid-template-columns: 280px 1fr;
}

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

.team-photo {
  min-height: 420px;
  background: linear-gradient(135deg, var(--green-100), var(--lime-400));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-photo .initials {
  font-size: 4rem;
  font-weight: 700;
  color: var(--green-700);
  opacity: 0.5;
}

.team-info {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-info h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.team-info .role {
  font-size: 0.925rem;
  color: var(--green-600);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-info p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

  .team-photo {
    min-height: 360px;
  }
}

/* --- Credential badges --- */
.credentials {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.credential-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-700);
}

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* --- Service detail page sections --- */
.service-detail-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-highlight-box {
  background: linear-gradient(135deg, var(--green-50), white);
  border: 1px solid var(--green-100);
  border-radius: 20px;
  padding: 2.5rem;
}

.service-highlight-box h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--green-700);
}

.service-highlight-box ul {
  list-style: none;
}

.service-highlight-box li {
  padding: 0.5rem 0;
  font-size: 0.925rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-highlight-box li::before {
  content: '✓';
  color: var(--green-600);
  font-weight: 700;
}

/* --- Table styles --- */
.info-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.info-table thead {
  background: var(--green-600);
  color: white;
}

.info-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-table td {
  padding: 1rem 1.5rem;
  font-size: 0.925rem;
  border-bottom: 1px solid var(--gray-100);
  color: var(--text-secondary);
}

.info-table tbody tr:last-child td {
  border-bottom: none;
}

.info-table tbody tr:nth-child(even) {
  background: var(--gray-50);
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 768px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  font-family: inherit;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--green-600);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.3s var(--ease-out);
}

.faq-item.active .faq-icon {
  background: var(--green-600);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-answer-inner {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: justify;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    display: none;
  }

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

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

  .stat-item:nth-child(2)::after {
    display: none;
  }

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

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

  .process-grid::before {
    display: none;
  }

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

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

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

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

@media (max-width: 768px) {
  p {
    text-align: justify;
  }

  [style*="text-align:center"] p,
  [style*="text-align: center"] p {
    text-align: center;
  }

  .footer p,
  .hero p {
    text-align: left;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
  }

  .hero-content {
    padding: 2rem 1.5rem 4rem;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    justify-content: center;
  }

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

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .stat-item::after {
    display: none;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .section {
    padding: 4rem 1.5rem;
  }

  .page-header {
    padding: 8rem 1.5rem 3rem;
  }

  .cta-banner {
    padding: 3rem 2rem;
    border-radius: 16px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* --- Utility --- */
.text-green { color: var(--green-500); }
.text-red { color: var(--red-500); }
.bg-green-50 { background: var(--green-50); }
.rounded-2xl { border-radius: 20px; }
.relative { position: relative; }
.z-10 { z-index: 10; }
