/* ============================================================
   OZITGRAND — Main Stylesheet
   ============================================================ */

/* ---------- Variables ---------- */
:root {
  --green:        #22c55e;
  --green-dark:   #16a34a;
  --green-darker: #15803d;
  --green-light:  #dcfce7;
  --black:        #000000;
  --dark-1:       #0a0a0a;
  --dark-2:       #111827;
  --dark-3:       #1f2937;
  --gray-50:      #f9fafb;
  --gray-100:     #f3f4f6;
  --gray-200:     #e5e7eb;
  --gray-400:     #9ca3af;
  --gray-600:     #6b7280;
  --white:        #ffffff;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
  --shadow-lg:  0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
  --shadow-xl:  0 20px 25px -5px rgba(0,0,0,.15), 0 10px 10px -5px rgba(0,0,0,.08);

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-full: 9999px;

  --transition: .25s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--dark-2);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Utilities ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--dark { background: var(--dark-1); color: var(--white); }
.section--gray { background: var(--gray-50); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}
.section--dark .section-header p { color: var(--gray-400); }
.accent { color: var(--green); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(34,197,94,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}
.btn-outline-dark {
  background: transparent;
  color: var(--dark-2);
  border: 2px solid var(--gray-200);
}
.btn-outline-dark:hover {
  border-color: var(--green);
  color: var(--green);
}
.btn-lg { padding: 18px 36px; font-size: 16px; }

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(0,0,0,.98);
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.3px;
}
.nav-logo svg { width: 32px; height: 32px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  position: relative;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.07); }
.nav-link.active { color: var(--green); }

/* Services dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
}
.nav-dropdown-toggle:hover { color: var(--white); background: rgba(255,255,255,.07); }
.nav-dropdown-toggle svg { width: 14px; height: 14px; transition: transform var(--transition); }
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: var(--shadow-xl);
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-size: 13px;
  color: rgba(255,255,255,.75);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-dropdown-menu a:hover {
  background: rgba(255,255,255,.07);
  color: var(--white);
}
.nav-dropdown-menu a span { color: var(--green); font-size: 16px; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone svg { width: 14px; height: 14px; color: var(--green); }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  background: #111 url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.63);
}
.hero-grid-bg {
  display: none;
}
.hero-slides { position: relative; z-index: 1; width: 100%; }
.hero-slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
}
.hero-slide.active { display: grid; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.25);
  color: var(--green);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero-headline {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -.5px;
}
.hero-headline .line-green { color: var(--green); display: block; }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.65);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}
.hero-trust-item svg { width: 16px; height: 16px; color: var(--green); }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 40px;
}
.hero-stat {
  background: rgba(255,255,255,.03);
  padding: 20px;
  text-align: center;
}
.hero-stat .num {
  font-size: 28px;
  font-weight: 800;
  color: var(--green);
  display: block;
}
.hero-stat .lbl {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}

/* Hero visual cards */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}
.hero-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 200px;
  animation: floatCard 4s ease-in-out infinite;
}
.hero-card:nth-child(1) { top: 0; left: 0; animation-delay: 0s; }
.hero-card:nth-child(2) { top: 50%; right: 0; transform: translateY(-50%); animation-delay: 1s; }
.hero-card:nth-child(3) { bottom: 0; left: 15%; animation-delay: 2s; }
.hero-card-icon {
  width: 44px; height: 44px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-card-icon svg { width: 22px; height: 22px; color: var(--green-dark); }
.hero-card-title { font-size: 14px; font-weight: 700; color: var(--dark-2); }
.hero-card-sub { font-size: 12px; color: var(--gray-600); }
.hero-center-badge {
  width: 120px; height: 120px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 0 0 16px rgba(34,197,94,.15), 0 0 0 32px rgba(34,197,94,.06);
}
.hero-center-badge span:first-child { font-size: 28px; line-height: 1; }
.hero-center-badge span:last-child { font-size: 11px; opacity: .8; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-card:nth-child(2) {
  animation-name: floatCard2;
}
@keyframes floatCard2 {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 8px)); }
}

