/* ===================================================
   TRIDENT BOOKKEEPING SOLUTIONS
   Premium Professional Services Website
   =================================================== */

/* --- CSS Variables --- */
:root {
  --navy: #0B2545;
  --teal: #13507D;
  --accent: #2AABBC;
  --accent-light: rgba(42, 171, 188, 0.12);
  --bg-light: #F8FAFB;
  --white: #FFFFFF;
  --text-dark: #1A2332;
  --text-muted: #6B7B8D;
  --text-light: rgba(255,255,255,0.75);

  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1140px;
  --gap: 2rem;
  --radius: 8px;
  --radius-lg: 16px;

  --header-h: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

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

/* --- Section Spacing --- */
section {
  position: relative;
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.875rem 1.75rem;
  border-radius: 6px;
  transition: all var(--transition);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(42,171,188,0.25);
}
.btn-primary:hover {
  background: #24969f;
  box-shadow: 0 4px 16px rgba(42,171,188,0.35);
  transform: translateY(-1px);
}
.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: var(--bg-light);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transform: translateY(-1px);
}

/* --- Section Headers --- */
.section-label {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}
.section-label--light { color: rgba(42,171,188,0.8); }

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--text-dark);
  max-width: 700px;
}
.section-title--light { color: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .section-title {
  margin: 0 auto;
}

/* --- Animate In --- */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   HEADER
   =================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(11, 37, 69, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(11, 37, 69, 0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.15);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--white);
}
.header-logo {
  height: 40px;
  width: auto;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}
.nav-link:hover { color: var(--white); }
.nav-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  background: var(--accent);
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-cta:hover {
  background: #24969f;
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  color: var(--white);
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
}
.mobile-toggle .close-icon { display: none; }
.mobile-toggle.active .menu-icon { display: none; }
.mobile-toggle.active .close-icon { display: block; }

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 3rem) 1.5rem 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 80%, rgba(19, 80, 125, 0.5) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(42, 171, 188, 0.15) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  background: rgba(42,171,188,0.1);
  border: 1px solid rgba(42,171,188,0.2);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.hero-headline {
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-light);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

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

.hero-bottom-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg-light));
  z-index: 3;
}

/* ===================================================
   PAIN POINTS
   =================================================== */
.pain-points {
  background: var(--bg-light);
  padding: 6rem 0;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pain-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.pain-card:hover {
  border-color: rgba(42,171,188,0.2);
  box-shadow: 0 8px 32px rgba(11,37,69,0.06);
  transform: translateY(-2px);
}

.pain-icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  background: rgba(42,171,188,0.08);
  border-radius: 12px;
  color: var(--accent);
}
.pain-icon svg { width: 24px; height: 24px; }

.pain-text {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
  font-weight: 500;
}

/* ===================================================
   SERVICES
   =================================================== */
.services {
  background: var(--white);
  padding: 6rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.service-card {
  background: var(--bg-light);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  transition: all var(--transition);
}
.service-card:hover {
  border-color: rgba(42,171,188,0.15);
  box-shadow: 0 4px 20px rgba(11,37,69,0.06);
}

.service-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  border-radius: 10px;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 22px; height: 22px; }

.service-name {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 0.625rem;
}

.service-desc {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.services-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  background: rgba(42,171,188,0.06);
  border: 1px solid rgba(42,171,188,0.12);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
}
.services-note svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }

/* ===================================================
   WHY TRIDENT
   =================================================== */
.why-trident {
  background: var(--navy);
  padding: 6rem 0;
  overflow: hidden;
}

.why-bg {
  position: absolute;
  inset: 0;
}

.why-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.4) 1px, transparent 0);
  background-size: 40px 40px;
}

.stats-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 3rem;
}

.stat-divider {
  width: 1px;
  height: 100px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
  align-self: center;
}

.stat-item {
  text-align: center;
  flex: 0 0 auto;
  min-width: 180px;
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-unit {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.625rem;
}

.stat-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  max-width: 200px;
  margin: 0 auto;
  line-height: 1.5;
}

.why-supporting {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ===================================================
   WHO WE SERVE
   =================================================== */
.who-we-serve {
  background: var(--bg-light);
  padding: 6rem 0;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.serve-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem 1.25rem;
  text-align: center;
  transition: all var(--transition);
}
.serve-card:hover {
  border-color: rgba(42,171,188,0.2);
  box-shadow: 0 6px 24px rgba(11,37,69,0.06);
  transform: translateY(-2px);
}

.serve-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background: var(--navy);
  border-radius: 12px;
  color: var(--accent);
}
.serve-icon svg { width: 22px; height: 22px; }

.serve-card h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.serve-callout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}
.serve-callout svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
.serve-callout p {
  font-size: 0.95rem;
  font-weight: 500;
}

/* ===================================================
   HOW IT WORKS
   =================================================== */
.how-it-works {
  background: var(--white);
  padding: 6rem 0;
}

.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
}

.step-card {
  flex: 0 1 320px;
  text-align: center;
  padding: 2rem 1.5rem;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.4;
}

