/* ============================================================
   MIRO-SERVICE  –  styles.css
   Design: Handwerksbetrieb Weinheim | Bold, saturated, crafted
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand */
  --brand:        #E84F12;
  --brand-dark:   #C43A0C;
  --brand-pale:   #FEE8DF;

  /* Neutrals */
  --dark:         #111318;
  --dark-surface: #1C1F27;
  --mid:          #3B4150;
  --text:         #1B1D22;
  --muted:        #5E636B;
  --light:        #F4F0EB;
  --white:        #FFFFFF;
  --border:       #E2DDD8;

  /* Sizing */
  --max:          1160px;
  --header-h:     72px;
  --radius:       6px;
  --radius-lg:    12px;
  --gap:          1.5rem;

  /* Font scale */
  --fs-xs:    0.75rem;
  --fs-sm:    0.875rem;
  --fs-base:  1rem;
  --fs-lg:    1.125rem;
  --fs-xl:    1.375rem;
  --fs-2xl:   1.75rem;
  --fs-3xl:   2.25rem;
  --fs-hero:  clamp(2.8rem, 6.5vw, 5rem);
  --fs-section: clamp(1.8rem, 3.5vw, 2.75rem);
}

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

body {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

/* ---- Shell ---- */
.shell {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* ---- Eyebrow ---- */
.eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .75rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.btn-primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover { background: var(--dark-surface); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(17,19,24,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.35); }

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* -- Logo -- */
.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-shrink: 0;
  text-decoration: none;
}
.brand img { height: 38px; width: auto; }

/* -- Nav -- */
.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: .25rem;
}
.main-nav a {
  color: rgba(255,255,255,.75);
  font-size: var(--fs-sm);
  font-weight: 500;
  padding: .45rem .8rem;
  border-radius: var(--radius);
  transition: color .2s, background .2s;
}
.main-nav a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.main-nav .nav-cta {
  background: var(--brand);
  color: var(--white);
  padding: .45rem 1.1rem;
  font-weight: 700;
  margin-left: .5rem;
}
.main-nav .nav-cta:hover { background: var(--brand-dark); }

/* -- Hamburger -- */
.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  color: var(--white);
}
.nav-toggle svg { display: block; }

@media (max-width: 700px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .main-nav {
    display: none;
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--dark);
    flex-direction: column;
    align-items: stretch;
    padding: 2rem 1.5rem;
    gap: .25rem;
    overflow-y: auto;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { font-size: var(--fs-lg); padding: .9rem 1rem; border-radius: var(--radius); }
  .main-nav .nav-cta { margin-left: 0; margin-top: 1rem; text-align: center; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  background: var(--dark);
  color: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: var(--header-h);
}

/* Geometric background texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,79,18,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,79,18,.12) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 70% 40%, black 20%, transparent 80%);
  pointer-events: none;
}

/* Orange accent block */
.hero::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(232,79,18,.22) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-block: 5rem 3rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; padding-block: 4rem 2rem; }
}

.hero-content { max-width: 600px; }

.hero-content .eyebrow { color: var(--brand); }

.hero h1 {
  font-size: var(--fs-hero);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
}
.hero h1 .accent { color: var(--brand); display: block; }

.hero-sub {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,.7);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

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

/* -- Hero visual (abstract shapes) -- */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-shapes {
  position: relative;
  width: 340px;
  height: 340px;
}

.hero-shapes .shape-ring {
  position: absolute;
  inset: 0;
  border: 3px solid rgba(232,79,18,.3);
  border-radius: 50%;
  animation: spin-slow 20s linear infinite;
}
.hero-shapes .shape-ring-inner {
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(232,79,18,.15);
  border-radius: 50%;
  animation: spin-slow 15s linear infinite reverse;
}
.hero-shapes .shape-center {
  position: absolute;
  inset: 70px;
  background: linear-gradient(135deg, var(--brand), #FF8C5A);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 0 80px rgba(232,79,18,.4);
}
.hero-shapes .shape-center-m {
  font-size: 4rem;
  font-weight: 900;
  color: white;
  letter-spacing: -.05em;
}
.hero-shapes .shape-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--brand);
  border-radius: 50%;
}
.shape-dot:nth-child(4) { top: 20px; right: 60px; }
.shape-dot:nth-child(5) { bottom: 40px; left: 30px; opacity: .6; }
.shape-dot:nth-child(6) { top: 120px; right: -10px; width: 6px; height: 6px; opacity: .4; }

