/* =============================================
   TECH MINDED — Brand Stylesheet
   Brand Orange: #FF5C00 (vibrant fluro orange,
   best digital version of fluorescent orange —
   passes WCAG AA on dark backgrounds, full
   energy without being unreadable)
   ============================================= */

:root {
  --orange:       #FF5C00;
  --orange-dark:  #E04F00;
  --orange-light: #FF7A2E;
  --orange-glow:  rgba(255, 92, 0, 0.18);
  --black:        #0D0D0D;
  --dark:         #141414;
  --dark-2:       #1C1C1C;
  --dark-3:       #252525;
  --mid:          #3A3A3A;
  --muted:        #888888;
  --light:        #C8C8C8;
  --white:        #FFFFFF;
  --radius:       10px;
  --radius-lg:    16px;
  --shadow:       0 4px 24px rgba(0,0,0,0.35);
  --shadow-card:  0 2px 16px rgba(0,0,0,0.28);
  --transition:   0.22s ease;
  --max-w:        1180px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-light); }

ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--orange);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 0;
  letter-spacing: 0.01em;
}
.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  align-items: center;
  justify-content: center;
}
.topbar a { color: var(--white); text-decoration: none; }
.topbar a:hover { text-decoration: underline; }
.topbar-divider { opacity: 0.5; }
.topbar-icon {
  display: inline-block;
  filter: brightness(0) invert(1);
  vertical-align: middle;
  line-height: 1;
}

/* ===== HEADER ===== */
.header {
  background: var(--dark);
  border-bottom: 1px solid var(--dark-3);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.6); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.logo-img {
  height: 52px;
  width: auto;
  background: var(--white);
  border-radius: 8px;
  padding: 4px 8px;
  display: block;
  object-fit: contain;
}

.logo-img-footer {
  height: 48px;
  margin-bottom: 10px;
}

/* keep text-logo spans for any fallback */
.logo-tech { color: var(--orange); }
.logo-minded { color: var(--white); }

.nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav a {
  color: var(--light);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav a:hover { color: var(--white); background: var(--dark-3); }
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
}
.nav-cta:hover { background: var(--orange-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-nav {
  display: none;
  background: var(--dark-2);
  border-top: 1px solid var(--dark-3);
  padding: 12px 0;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; }
.mobile-nav a {
  display: block;
  color: var(--light);
  font-weight: 500;
  padding: 12px 20px;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--dark-3);
}
.mobile-nav a:hover { color: var(--orange); background: var(--dark-3); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 24px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,92,0,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-glow);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 9px 18px;
  font-size: 0.82rem;
  border-radius: 7px;
}
.btn-lg {
  padding: 15px 32px;
  font-size: 1rem;
}

/* ===== HERO ===== */
.hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 90px 0 80px;
  border-bottom: 1px solid var(--dark-3);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(255,92,0,0.12) 0%, transparent 60%),
    radial-gradient(circle at 10% 90%, rgba(255,92,0,0.07) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.hero-content {
  min-width: 0;
}

.hero-image-panel {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-aframe {
  width: 280px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,92,0,0.2);
  display: block;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-glow);
  border: 1px solid rgba(255,92,0,0.4);
  color: var(--orange-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.hero h1 {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.07;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--orange); }

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: var(--light);
  max-width: 600px;
  margin-bottom: 34px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--light);
}
.trust-icon {
  color: var(--orange);
  font-weight: 800;
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 52px;
}
.section-header h2 {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.section-header p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.6); }

.section-tag {
  display: inline-block;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  border-left: 3px solid var(--orange);
  padding-left: 10px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--dark);
  border-top: 1px solid var(--dark-3);
  border-bottom: 3px solid var(--orange);
  padding: 18px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--light);
  padding: 6px 20px;
  white-space: nowrap;
}

.trust-bar-icon {
  color: var(--orange);
  font-weight: 800;
  font-size: 1rem;
}

.trust-bar-divider {
  width: 1px;
  height: 20px;
  background: var(--dark-3);
  flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services { background: var(--black); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(255,92,0,0.15);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.service-list li {
  font-size: 0.82rem;
  color: var(--light);
  padding-left: 14px;
  position: relative;
}
.service-list li::before {
  content: '▸';
  color: var(--orange);
  position: absolute;
  left: 0;
  font-size: 0.7rem;
  top: 2px;
}


/* ===== PRODUCTS ===== */
.products { background: var(--black); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
}
.product-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}

.featured-product {
  border-color: rgba(255,92,0,0.5);
  background: linear-gradient(145deg, var(--dark-2), rgba(255,92,0,0.06));
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 50px;
}

.product-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.product-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--white);
}

.product-card p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.6;
}

.product-card ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}
.product-card li {
  font-size: 0.82rem;
  color: var(--light);
  padding-left: 14px;
  position: relative;
}
.product-card li::before {
  content: '✓';
  color: var(--orange);
  position: absolute;
  left: 0;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ===== REPAIRS PROCESS ===== */
.repairs { background: var(--dark); }

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}