.step-name {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 2.75rem;
  color: rgba(42,171,188,0.3);
}
.step-connector svg { width: 24px; height: 24px; }

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials {
  background: var(--bg-light);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.google-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.google-stars {
  display: flex;
  gap: 0.125rem;
}

.star-filled {
  width: 22px;
  height: 22px;
  color: #FBBC04;
  fill: #FBBC04;
}

.google-rating-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

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

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow var(--transition);
}

.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(11,37,69,0.08);
}

.testimonial-stars {
  display: flex;
  gap: 0.125rem;
}

.star-sm {
  width: 16px;
  height: 16px;
  color: #FBBC04;
  fill: #FBBC04;
}

.testimonial-text {
  font-size: 0.925rem;
  line-height: 1.7;
  color: var(--text-dark);
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

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

.author-source::before {
  content: "\2022";
  margin-right: 0.5rem;
}

.proof-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.proof-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 100px;
  padding: 0.75rem 1.5rem;
}
.proof-badge svg { width: 18px; height: 18px; color: var(--accent); }

/* ===================================================
   FAQ
   =================================================== */
.faq {
  background: var(--white);
  padding: 6rem 0;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.faq-item:first-child {
  border-top: 1px solid rgba(0,0,0,0.07);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 200px;
}
.faq-answer p {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===================================================
   FINAL CTA
   =================================================== */
.final-cta {
  background: var(--navy);
  padding: 6rem 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,0.1) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255,255,255,0.1) 25%, transparent 25%);
  background-size: 80px 80px;
}

.cta-content {
  position: relative;
  text-align: center;
}

.cta-headline {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.cta-contact {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
}
.cta-contact a {
  color: var(--accent);
  transition: color var(--transition);
}
.cta-contact a:hover { color: #fff; }
.cta-sep { opacity: 0.4; }

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  background: #071B35;
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-brand .footer-logo {
  height: 80px;
  width: 80px;
  margin: 0 auto 0.75rem;
}

.footer-brand .logo-text {
  display: block;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.375rem;
}

.footer-address {
  font-size: 0.85rem;
  color: var(--text-light);
}

.footer-contact a {
  font-size: 0.85rem;
  color: var(--accent);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--white); }

.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-copy p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .serve-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-row {
    gap: 2rem;
  }
  .stat-item {
    min-width: 140px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .header-logo {
    height: 32px;
  }

  .mobile-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(11,37,69,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-link {
    display: block;
    padding: 0.875rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-cta {
    margin-top: 0.75rem;
    text-align: center;
    padding: 0.875rem;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-h) + 4rem) 1.5rem 5rem;
  }
  .hero-headline {
    font-size: clamp(2rem, 7vw, 2.75rem);
  }

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

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

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

  .stats-row {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .stat-divider {
    width: 60px;
    height: 1px;
  }

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

  .steps-row {
    flex-direction: column;
    align-items: center;
  }
  .step-connector {
    transform: rotate(90deg);
    padding-top: 0;
  }

  .proof-badges {
    flex-direction: column;
    align-items: center;
  }

  .cta-contact {
    flex-direction: column;
  }
  .cta-sep { display: none; }
}

@media (max-width: 480px) {
  .serve-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: calc(var(--header-h) + 3rem) 1rem 4rem;
  }
  .hero-badge { font-size: 0.78rem; }
  .section-header { margin-bottom: 2.5rem; }
  .pain-points, .services, .why-trident, .who-we-serve, .how-it-works, .faq, .final-cta {
    padding: 4rem 0;
  }
  .serve-callout {
    flex-direction: column;
    text-align: center;
  }
}

/* --- Stagger animation delays --- */
.pain-grid .pain-card:nth-child(1) { transition-delay: 0.05s; }
.pain-grid .pain-card:nth-child(2) { transition-delay: 0.1s; }
.pain-grid .pain-card:nth-child(3) { transition-delay: 0.15s; }
.pain-grid .pain-card:nth-child(4) { transition-delay: 0.2s; }

.services-grid .service-card:nth-child(1) { transition-delay: 0.05s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.15s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.2s; }

.serve-grid .serve-card:nth-child(1) { transition-delay: 0.05s; }
.serve-grid .serve-card:nth-child(2) { transition-delay: 0.1s; }
.serve-grid .serve-card:nth-child(3) { transition-delay: 0.15s; }
.serve-grid .serve-card:nth-child(4) { transition-delay: 0.2s; }

.stats-row .stat-item:nth-child(1) { transition-delay: 0.05s; }
.stats-row .stat-item:nth-child(3) { transition-delay: 0.1s; }
.stats-row .stat-item:nth-child(5) { transition-delay: 0.15s; }

.steps-row .step-card:nth-child(1) { transition-delay: 0.05s; }
.steps-row .step-card:nth-child(3) { transition-delay: 0.1s; }
.steps-row .step-card:nth-child(5) { transition-delay: 0.15s; }

.faq-list .faq-item:nth-child(1) { transition-delay: 0.03s; }
.faq-list .faq-item:nth-child(2) { transition-delay: 0.06s; }
.faq-list .faq-item:nth-child(3) { transition-delay: 0.09s; }
.faq-list .faq-item:nth-child(4) { transition-delay: 0.12s; }
.faq-list .faq-item:nth-child(5) { transition-delay: 0.15s; }
.faq-list .faq-item:nth-child(6) { transition-delay: 0.18s; }