/* Hero dots */
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active {
  background: var(--green);
  width: 24px;
  border-radius: 4px;
}

/* ---------- Ticker ---------- */
.ticker {
  background: var(--dark-2);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ticker-label {
  color: var(--gray-400);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
  padding: 0 24px;
  flex-shrink: 0;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ticker-item svg { width: 16px; height: 16px; color: var(--green); }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34,197,94,.04) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.service-card:hover {
  border-color: var(--green);
  box-shadow: 0 8px 30px rgba(34,197,94,.12);
  transform: translateY(-4px);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px;
  background: var(--green-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; color: var(--green-dark); }
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--dark-2); }
.service-price {
  font-size: 13px;
  color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 12px;
}
.service-card p { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin-bottom: 16px; }
.service-features { margin-bottom: 24px; flex: 1; }
.service-features li {
  font-size: 13px;
  color: var(--gray-600);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-features li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 12px 0;
  border: 1.5px solid var(--green-dark);
  border-radius: 8px;
  background: transparent;
  transition: var(--transition);
  margin-top: auto;
}
.service-link:hover {
  background: var(--green-dark);
  color: #fff;
  gap: 10px;
}
.service-link svg { width: 16px; height: 16px; }

/* ---------- Why Choose ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.why-item { text-align: center; }
.why-icon {
  width: 72px; height: 72px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.why-icon svg { width: 32px; height: 32px; color: var(--green-dark); }
.why-item h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.why-item p { font-size: 15px; color: var(--gray-600); line-height: 1.7; }

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--green);
  padding: 48px 0;
}
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  background: transparent;
  text-align: center;
  padding: 24px;
}
.stat-item .num {
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  display: block;
  line-height: 1;
  letter-spacing: -1px;
}
.stat-item .lbl {
  font-size: 14px;
  color: rgba(255,255,255,.8);
  margin-top: 6px;
  font-weight: 500;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 12px; }
.testimonial-stars svg { width: 16px; height: 16px; color: #f59e0b; fill: #f59e0b; }
.testimonial-quote {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gray-100);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--green-dark);
  background: var(--green-light);
  flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--dark-2); }
.testimonial-role { font-size: 12px; color: var(--gray-400); }

/* ---------- Partners ---------- */
.partners { padding: 64px 0; background: var(--gray-50); }
.partners .section-header { margin-bottom: 40px; }
.partners-track {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: ticker 20s linear infinite;
}
.partner-logo {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-600);
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition);
}
.partner-logo:hover { border-color: var(--green); color: var(--green-dark); }

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green); }
.blog-card-img {
  height: 200px;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.blog-card-body { padding: 24px; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 12px;
}
.blog-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-2);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card-body p { font-size: 13px; color: var(--gray-600); line-height: 1.7; margin-bottom: 16px; }
.blog-read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}
.blog-read-more:hover { gap: 9px; }
.blog-read-more svg { width: 14px; height: 14px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--green); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-2);
  text-align: left;
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.faq-question:hover { color: var(--green-dark); }
.faq-question svg {
  width: 20px; height: 20px;
  color: var(--green);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}
.faq-answer p { font-size: 15px; color: var(--gray-600); line-height: 1.8; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--dark-1);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(34,197,94,.08) 0%, transparent 70%);
}
.cta-banner h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}
.cta-banner p {
  font-size: 18px;
  color: rgba(255,255,255,.6);
  max-width: 520px;
  margin: 0 auto 36px;
  position: relative;
}
.cta-banner .cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark-1);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }
.footer-contact-item a:hover { color: var(--green); }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--green); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.35); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--green); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: var(--dark-1);
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 20% 50%, rgba(34,197,94,.07) 0%, transparent 60%);
}
.page-hero .container { position: relative; }
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.page-hero-breadcrumb a { color: var(--green); }
.page-hero-breadcrumb svg { width: 14px; height: 14px; }
.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  max-width: 700px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,.6);
  max-width: 560px;
  line-height: 1.7;
}

