/* ═══════════════════════════════════════════
   UNIKSOFT — Global Styles & Variables
   ═══════════════════════════════════════════ */

:root {
  --brand: #7caa3c;
  --brand-light: #95c455;
  --brand-dark: #5e8228;
  --brand-glow: rgba(124, 170, 60, 0.25);
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1c1c1c;
  --text-primary: #f0f0f0;
  --text-secondary: #8a8a8a;
  --text-muted: #555555;
  --border-subtle: rgba(255,255,255,0.06);
  --border-light: rgba(255,255,255,0.1);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

::selection {
  background: var(--brand);
  color: #000;
}

/* ── NAVBAR ── */
.navbar {
  padding: 1rem 0;
  background: transparent;
  transition: var(--transition);
  z-index: 1000;
  backdrop-filter: none;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.6rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.4rem;
  margin-top: 0.3rem;
  color: var(--text-primary) !important;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
}

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--brand);
  color: #000;
  font-weight: 800;
  border-radius: 8px;
  margin-right: 6px;
  font-size: 1.1rem;
}

.nav-link {
  color: var(--text-secondary) !important;
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0.5rem 1rem !important;
  transition: color 0.25s;
  letter-spacing: 0.01em;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary) !important;
}

.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* ── HERO ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-primary);
}

#heroCanvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  opacity: 0.5;
}

.hero-grid-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background:
    linear-gradient(180deg, transparent 0%, var(--bg-primary) 100%),
    repeating-linear-gradient(90deg, var(--border-subtle) 0px, var(--border-subtle) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(0deg, var(--border-subtle) 0px, var(--border-subtle) 1px, transparent 1px, transparent 80px);
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(124,170,60,0.3);
  padding: 6px 16px;
  border-radius: 100px;
}

.tag-dot {
  width: 6px; height: 6px;
  background: var(--brand);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

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

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.metric { text-align: left; }

.metric-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.metric-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.metric-divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-scroll-cue span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--brand), transparent);
  animation: scroll-pulse 2s infinite;
}

@keyframes scroll-pulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
/* ── SECTION COMMON ── */
.section {
  padding: 7rem 0;
  position: relative;
}

.section-dark { background: var(--bg-primary); }
.section-darker { background: var(--bg-secondary); }

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  border: 1px solid rgba(124,170,60,0.25);
  padding: 4px 14px;
  border-radius: 100px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.text-brand { color: var(--brand); }
/* ── SERVICE CARDS ── */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(124,170,60,0.2);
  transform: translateY(-4px);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124,170,60,0.1);
  border: 1px solid rgba(124,170,60,0.2);
  border-radius: 14px;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  color: var(--brand);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(124,170,60,0.15);
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.service-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-tags li {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  padding: 3px 10px;
  border-radius: 6px;
}
/* ── ABOUT SECTION ── */
.about-visual { position: relative; }

.about-code-block {
  background: #0d0d0d;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.code-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border-subtle);
}

