/* ============================================
   ORION BUSINESS SOLUTIONS — Global Styles
   Color Palette: Obsidian #0d0d0d, Silver #e2e3e5, Steel #1a1a1a/#2a2a2a
   Fonts: Playfair Display (headings), Inter (body)
   ============================================ */

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

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

body {
  background-color: #0d0d0d;
  color: #e2e3e5;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  padding-top: 80px;
  overflow-x: hidden;
}

/* Fixed background logo — stays static while page scrolls */
body::after {
  content: '';
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 157.5vmin;
  height: 157.5vmin;
  background: url('../images/orion-logo.png') center / contain no-repeat;
  opacity: 0.109;
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #e8e8e8;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: #999; }

p {
  color: #b8b8bd;
  max-width: 680px;
  font-weight: 300;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}


/* Ensure all content stacks above the fixed background logo */
.navbar, .hero, .trust-bar, .services-section, .why-section,
.testimonials-section, .process-section, .cta-banner,
.page-hero, .service-detail, .about-story, .values-section,
.mission-section, .contact-section, .footer {
  position: relative;
  z-index: 1;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(13, 13, 13, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-content {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.nav-logo img {
  height: 63px;
  opacity: 0.95;
  transition: opacity 0.2s ease;
}
.nav-logo:hover img { opacity: 1; }

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

.nav-links a {
  color: #999;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e2e3e5;
}

.nav-cta {
  background: #e2e3e5 !important;
  color: #0d0d0d !important;
  padding: 10px 22px !important;
  border-radius: 6px;
  font-weight: 500 !important;
  font-size: 13px !important;
  letter-spacing: 0.5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(226, 227, 229, 0.2);
}

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

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #e2e3e5;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 16px;
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-size: 16px;
    padding: 8px 0;
  }
  .nav-cta {
    text-align: center;
    padding: 14px 22px !important;
    margin-top: 8px;
  }
}


/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-align: center;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: #e2e3e5;
  color: #0d0d0d;
}
.btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(226, 227, 229, 0.15);
}

.btn-outline {
  background: transparent;
  color: #e2e3e5;
  border: 1px solid rgba(226, 227, 229, 0.3);
}
.btn-outline:hover {
  border-color: #e2e3e5;
  color: #fff;
  transform: translateY(-2px);
}

.btn-dark {
  background: #0d0d0d;
  color: #e2e3e5;
}
.btn-dark:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-dark-outline {
  background: transparent;
  color: #0d0d0d;
  border: 1px solid rgba(13, 13, 13, 0.3);
}
.btn-dark-outline:hover {
  border-color: #0d0d0d;
  transform: translateY(-2px);
}


/* ============================================
   HERO (Homepage)
   ============================================ */
.hero {
  text-align: center;
  padding: 100px 24px 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(226, 227, 229, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  border: 1px solid rgba(226, 227, 229, 0.15);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 15px;
  color: #888;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  max-width: none;
}

.hero-desc {
  font-size: 18px;
  color: #b8b8bd;
  margin: 0 auto 40px;
  max-width: 600px;
  font-weight: 300;
  line-height: 1.7;
}

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


/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 24px;
  background: rgba(255, 255, 255, 0.01);
}

.trust-label {
  text-align: center;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #666;
  margin-bottom: 32px;
  max-width: none;
}

.trust-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #e8e8e8;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: #777;
  letter-spacing: 0.5px;
}

.trust-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 600px) {
  .trust-stats { gap: 32px; }
  .trust-divider { display: none; }
}


/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header p {
  margin: 16px auto 0;
  font-size: 17px;
}


/* ============================================
   SERVICES GRID (Homepage)
   ============================================ */
.services-section {
  padding: 120px 24px;
}

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

.service-card {
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 40px 32px;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: rgba(226, 227, 229, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-icon {
  color: #e2e3e5;
  margin-bottom: 24px;
  opacity: 0.7;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.service-card p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-link {
  font-size: 13px;
  font-weight: 500;
  color: #e2e3e5 !important;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.card-link:hover {
  opacity: 1;
}

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

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


/* ============================================
   WHY ORION SECTION
   ============================================ */
.why-section {
  padding: 120px 24px;
  background: #111;
}

.why-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.why-content h2 {
  margin-bottom: 20px;
}

.why-content > p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-feature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.why-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(226, 227, 229, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #e2e3e5;
}

.why-feature span {
  font-size: 15px;
  color: #b8b8bd;
}

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

.why-image {
  width: 280px;
  opacity: 0.6;
  filter: brightness(1.1);
  transition: opacity 0.3s ease;
}

.why-image:hover { opacity: 0.8; }

@media (max-width: 768px) {
  .why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .why-visual { order: -1; }
  .why-image { width: 180px; }
}


/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 120px 24px;
}

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

.testimonial-card {
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 40px 32px;
}

.testimonial-stars {
  color: #e2e3e5;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  opacity: 0.6;
}

.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.8;
  color: #b8b8bd;
  font-style: normal;
  margin-bottom: 28px;
  font-weight: 300;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-info strong {
  display: block;
  font-size: 14px;
  color: #e8e8e8;
  font-weight: 500;
}

.author-info span {
  font-size: 13px;
  color: #777;
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
}


/* ============================================
   HOW IT WORKS / PROCESS
   ============================================ */
.process-section {
  padding: 120px 24px;
  background: #111;
}

.process-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(226, 227, 229, 0.1);
  margin-bottom: 16px;
  line-height: 1;
}

.process-step h3 {
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14px;
  margin: 0 auto;
}

.process-connector {
  flex-shrink: 0;
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 30px;
}

@media (max-width: 768px) {
  .process-grid {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  .process-connector {
    width: 1px;
    height: 40px;
    margin-top: 0;
  }
  .process-step { padding: 0; }
}


/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: #e2e3e5;
  color: #0d0d0d;
  text-align: center;
  padding: 100px 24px;
}

.cta-banner h2 {
  color: #0d0d0d;
  margin-bottom: 16px;
}

.cta-banner p {
  color: #444;
  margin: 0 auto 40px;
  font-size: 17px;
  font-weight: 300;
}

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


/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  text-align: center;
  padding: 80px 24px 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  margin: 0 auto;
  font-size: 18px;
  max-width: 600px;
}