@keyframes spin-slow { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
  .hero-visual { display: none; }
}

/* -- Ticker -- */
.ticker-wrap {
  overflow: hidden;
  background: var(--brand);
  padding-block: .6rem;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
.ticker {
  display: inline-flex;
  gap: 0;
  animation: ticker-scroll 28s linear infinite;
}
.ticker:hover { animation-play-state: paused; }
.ticker span {
  padding-inline: .9rem;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
}
.ticker span.dot { color: rgba(255,255,255,.5); padding-inline: .25rem; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section {
  padding-block: clamp(4rem, 10vw, 7rem);
}

.section-intro {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}
.section-intro h2 {
  font-size: var(--fs-section);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: .75rem;
}
.section-sub {
  font-size: var(--fs-base);
  color: var(--muted);
  line-height: 1.7;
}

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

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

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.service-card::before {
  content: attr(data-num);
  position: absolute;
  top: -8px;
  right: 1.25rem;
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--light);
  line-height: 1;
  pointer-events: none;
  transition: color .25s;
  z-index: 0;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
  border-color: var(--brand);
}
.service-card:hover::before { color: var(--brand-pale); }

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--brand-pale);
  border-radius: 10px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  transition: background .25s;
}
.service-card:hover .service-icon { background: var(--brand); }
.service-icon svg { width: 24px; height: 24px; stroke: var(--brand); transition: stroke .25s; }
.service-card:hover .service-icon svg { stroke: var(--white); }

.service-card h3 {
  font-size: var(--fs-base);
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.service-card p {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '2012';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 900;
  color: var(--light);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 860px) {
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about::before { display: none; }
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 460px) { .about-stats { grid-template-columns: 1fr; } }

.stat {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  text-align: center;
}
.stat-num {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
}
.stat-label {
  font-size: var(--fs-xs);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

.about-content h2 {
  font-size: var(--fs-section);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.about-content > p {
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: var(--fs-sm);
  font-weight: 600;
}
.about-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--brand);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--dark); color: var(--white); }
.gallery .section-intro { color: var(--white); }
.gallery .section-intro .eyebrow { color: var(--brand); }
.gallery .section-sub { color: rgba(255,255,255,.6); }

.gallery-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--brand) rgba(255,255,255,.1);
  padding-bottom: 1rem;
}
.gallery-scroll::-webkit-scrollbar { height: 4px; }
.gallery-scroll::-webkit-scrollbar-track { background: rgba(255,255,255,.05); }
.gallery-scroll::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 2px; }

.gallery-strip {
  display: flex;
  gap: 1rem;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  width: max-content;
}

.gallery-item {
  width: 280px;
  height: 210px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--dark-surface);
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease, filter .4s;
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}
.gallery-item .img-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.2);
  font-size: var(--fs-sm);
  background: linear-gradient(135deg, #1C1F27, #2a2d38);
}

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

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

@media (max-width: 860px) { .contact-inner { grid-template-columns: 1fr; gap: 3rem; } }

.contact-info h2 {
  font-size: var(--fs-section);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.contact-info > p {
  color: rgba(255,255,255,.65);
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(232,79,18,.15);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; stroke: var(--brand); }
.contact-detail-label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.4);
  margin-bottom: .2rem;
}
.contact-detail-value {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--white);
}
.contact-detail-value a {
  color: var(--white);
  text-decoration: none;
  transition: color .2s;
}
.contact-detail-value a:hover { color: var(--brand); }