/* ---------- Contact page ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { font-size: 28px; font-weight: 700; margin-bottom: 16px; }
.contact-info > p { font-size: 16px; color: var(--gray-600); line-height: 1.7; margin-bottom: 36px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--green); background: var(--green-light); }
.contact-card-icon {
  width: 44px; height: 44px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg { width: 20px; height: 20px; color: var(--green-dark); }
.contact-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.contact-card p { font-size: 14px; color: var(--gray-600); }
.contact-card a { color: var(--green-dark); font-weight: 600; }
.hours-table { margin-top: 24px; }
.hours-table h3 { font-size: 16px; font-weight: 700; margin-bottom: 14px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-600);
}
.hours-row:last-child { border: none; }
.hours-row .day { font-weight: 600; color: var(--dark-2); }

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.contact-form-wrap > p { font-size: 14px; color: var(--gray-600); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-2);
  margin-bottom: 8px;
}
.form-group label .req { color: var(--green); margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font);
  color: var(--dark-2);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(34,197,94,.12); }
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font);
  color: var(--dark-2);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239ca3af'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}
.form-select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(34,197,94,.12); }
.form-submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
}
.form-submit-btn:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(34,197,94,.35); }
.form-submit-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}
.form-success svg { width: 56px; height: 56px; color: var(--green); margin: 0 auto 16px; }
.form-success h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.form-success p { color: var(--gray-600); }
.form-error-msg {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 16px;
  display: none;
}

/* ---------- About page ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  background: var(--dark-2);
}
.about-img-overlay {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-xl);
}
.about-content h2 { font-size: 36px; font-weight: 700; margin-bottom: 20px; line-height: 1.2; }
.about-content p { font-size: 15px; color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; }
.about-values { margin-top: 32px; }
.about-value {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.about-value-icon {
  width: 40px; height: 40px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-value-icon svg { width: 20px; height: 20px; color: var(--green-dark); }
.about-value h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.about-value p { font-size: 14px; color: var(--gray-600); margin: 0; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: center; }
.team-avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: var(--gray-100);
  margin-bottom: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 800;
  color: var(--green-dark);
  background: var(--green-light);
}
.team-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.team-card p { font-size: 13px; color: var(--gray-600); }

/* ---------- Services full page ---------- */
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}
.services-intro h2 { font-size: 36px; font-weight: 700; margin-bottom: 16px; }
.services-intro p { font-size: 15px; color: var(--gray-600); line-height: 1.8; }