.code-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.code-dot.red { background: #ff5f57; }
.code-dot.yellow { background: #ffbd2e; }
.code-dot.green { background: #28c840; }

.code-filename {
  margin-left: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.code-body {
  padding: 1.5rem;
  margin: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  line-height: 1.8;
  overflow-x: auto;
  color: var(--text-secondary);
}

.code-keyword { color: #c678dd; }
.code-var { color: #e5c07b; }
.code-prop { color: #61afef; }
.code-string { color: var(--brand); }
.code-num { color: #d19a66; }

.about-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-values {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.value-item i {
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.value-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.value-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}
/* ── WORK / PORTFOLIO ── */
.work-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.work-card:hover {
  border-color: rgba(124,170,60,0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.work-card-img {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.work-card-img-sm { height: 180px; }

.work-card-lg .work-card-img { height: 300px; }

/* Browser mockup */
.work-card-mockup {
  width: 75%;
  max-width: 320px;
  background: #1a1a1a;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: transform 0.4s;
}

.work-card:hover .work-card-mockup { transform: scale(1.03); }

.mockup-sm { max-width: 220px; }

.mockup-bar {
  display: flex;
  gap: 5px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mockup-bar span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

.mockup-content { padding: 14px; }

.mockup-line {
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 8px;
}
.w40 { width: 40%; }
.w50 { width: 50%; }
.w60 { width: 60%; }
.w70 { width: 70%; }
.w80 { width: 80%; }

.mockup-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
  margin-top: 10px;
}

.chart-bar {
  flex: 1;
  background: var(--brand);
  border-radius: 3px 3px 0 0;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.work-card:hover .chart-bar { opacity: 1; }

.mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.grid-item {
  height: 30px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
}

/* Phone mockup */
.work-phone-mockup {
  width: 100px;
  height: 160px;
  background: #1a1a1a;
  border-radius: 16px;
  border: 2px solid rgba(255,255,255,0.1);
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: transform 0.4s;
}

.work-card:hover .work-phone-mockup { transform: scale(1.05); }

.phone-notch {
  width: 40px; height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  margin: 6px auto 0;
}

.phone-content {
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.phone-circle {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.5;
}

.phone-line {
  height: 5px;
  border-radius: 3px;
  background: rgba(255,255,255,0.1);
}

.phone-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 50px;
  width: 100%;
  padding: 0 4px;
}

.phone-bars .bar {
  flex: 1;
  background: var(--brand);
  border-radius: 2px 2px 0 0;
  opacity: 0.5;
}

.work-card-body {
  padding: 1.5rem;
}

.work-category {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.work-card-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0.4rem 0 0.5rem;
  letter-spacing: -0.01em;
}

.work-card-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.work-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.work-tech span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  padding: 2px 8px;
  border-radius: 5px;
}
/* ── PROCESS TIMELINE ── */
.process-timeline {
  position: relative;
}

.process-line {
  position: absolute;
  top: 38px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border-light) 20%, var(--border-light) 80%, transparent);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.step-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--brand);
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border: 2px solid rgba(124,170,60,0.3);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.process-step:hover .step-number {
  background: var(--brand);
  color: #000;
  border-color: var(--brand);
  transform: scale(1.1);
}

.process-step h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
/* ── TESTIMONIALS ── */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  border-color: rgba(124,170,60,0.2);
  transform: translateY(-3px);
}

.testimonial-stars {
  color: var(--brand);
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
  display: flex;
  gap: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

.author-avatar {
  width: 42px; height: 42px;
  background: rgba(124,170,60,0.15);
  color: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}
/* ── CONTACT / CTA ── */
.section-cta {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,170,60,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

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

.contact-form .form-control {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  color: var(--text-primary);
  padding: 0.85rem 1.2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  transition: var(--transition);
}

.contact-form .form-control::placeholder {
  color: var(--text-muted);
}

.contact-form .form-control:focus {
  background: rgba(255,255,255,0.06);
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-glow);
  outline: none;
  color: var(--text-primary);
}

.contact-form textarea {
  resize: none;
}
/* ── FOOTER ── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
}

.footer-brand {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 1.2rem;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--transition);
  text-decoration: none;
}

.footer-socials a:hover {
  color: var(--brand);
  border-color: rgba(124,170,60,0.3);
  background: rgba(124,170,60,0.08);
}

.footer h5 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
  color: var(--text-primary);
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 0.6rem;
}

.footer ul a {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s;
}

.footer ul a:hover { color: var(--brand); }

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-contact i { color: var(--brand); font-size: 0.9rem; }

.footer-bottom {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  color: var(--text-muted);
}
/* ── BUTTONS ── */
.btn-brand {
  background: var(--brand);
  color: #000;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.7rem 1.8rem;
  border-radius: 10px;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.btn-brand:hover {
  background: var(--brand-light);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--brand-glow);
}

.btn-brand-ghost {
  background: transparent;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.7rem 1.8rem;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.btn-brand-ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.btn-brand-ghost i {
  transition: transform 0.3s;
}

.btn-brand-ghost:hover i {
  transform: translateX(4px);
}

.btn-brand-outline {
  background: transparent;
  color: var(--brand);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.5rem 1.4rem;
  border-radius: 8px;
  border: 1px solid rgba(124,170,60,0.4);
  transition: var(--transition);
}

.btn-brand-outline:hover {
  background: var(--brand);
  color: #000;
  border-color: var(--brand);
}
/* ── SCROLL ANIMATIONS ── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.1s;
}
.delay-3 {
  animation-delay: 0.1s;
}
.delay-4 {
  animation-delay: 0.1s;
}
.delay-5 {
  animation-delay: 0.1s;
}

.stagger-children.revealed > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 0.12s; }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 0.19s; }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 0.26s; }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 0.33s; }
.stagger-children.revealed > *:nth-child(6) { transition-delay: 0.40s; }

.stagger-children.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
  .hero-section { min-height: auto; padding: 4rem 0 4rem; }
  .hero-metrics { gap: 1.5rem; }
  .hero-scroll-cue { display: none; }
  .process-line { display: none; }
  .process-step { margin-bottom: 2rem; }
  .section { padding: 5rem 0; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 767.98px) {
  .hero-title { font-size: 2.2rem; }
  .hero-sub { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .metric-divider { display: none; }
  .hero-metrics { flex-direction: column; gap: 1.2rem; }
  .work-card-img { height: 180px; }
  .work-card-lg .work-card-img { height: 200px; }
}