/* ============================================
   SERVICES DETAIL PAGE
   ============================================ */
.service-detail {
  padding: 100px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.service-detail.alt {
  background: #111;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  align-items: center;
}

.detail-grid.reverse {
  grid-template-columns: 0.7fr 1.3fr;
  direction: rtl;
}

.detail-grid.reverse > * {
  direction: ltr;
}

.detail-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #777;
  margin-bottom: 16px;
}

.detail-content h2 {
  margin-bottom: 20px;
}

.detail-content > p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin-bottom: 36px;
}

.detail-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #b8b8bd;
  font-weight: 300;
}

.detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: rgba(226, 227, 229, 0.3);
  border-radius: 50%;
}

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

.detail-icon-large {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(226, 227, 229, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e2e3e5;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .detail-grid,
  .detail-grid.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }
  .detail-visual { order: -1; }
  .detail-icon-large { width: 120px; height: 120px; }
  .detail-icon-large svg { width: 48px; height: 48px; }
}


/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
  padding: 100px 24px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.story-content h2 {
  margin-bottom: 24px;
}

.story-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.story-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-image {
  width: 260px;
  opacity: 0.5;
  filter: brightness(1.1);
}

@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .story-image-container { order: -1; }
  .story-image { width: 180px; }
}


/* VALUES */
.values-section {
  padding: 120px 24px;
  background: #111;
}

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

.value-card {
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: rgba(226, 227, 229, 0.15);
  transform: translateY(-4px);
}

.value-icon {
  color: #e2e3e5;
  opacity: 0.5;
  margin-bottom: 20px;
}

.value-card h3 { margin-bottom: 12px; }

.value-card p {
  font-size: 14px;
  line-height: 1.7;
}

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

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


/* MISSION */
.mission-section {
  padding: 120px 24px;
}

.mission-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.mission-inner h2 {
  margin-bottom: 24px;
}

.mission-text {
  font-size: 20px;
  line-height: 1.8;
  margin: 0 auto;
  font-weight: 300;
  max-width: none;
}


/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  padding: 80px 24px 120px;
}

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

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-method {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.method-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(226, 227, 229, 0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e2e3e5;
  opacity: 0.6;
}

.contact-method h4 {
  color: #e8e8e8;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  margin-bottom: 4px;
}

.contact-method a {
  color: #b8b8bd;
  font-size: 14px;
}

.contact-method a:hover {
  color: #e2e3e5;
}

.contact-cta-box {
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 32px;
}

.contact-cta-box h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.contact-cta-box p {
  font-size: 14px;
  margin-bottom: 24px;
}

.contact-calendar h3 {
  margin-bottom: 24px;
  text-align: center;
}

.iframe-container {
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
}

iframe {
  width: 100%;
  height: 660px;
  border: none;
}

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


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0a0a0a;
}

.footer-main {
  padding: 80px 24px 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  height: 60px;
  opacity: 0.8;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: #777;
  margin-bottom: 16px;
  font-style: italic;
}

.footer-badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #666;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 100px;
  display: inline-block;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  margin-bottom: 8px;
  color: #888;
}

.footer-col a {
  font-size: 14px;
  color: #666;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #e2e3e5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 24px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 13px;
  color: #555;
}

.footer-warrior img {
  width: 32px;
  opacity: 0.3;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

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


/* ============================================
   ANIMATIONS
   ============================================ */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.service-card.animate-in:nth-child(2) { transition-delay: 0.1s; }
.service-card.animate-in:nth-child(3) { transition-delay: 0.2s; }
.service-card.animate-in:nth-child(4) { transition-delay: 0.3s; }
.service-card.animate-in:nth-child(5) { transition-delay: 0.4s; }
.service-card.animate-in:nth-child(6) { transition-delay: 0.5s; }

.testimonial-card.animate-in:nth-child(2) { transition-delay: 0.1s; }
.testimonial-card.animate-in:nth-child(3) { transition-delay: 0.2s; }

.value-card.animate-in:nth-child(2) { transition-delay: 0.1s; }
.value-card.animate-in:nth-child(3) { transition-delay: 0.2s; }
.value-card.animate-in:nth-child(4) { transition-delay: 0.3s; }

.process-step.animate-in:nth-child(2) { transition-delay: 0.1s; }
.process-step.animate-in:nth-child(3) { transition-delay: 0.15s; }
.process-step.animate-in:nth-child(4) { transition-delay: 0.2s; }
.process-step.animate-in:nth-child(5) { transition-delay: 0.25s; }

.why-feature.animate-in:nth-child(2) { transition-delay: 0.1s; }
.why-feature.animate-in:nth-child(3) { transition-delay: 0.2s; }
.why-feature.animate-in:nth-child(4) { transition-delay: 0.3s; }


/* ============================================
   SELECTION & SCROLLBAR
   ============================================ */
::selection {
  background: rgba(226, 227, 229, 0.2);
  color: #fff;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0d0d0d;
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #444;
}