/* ---------- Blog page ---------- */
.blog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.blog-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.blog-filter-btn {
  padding: 8px 18px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.blog-filter-btn:hover,
.blog-filter-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

/* ---------- Alert / toast ---------- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--dark-2);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-xl);
  transition: transform .35s ease;
  z-index: 9999;
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { border-left: 3px solid var(--green); }
.toast.error { border-left: 3px solid #ef4444; }

/* ---------- Chatbot Widget ---------- */
.chatbot-toggle {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 60px; height: 60px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(34,197,94,.45);
  transition: var(--transition);
}
.chatbot-toggle:hover { background: var(--green-dark); transform: scale(1.05); }
.chatbot-toggle svg { width: 26px; height: 26px; }
.chatbot-toggle .badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 18px; height: 18px;
  background: #ef4444;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}

.chatbot-window {
  position: fixed;
  bottom: 104px;
  right: 28px;
  z-index: 900;
  width: 380px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 560px;
  transform: scale(.9) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transform-origin: bottom right;
  transition: opacity .25s ease, transform .25s ease;
}
.chatbot-window.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.chatbot-header {
  background: var(--dark-2);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.chatbot-avatar {
  width: 38px; height: 38px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chatbot-avatar svg { width: 20px; height: 20px; color: var(--white); }
.chatbot-header-info h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.chatbot-header-info span {
  font-size: 12px;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 5px;
}
.chatbot-header-info span::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.chatbot-close {
  margin-left: auto;
  color: rgba(255,255,255,.5);
  cursor: pointer;
  padding: 4px;
  transition: var(--transition);
  background: none;
  border: none;
}
.chatbot-close:hover { color: var(--white); }
.chatbot-close svg { width: 18px; height: 18px; }

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 0;
}
.chatbot-messages::-webkit-scrollbar { width: 4px; }
.chatbot-messages::-webkit-scrollbar-track { background: transparent; }
.chatbot-messages::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 2px; }

.chat-msg {
  display: flex;
  gap: 10px;
  max-width: 90%;
}
.chat-msg.user {
  margin-left: auto;
  flex-direction: row-reverse;
}
.chat-msg-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.bot .chat-msg-avatar { background: var(--green-light); color: var(--green-dark); }
.user .chat-msg-avatar { background: var(--dark-2); color: var(--white); }
.chat-bubble {
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.6;
}
.bot .chat-bubble {
  background: var(--gray-100);
  color: var(--dark-2);
  border-radius: 4px 16px 16px 16px;
}
.user .chat-bubble {
  background: var(--green);
  color: var(--white);
  border-radius: 16px 4px 16px 16px;
}
.chat-typing {
  display: flex;
  gap: 4px;
  padding: 12px 14px;
  background: var(--gray-100);
  border-radius: 4px 16px 16px 16px;
  width: 60px;
}
.chat-typing span {
  width: 7px; height: 7px;
  background: var(--gray-400);
  border-radius: 50%;
  animation: typing .8s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: .15s; }
.chat-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typing {
  0%, 100% { transform: translateY(0); opacity: .5; }
  50% { transform: translateY(-4px); opacity: 1; }
}

.chatbot-quick-replies {
  padding: 0 20px 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.quick-reply {
  padding: 6px 12px;
  border: 1px solid var(--green);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--green-dark);
  cursor: pointer;
  transition: var(--transition);
  background: none;
  font-family: var(--font);
}
.quick-reply:hover { background: var(--green); color: var(--white); }

.chatbot-input-area {
  padding: 14px 20px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  gap: 10px;
  align-items: flex-end;
  flex-shrink: 0;
}
.chatbot-input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  resize: none;
  min-height: 40px;
  max-height: 100px;
  line-height: 1.5;
}
.chatbot-input:focus { border-color: var(--green); }
.chatbot-send {
  width: 38px; height: 38px;
  background: var(--green);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.chatbot-send:hover { background: var(--green-dark); }
.chatbot-send svg { width: 16px; height: 16px; color: var(--white); }
.chatbot-send:disabled { opacity: .5; cursor: not-allowed; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

/* ---------- Scroll animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-slide { grid-template-columns: 1fr; text-align: center; }
  .hero-slide .hero-actions { justify-content: center; }
  .hero-slide .hero-trust { justify-content: center; }
  .hero-visual { display: none; }
  .hero-stats { max-width: 500px; margin: 40px auto 0; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 28px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .chatbot-window { width: calc(100vw - 24px); right: 12px; bottom: 88px; }
  .chatbot-toggle { right: 20px; bottom: 20px; }

  /* Mobile nav */
  .nav-mobile {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px 16px;
    background: rgba(10,10,10,.98);
    border-top: 1px solid rgba(255,255,255,.06);
  }
  .nav-mobile a {
    padding: 12px 14px;
    font-size: 15px;
    color: rgba(255,255,255,.75);
    border-radius: var(--radius-sm);
    font-weight: 500;
    display: block;
  }
  .nav-mobile a:hover { background: rgba(255,255,255,.07); color: var(--white); }
  .nav-mobile .btn-primary { text-align: center; margin-top: 8px; border-radius: var(--radius-full); }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stats-bar-grid { grid-template-columns: 1fr 1fr; }
  .section-header h2 { font-size: 26px; }
  .hero-headline { font-size: 34px; }
}

/* ============================================================
   DESIGN ENHANCEMENTS — 2026-05-17
   Hero, typography, cards, testimonials, why-items, partners
   ============================================================ */

/* ---------- Global heading polish ---------- */
.section-header h2 {
  letter-spacing: -0.5px;
}
.section-header h2 .accent {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Service cards — stronger hover glow ---------- */
.service-card:hover {
  box-shadow: 0 20px 48px rgba(34,197,94,.18), 0 4px 16px rgba(0,0,0,.06);
  transform: translateY(-8px);
  border-color: var(--green);
}
.service-icon {
  background: linear-gradient(135deg, var(--green-light) 0%, #bbf7d0 100%);
}

/* ---------- Why Choose Us — convert items to cards ---------- */
.why-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.why-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.why-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(34,197,94,.12), 0 4px 16px rgba(0,0,0,.06);
  border-color: var(--green);
}
.why-item:hover::after {
  transform: scaleX(1);
}
.why-icon {
  background: linear-gradient(135deg, var(--green-light) 0%, #bbf7d0 100%);
  box-shadow: 0 4px 16px rgba(34,197,94,.2);
}

/* ---------- Testimonials — polished accent card ---------- */
.testimonial-card {
  border-top: 3px solid var(--green);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.1), 0 0 0 1px rgba(34,197,94,.15);
}
.testimonial-quote {
  position: relative;
}
.testimonial-quote::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: -4px;
  font-size: 72px;
  line-height: 1;
  color: var(--green);
  opacity: 0.15;
  font-family: Georgia, serif;
  pointer-events: none;
}

/* Testimonials avatar — gradient background with initials fallback */
.testimonial-avatar {
  background: linear-gradient(135deg, var(--green-light) 0%, #a7f3d0 100%);
  box-shadow: 0 2px 8px rgba(34,197,94,.2);
  font-weight: 800;
  letter-spacing: -0.5px;
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-avatar img[src=""],
.testimonial-avatar img:not([src]) {
  display: none;
}

/* ---------- Stats bar — enhanced number styling ---------- */
.stat-item .num {
  text-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.stats-bar {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 40%, #166534 100%);
}

/* ---------- Partners — fade mask on scroll edges ---------- */
.partners-overflow {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  overflow: hidden;
}
.partner-logo {
  transition: border-color .25s ease, color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.partner-logo:hover {
  border-color: var(--green);
  color: var(--green-dark);
  box-shadow: 0 4px 16px rgba(34,197,94,.15);
  transform: translateY(-2px);
}

/* ---------- Blog cards — image gradient overlay ---------- */
.blog-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,.35) 100%);
  pointer-events: none;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
  border-color: var(--green);
}

/* ---------- FAQ — polished open state ---------- */
.faq-item.open {
  box-shadow: 0 4px 20px rgba(34,197,94,.08);
}
.faq-question {
  font-size: 15.5px;
}

/* ---------- CTA banner — richer radial gradient ---------- */
.cta-banner::before {
  background: radial-gradient(ellipse 70% 90% at 50% 50%, rgba(34,197,94,.1) 0%, transparent 65%),
              radial-gradient(ellipse 40% 40% at 20% 80%, rgba(34,197,94,.05) 0%, transparent 60%);
}

/* ---------- Hero cards — deeper shadow ---------- */
.hero-card {
  box-shadow: 0 16px 48px rgba(0,0,0,.22), 0 4px 12px rgba(0,0,0,.12);
}

/* ---------- Scroll reveal — smoother enter animation ---------- */
[data-animate] {
  transition: opacity .6s ease, transform .6s ease;
}
[data-animate].animated {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ================================================================
   CLAUDE DESIGN UPGRADE — Trusted By, Why-8, Stats Bar, Animations
   ================================================================ */

/* ── Trusted By ──────────────────────────────────────────────── */
.trusted-by {
  background: #fff;
  padding: 60px 0;
  border-bottom: 1px solid #e5e7eb;
}
.trusted-by-header {
  text-align: center;
  margin-bottom: 40px;
}
.trusted-by-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}
.trusted-by-header p {
  color: #6b7280;
  font-size: 1rem;
}
.trusted-by-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .trusted-by-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 500px) {
  .trusted-by-grid { grid-template-columns: repeat(2, 1fr); }
}
.trusted-logo {
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 20px 12px;
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: #6b7280;
  background: #f9fafb;
  transition: border-color .2s, color .2s, background .2s;
}
.trusted-logo:hover {
  border-color: #22c55e;
  color: #22c55e;
  background: #f0fdf4;
}

/* ── Why Choose — Dark 8-card grid ──────────────────────────── */
.why-section {
  background: #fff;
  padding: 80px 0;
}
.why-section .section-header h2,
.why-section .section-header p {
  color: var(--dark-2);
}
.why-section .section-header p {
  color: var(--gray-600);
}
.why-grid-8 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}
@media (max-width: 1024px) {
  .why-grid-8 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .why-grid-8 { grid-template-columns: 1fr; }
}
.why-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 10px 10px;
  text-align: center;
  transition: transform .25s;
}
.why-card:hover {
  background: transparent;
  border-color: transparent;
  transform: translateY(-4px);
}
.why-card-icon {
  width: 80px;
  height: 80px;
  background: rgba(34,197,94,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #22c55e;
}
.why-card-icon svg {
  width: 32px;
  height: 32px;
  stroke: #22c55e;
}
.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-2);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0;
}