/* Contact form */
.contact-form-wrap {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

@media (max-width: 560px) { .contact-form-wrap { padding: 1.5rem; } }

.form-title {
  font-size: var(--fs-xl);
  font-weight: 700;
  margin-bottom: 1.75rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid .full { grid-column: 1 / -1; }

.field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.field label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.field label .req { color: var(--brand); margin-left: .15rem; }
.field input,
.field textarea,
.field select {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  color: var(--white);
  font-size: var(--fs-base);
  font-family: inherit;
  padding: .65rem .9rem;
  outline: none;
  transition: border-color .2s, background .2s;
  width: 100%;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,.25); }
.field input:focus,
.field textarea:focus { border-color: var(--brand); background: rgba(232,79,18,.06); }
.field textarea { resize: vertical; min-height: 130px; }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-top: .5rem;
  cursor: pointer;
}
.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: .15rem;
  accent-color: var(--brand);
  cursor: pointer;
}
.form-consent span {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.5);
  line-height: 1.55;
}
.form-consent a { color: var(--brand); }

.form-submit {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.form-status {
  font-size: var(--fs-sm);
  min-height: 1.25rem;
  border-radius: var(--radius);
  padding: .6rem .9rem;
}
.form-status:empty { padding: 0; }
.form-status.is-success { background: rgba(22,163,74,.15); color: #4ade80; }
.form-status.is-error   { background: rgba(185,28,28,.15); color: #f87171; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.6);
  padding-block: 3rem 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 860px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 560px) { .footer-inner { grid-template-columns: 1fr; } }

.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-brand img { height: 36px; }
.footer-brand p { font-size: var(--fs-sm); line-height: 1.65; }

.footer-col h4 {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-col a:hover { color: var(--brand); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: var(--fs-xs);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,.4); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--brand); }

/* ============================================================
   LEGAL PAGES (Impressum, Datenschutz)
   ============================================================ */
.legal-page {
  padding-top: var(--header-h);
  min-height: 100vh;
}

.legal-hero {
  background: var(--dark);
  color: var(--white);
  padding-block: 4rem 3rem;
}
.legal-hero h1 {
  font-size: var(--fs-3xl);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: .5rem;
}
.legal-hero p { color: rgba(255,255,255,.55); }

.legal-body {
  padding-block: 4rem;
  max-width: 780px;
}
.legal-body h2 {
  font-size: var(--fs-2xl);
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: .75rem;
}
.legal-body h3 {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-top: 1.75rem;
  margin-bottom: .5rem;
}
.legal-body p { margin-bottom: 1rem; color: var(--muted); line-height: 1.75; }
.legal-body a { color: var(--brand); }
.legal-body ul { margin-bottom: 1rem; padding-left: 1.5rem; list-style: disc; color: var(--muted); }
.legal-body ul li { margin-bottom: .35rem; line-height: 1.65; }
.legal-body strong { color: var(--text); }

/* ============================================================
   404 PAGE
   ============================================================ */
.page-404 {
  min-height: 100vh;
  background: var(--dark);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.page-404 .big-num {
  font-size: clamp(8rem, 20vw, 14rem);
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 1rem;
}
.page-404 h1 { font-size: var(--fs-3xl); font-weight: 800; margin-bottom: .75rem; }
.page-404 p { color: rgba(255,255,255,.6); margin-bottom: 2rem; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay for grids */
.services-grid .service-card:nth-child(1) { transition-delay: 0s; }
.services-grid .service-card:nth-child(2) { transition-delay: .07s; }
.services-grid .service-card:nth-child(3) { transition-delay: .14s; }
.services-grid .service-card:nth-child(4) { transition-delay: .21s; }
.services-grid .service-card:nth-child(5) { transition-delay: .28s; }
.services-grid .service-card:nth-child(6) { transition-delay: .35s; }
.services-grid .service-card:nth-child(7) { transition-delay: .42s; }
.services-grid .service-card:nth-child(8) { transition-delay: .49s; }
.services-grid .service-card:nth-child(9) { transition-delay: .56s; }