.step {
  flex: 1;
  min-width: 160px;
  max-width: 220px;
  text-align: center;
  padding: 24px 16px;
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--dark-3);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.step h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}
.step p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--orange);
  align-self: center;
  padding: 0 4px;
  opacity: 0.7;
}

.repairs-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ===== GAMING ===== */
.gaming {
  background: var(--black);
  border-top: 1px solid var(--dark-3);
  border-bottom: 1px solid var(--dark-3);
}

.gaming-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.gaming-text h2 {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.gaming-text p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.gaming-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
}
.gaming-list li {
  font-size: 0.9rem;
  color: var(--light);
  font-weight: 500;
}

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

.gaming-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,92,0,0.25);
  display: block;
}

/* ===== AREAS ===== */
.areas { background: var(--dark); }

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.area-tag {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--light);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  cursor: default;
}
.area-tag:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-glow);
}


/* ===== CONTACT ===== */
.contact { background: var(--dark); }

.contact-heading {
  margin-bottom: 36px;
}
.contact-heading h2 {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.contact-heading p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.contact-details-map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 52px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 3px;
}

.contact-item span {
  font-size: 0.92rem;
  color: var(--light);
  line-height: 1.55;
}
.contact-item a { color: var(--light); }
.contact-item a:hover { color: var(--orange); }

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--dark-3);
  height: 100%;
  min-height: 340px;
}
.contact-map iframe {
  display: block;
  height: 100%;
  min-height: 340px;
}

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
  border-top: 1px solid var(--dark-3);
  padding-top: 48px;
}
.contact-form-wrap h3 {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.contact-form-wrap > p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 700px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--orange);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius);
  color: var(--white);
  font-family: inherit;
  font-size: 0.92rem;
  padding: 12px 14px;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--mid);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,92,0,0.15);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-group select option {
  background: var(--dark-2);
  color: var(--white);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-submit {
  align-self: flex-start;
}

/* Phone icon in buttons — inherits white color from parent */
.btn-phone {
  font-style: normal;
  font-size: 1.05em;
  line-height: 1;
  color: inherit;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--dark-3);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--dark-3);
}

.footer-brand .logo { margin-bottom: 14px; font-size: 1.5rem; }
.footer-brand p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 14px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 7px; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange); }

.footer-contact p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 6px;
  line-height: 1.55;
}
.footer-contact a { color: var(--muted); }
.footer-contact a:hover { color: var(--orange); }
.footer-hours { margin-top: 4px; }

.footer-bottom {
  padding: 16px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.76rem;
  color: var(--mid);
}

/* ===== STICKY CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 13px 22px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(255,92,0,0.5);
  z-index: 200;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
}
.sticky-cta:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255,92,0,0.6);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .gaming-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .gaming-visual {
    display: flex;
    justify-content: center;
  }
  .hero-aframe { width: 220px; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 60px 0; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-image-panel { display: none; }
  .trust-bar-divider { display: none; }
  .trust-bar-item { padding: 4px 12px; }

  .steps {
    flex-direction: column;
    align-items: center;
  }
  .step { max-width: 100%; width: 100%; }
  .step-arrow { transform: rotate(90deg); }

  .contact-details-map { grid-template-columns: 1fr; }
  .contact-map { min-height: 280px; }
  .contact-map iframe { min-height: 280px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .topbar-inner { flex-direction: column; gap: 4px; }
  .topbar-divider { display: none; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }

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

  .repairs-cta { flex-direction: column; }
  .repairs-cta .btn { justify-content: center; }

  .sticky-cta {
    bottom: 12px;
    right: 12px;
    left: 12px;
    text-align: center;
    justify-content: center;
    border-radius: 12px;
  }
}

/* ===== ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
  .service-card,
  .why-card,
  .product-card,
  .step {
    animation: fadeUp 0.5s ease both;
  }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Stagger grid children */
.services-grid > *:nth-child(1)  { animation-delay: 0.05s; }
.services-grid > *:nth-child(2)  { animation-delay: 0.10s; }
.services-grid > *:nth-child(3)  { animation-delay: 0.15s; }
.services-grid > *:nth-child(4)  { animation-delay: 0.20s; }
.services-grid > *:nth-child(5)  { animation-delay: 0.25s; }
.services-grid > *:nth-child(6)  { animation-delay: 0.30s; }
.services-grid > *:nth-child(7)  { animation-delay: 0.35s; }
.services-grid > *:nth-child(8)  { animation-delay: 0.40s; }
.services-grid > *:nth-child(9)  { animation-delay: 0.45s; }
.services-grid > *:nth-child(10) { animation-delay: 0.50s; }
.services-grid > *:nth-child(11) { animation-delay: 0.55s; }
.services-grid > *:nth-child(12) { animation-delay: 0.60s; }