/* ── Stats Bar — Solid green gradient ───────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 50%, #15803d 100%);
  padding: 48px 0;
}
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 700px) {
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
}
.stat-item {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.25);
  padding: 0 20px;
}
.stat-item:last-child { border-right: none; }
.stat-item .num {
  display: block;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item .lbl {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* ── Scroll reveal — prefers-reduced-motion support ─────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .55s ease, transform .55s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════════════════════
   SERVICE DETAIL PAGES
════════════════════════════════════════════════════════════ */

/* Hero */
.svc-hero {
  background: #fff;
  text-align: center;
  padding: 110px 0 80px;
  border-bottom: 1px solid var(--gray-200);
}
.svc-hero-icon {
  width: 100px; height: 100px;
  background: rgba(34,197,94,.14);
  border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 32px;
}
.svc-hero-icon svg { width: 52px; height: 52px; stroke: #22c55e; }
.svc-hero h1 {
  font-size: clamp(2rem,4vw,3rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--dark-2);
}
.svc-hero p {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

/* Feature cards grid */
.svc-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-feature-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 28px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.svc-feature-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(34,197,94,.1);
}
.svc-feature-icon {
  width: 52px; height: 52px;
  background: rgba(34,197,94,.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.svc-feature-icon svg { width: 26px; height: 26px; stroke: #22c55e; }
.svc-feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark-2);
}
.svc-feature-card p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* Why Choose 2-col */
.svc-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.svc-why-content h2 {
  font-size: clamp(1.6rem,3vw,2.25rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--dark-2);
}
.svc-why-content > p {
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 28px;
  font-size: 1rem;
}
.svc-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.svc-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  font-size: .95rem;
  color: var(--dark-2);
  border-bottom: 1px solid var(--gray-100);
}
.svc-benefits li:last-child { border-bottom: none; }
.svc-benefits li::before {
  content: '';
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-top: 1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='2.5'%3E%3Cpath d='M22 11.08V12a10 10 0 11-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E") center/contain no-repeat;
}
.svc-why-image {
  border-radius: 20px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.svc-why-image-icon svg {
  width: 130px; height: 130px;
  stroke: rgba(255,255,255,0.2);
  fill: none;
}

/* Responsive */
@media (max-width: 900px) {
  .svc-features-grid { grid-template-columns: repeat(2,1fr); }
  .svc-why-grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-why-image { height: 260px; }
}
@media (max-width: 600px) {
  .svc-features-grid { grid-template-columns: 1fr; }
  .svc-hero { padding: 90px 0 60px; }
}
                                                                                                                         