/* ============================================================
   Codegineers — Stylesheet
   Brand: Blue (#1e7fc2), Orange (#f28b1c), White
============================================================ */

:root {
  /* Brand */
  --blue:         #1e7fc2;
  --blue-deep:    #0f5896;
  --blue-light:   #3aa3e5;
  --blue-soft:    #e6f2fb;
  --blue-bg:      #f4faff;

  --orange:       #f28b1c;
  --orange-deep:  #d96f00;
  --orange-light: #ffa84a;
  --orange-soft:  #fef0e0;
  --orange-bg:    #fff9f0;

  --white:        #ffffff;
  --cream:        #fafbfd;
  --ink:          #0c1a2e;
  --ink-soft:     #2a3b54;
  --ink-muted:    #5a6a83;
  --ink-faint:    #95a3b8;
  --line:         rgba(12, 26, 46, 0.08);
  --line-strong:  rgba(12, 26, 46, 0.16);

  --grad-brand: linear-gradient(135deg, var(--blue) 0%, var(--orange) 100%);
  --grad-dark:  linear-gradient(135deg, var(--ink) 0%, var(--blue-deep) 100%);

  /* Type */
  --sans: 'Inter', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
  --mono: 'JetBrains Mono', 'SFMono-Regular', monospace;

  /* Layout */
  --max:  1280px;
  --pad:  clamp(1.25rem, 4vw, 2.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

::selection { background: var(--orange); color: var(--white); }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 3px; }

/* ============================================================
   Layout primitives
============================================================ */

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
  position: relative;
}

.section-pad { padding: clamp(4rem, 8vw, 7rem) 0; }

/* ============================================================
   Header
============================================================ */

header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--line);
  padding: 0.85rem var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  transition: box-shadow 0.3s var(--ease);
}
header.is-scrolled { box-shadow: 0 4px 24px -8px rgba(12, 26, 46, 0.08); }

header .logo img {
  height: 44px; width: auto;
  transition: transform 0.3s var(--ease);
}
header .logo:hover img { transform: scale(1.04); }

.nav-links {
  display: flex; align-items: center; gap: 2rem;
  font-size: 0.94rem; font-weight: 500;
}
.nav-links a {
  color: var(--ink-soft);
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.2s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a::after {
  content: ""; position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--ink);
  color: var(--white) !important;
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.92rem;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -8px rgba(242, 139, 28, 0.5);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  padding: 0.5rem;
  color: var(--ink);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--white);
  z-index: 99;
  padding: 1rem var(--pad) 1.5rem;
  box-shadow: 0 10px 30px -10px rgba(12, 26, 46, 0.15);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.mobile-menu.is-open {
  display: block;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu a {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.mobile-menu a:last-child { border: 0; }
.mobile-cta {
  margin-top: 0.75rem;
  background: var(--orange);
  color: var(--white) !important;
  text-align: center;
  border-radius: 999px;
  padding: 0.85rem 1rem !important;
  border-bottom: 0 !important;
}

@media (max-width: 880px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: block; }
}

/* ============================================================
   Buttons
============================================================ */

.btn-primary, .btn-ghost, .btn-pill-gradient {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all 0.25s var(--ease);
  cursor: pointer;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 20px -8px rgba(242, 139, 28, 0.45);
}
.btn-primary:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(242, 139, 28, 0.6);
}
.btn-primary .arrow { transition: transform 0.25s var(--ease); }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  border: 1.5px solid var(--line-strong);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-pill-gradient {
  background: var(--grad-brand);
  color: var(--white);
  box-shadow: 0 8px 24px -10px rgba(30, 127, 194, 0.5);
}
.btn-pill-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(30, 127, 194, 0.6);
}
.btn-pill-gradient i { transition: transform 0.25s var(--ease); }
.btn-pill-gradient:hover i { transform: translateX(4px); }

/* ============================================================
   Section heads (eyebrow + title + lede)
============================================================ */

.section-eyebrow-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: var(--orange-soft);
  color: var(--orange-deep);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(242, 139, 28, 0.2);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(3rem, 5vw, 4rem);
}
.section-head h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  margin: 1.25rem 0 1rem;
}
.section-head h2 .orange { color: var(--orange); }
.section-head h2 .blue { color: var(--blue); }
.section-head p {
  color: var(--ink-muted);
  font-size: 1.05rem;
  max-width: 60ch;
  margin: 0 auto;
}

/* ============================================================
   Hero
============================================================ */

.hero {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 7vw, 6rem);
  background: var(--white);
  overflow: hidden;
}

/* Decorative dot patterns */
.hero::before {
  content: "";
  position: absolute;
  top: 8%; left: 3%;
  width: 140px; height: 140px;
  background-image: radial-gradient(circle, var(--blue-soft) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.6;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 6%; right: 4%;
  width: 180px; height: 180px;
  background-image: radial-gradient(circle, var(--orange-soft) 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.55;
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.45rem 1rem;
  background: var(--blue-soft);
  color: var(--blue-deep);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(30, 127, 194, 0.18);
}
.hero-eyebrow::before {
  content: ""; display: block;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.hero-title {
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.hero-title .accent-blue { color: var(--blue); position: relative; }
.hero-title .accent-orange { color: var(--orange); position: relative; }

.hero-title .accent-orange::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 6%;
  height: 8px;
  background: var(--orange-soft);
  z-index: -1;
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underline-grow 1s var(--ease) forwards 1.2s;
}
@keyframes underline-grow {
  to { transform: scaleX(1); }
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-muted);
  max-width: 56ch;
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

/* Hero side — image + bubbles */
.hero-side {
  position: relative;
  min-height: 480px;
}
@media (max-width: 980px) { .hero-side { min-height: 460px; } }

.hero-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(12, 26, 46, 0.25),
    0 0 0 1px rgba(12, 26, 46, 0.04);
  aspect-ratio: 4/3;
  background: var(--blue-soft);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30, 127, 194, 0.12) 0%, rgba(242, 139, 28, 0.08) 100%);
}

/* Floating tech bubbles */
.code-bubble {
  position: absolute;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: var(--white);
  box-shadow: 0 10px 25px -10px rgba(12, 26, 46, 0.2);
  animation: bubble-float 6s ease-in-out infinite;
  z-index: 3;
  white-space: nowrap;
}
.code-bubble.orange { background: var(--orange); color: var(--white); }
.code-bubble.blue { background: var(--blue); color: var(--white); }
.code-bubble.white { background: var(--white); color: var(--blue); border: 1px solid var(--line); }
.code-bubble.outline { background: var(--white); color: var(--orange); border: 1px solid var(--orange-soft); }

@keyframes bubble-float {
  0%, 100% { transform: translate(0, 0); }
  25%      { transform: translate(-4px, -10px); }
  50%      { transform: translate(2px, 6px); }
  75%      { transform: translate(6px, -4px); }
}

.b1  { top: -2%;  left: -8%;  animation-delay: 0s; }
.b2  { top: 6%;   right: -4%; animation-delay: 0.5s; }
.b3  { top: 22%;  left: -12%; animation-delay: 1s; }
.b4  { top: 38%;  right: -10%; animation-delay: 1.5s; }
.b5  { top: 56%;  left: -6%;  animation-delay: 0.8s; }
.b6  { bottom: 18%; right: -8%; animation-delay: 1.2s; }
.b7  { bottom: 2%; left: -4%;  animation-delay: 0.3s; }
.b8  { bottom: -4%; right: 4%; animation-delay: 1.7s; }
.b9  { top: 14%;  left: 10%; animation-delay: 2s; }
.b10 { top: 70%;  right: 8%;  animation-delay: 0.6s; }
.b11 { top: 86%;  left: 22%;  animation-delay: 1.4s; }
.b12 { top: 42%;  left: 8%;   animation-delay: 2.2s; }
.b13 { top: 30%;  right: 12%; animation-delay: 0.9s; }
.b14 { bottom: 30%; right: 20%; animation-delay: 1.8s; }

@media (max-width: 980px) {
  .b3, .b5, .b7, .b9, .b11, .b12 { display: none; }
}

/* Floating badge */
.floating-badge {
  position: absolute;
  bottom: -28px; left: -28px;
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: 18px;
  box-shadow: 0 20px 40px -16px rgba(12, 26, 46, 0.2);
  z-index: 4;
  animation: badge-float 5s ease-in-out infinite;
}
.floating-badge .badge-icon {
  position: absolute;
  top: -14px; left: -14px;
  width: 36px; height: 36px;
  background: var(--orange);
  color: var(--white);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: 0 6px 14px -4px rgba(242, 139, 28, 0.5);
}
.floating-badge .badge-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.floating-badge .badge-text {
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-weight: 500;
  margin-top: 0.2rem;
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

@media (max-width: 600px) {
  .floating-badge { bottom: -20px; left: -8px; padding: 1rem 1.15rem; }
  .floating-badge .badge-num { font-size: 1.35rem; }
}

/* ============================================================
   Welcome / About
============================================================ */

.welcome-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.welcome-section .welcome-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.welcome-badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.55rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  box-shadow: 0 6px 16px -10px rgba(12, 26, 46, 0.1);
  margin-bottom: 1.75rem;
}
.welcome-badge i { color: var(--orange); }
.welcome-badge strong { color: var(--blue); font-weight: 700; }

.welcome-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.75rem;
}
.welcome-title .orange { color: var(--orange); }

.welcome-text {
  font-size: 1.08rem;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.welcome-dot {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(60px);
}
.dot-a { top: 10%; left: 4%; width: 240px; height: 240px; background: var(--blue-soft); }
.dot-b { bottom: 8%; right: 4%; width: 280px; height: 280px; background: var(--orange-soft); }

/* ============================================================
   Who We Help
============================================================ */

.who-section { background: var(--white); }

.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 980px) { .who-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .who-grid { grid-template-columns: 1fr; } }

.who-card {
  padding: 2rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.who-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.who-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 24px 40px -20px rgba(12, 26, 46, 0.15);
}
.who-card:hover::before { transform: scaleX(1); }

.who-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--orange-soft);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  transition: transform 0.4s var(--bounce), background 0.3s var(--ease), color 0.3s var(--ease);
}
.who-card:hover .who-card-icon {
  background: var(--orange);
  color: var(--white);
  transform: rotate(-8deg) scale(1.08);
}

.who-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.7rem;
  letter-spacing: -0.01em;
}
.who-card p {
  font-size: 0.94rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ============================================================
   Services
============================================================ */

.services-section { background: var(--cream); position: relative; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -25px rgba(12, 26, 46, 0.2);
}

.service-img {
  position: relative;
  height: 180px;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.service-img::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.2) 0%, transparent 50%);
}
.service-img-icon {
  font-size: 3.5rem;
  color: var(--white);
  position: relative;
  z-index: 1;
  transition: transform 0.5s var(--ease);
}
.service-card:hover .service-img-icon { transform: scale(1.15) rotate(-5deg); }

.service-card-badge {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 38px; height: 38px;
  background: var(--white);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 0.95rem;
  box-shadow: 0 6px 14px -4px rgba(12, 26, 46, 0.2);
  z-index: 2;
}

.service-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.service-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.service-tags {
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--orange-deep);
  letter-spacing: 0.05em;
  margin-bottom: 0.85rem;
  font-weight: 500;
}
.service-body p {
  color: var(--ink-muted);
  font-size: 0.94rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.25rem;
}
.service-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.3s var(--ease), color 0.2s var(--ease);
}
.service-link:hover { color: var(--orange); gap: 0.8rem; }

.services-explore {
  text-align: center;
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
}

/* ============================================================
   Our Work
============================================================ */

.our-work-section { background: var(--white); position: relative; }

.work-card {
  background: var(--cream);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.work-card::before {
  content: "";
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: var(--orange-soft);
  border-radius: 50%;
  opacity: 0.6;
  filter: blur(40px);
}
@media (max-width: 880px) { .work-card { grid-template-columns: 1fr; } }

.work-card-content { position: relative; z-index: 1; }
.work-card-content h2 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  margin: 1.25rem 0 1.25rem;
}
.work-card-content h2 .orange { color: var(--orange); }
.work-card-content p {
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.work-list { list-style: none; margin-bottom: 2rem; }
.work-list li {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.55rem 0;
  color: var(--ink-soft);
  font-size: 0.97rem;
}
.work-list li i {
  width: 26px; height: 26px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
}

.work-img {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 50px -20px rgba(12, 26, 46, 0.25);
  aspect-ratio: 4/3;
}
.work-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.work-card:hover .work-img img { transform: scale(1.04); }
.work-img-tag {
  position: absolute;
  bottom: 16px; left: 16px;
  background: var(--white);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  display: flex; align-items: center; gap: 0.5rem;
  box-shadow: 0 8px 20px -6px rgba(12, 26, 46, 0.2);
}
.work-img-tag i { color: var(--orange); }

/* ============================================================
   Why Codegineers
============================================================ */

.why-section {
  background: var(--blue-bg);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 320px; height: 320px;
  background: var(--blue-soft);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .feat-grid { grid-template-columns: 1fr; } }

.feat-card {
  background: var(--white);
  padding: 2rem 1.75rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  text-align: center;
}
.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -20px rgba(12, 26, 46, 0.15);
}
.feat-card-icon {
  width: 64px; height: 64px;
  background: var(--grad-brand);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 12px 24px -8px rgba(30, 127, 194, 0.35);
  transition: transform 0.4s var(--bounce);
}
.feat-card:hover .feat-card-icon { transform: rotate(-8deg) scale(1.08); }
.feat-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.feat-card p {
  color: var(--ink-muted);
  font-size: 0.93rem;
  line-height: 1.6;
}

/* ============================================================
   Final CTA
============================================================ */

.final-cta-section { background: var(--white); padding: clamp(3rem, 6vw, 5rem) 0; }

.cta-card {
  background: var(--grad-dark);
  border-radius: 28px;
  padding: clamp(2.5rem, 5vw, 4.5rem);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-card-bg {
  position: absolute;
  top: -120px; right: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  opacity: 0.3;
  filter: blur(50px);
}
.cta-card::after {
  content: "";
  position: absolute;
  bottom: -120px; left: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--blue) 0%, transparent 70%);
  opacity: 0.25;
  filter: blur(50px);
}
.cta-card-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.section-eyebrow-pill.light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--orange-light);
  border-color: rgba(255, 255, 255, 0.15);
}
.cta-card h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--white);
  margin: 1.25rem 0 1.25rem;
}
.cta-card h2 .orange-light { color: var(--orange-light); }
.cta-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-buttons-row {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.cta-btn-primary, .cta-btn-secondary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s var(--ease);
}
.cta-btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 24px -10px rgba(242, 139, 28, 0.6);
}
.cta-btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -8px rgba(242, 139, 28, 0.7);
}
.cta-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}
.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* ============================================================
   Footer
============================================================ */

footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: clamp(3rem, 6vw, 5rem) var(--pad) 1.5rem;
  position: relative;
}

.foot-top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 820px) { .foot-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .foot-top { grid-template-columns: 1fr; } }

.foot-brand img { height: 56px; width: auto; margin-bottom: 1rem; }
.foot-tagline {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--orange-light);
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}
.foot-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  max-width: 36ch;
}

.foot-col h5 {
  font-family: var(--mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-light);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.foot-col a, .foot-col p {
  display: flex; align-items: center; gap: 0.65rem;
  color: rgba(255, 255, 255, 0.72);
  padding: 0.32rem 0;
  font-size: 0.92rem;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
  line-height: 1.4;
}
.foot-col a:hover { color: var(--orange-light); transform: translateX(2px); }
.foot-col p i, .foot-col a i { color: var(--orange); width: 16px; }
.foot-col p span { color: rgba(255, 255, 255, 0.72); }

.foot-mid {
  max-width: var(--max);
  margin: 2rem auto 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.follow h5 {
  font-family: var(--mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-light);
  font-weight: 600;
  margin-bottom: 0.85rem;
}
.social-icons { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.social-icons a {
  width: 40px; height: 40px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  transition: all 0.25s var(--ease);
}
.social-icons a:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 16px -6px rgba(242, 139, 28, 0.5);
}

.foot-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.9;
}
.foot-bottom a {
  color: var(--orange-light);
  font-weight: 500;
  transition: color 0.2s var(--ease);
}
.foot-bottom a:hover { color: var(--orange); text-decoration: underline; }

/* ============================================================
   WhatsApp float
============================================================ */

.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.6);
  z-index: 90;
  transition: transform 0.3s var(--ease);
  animation: wa-pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float .tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--ink);
  color: var(--white);
  padding: 0.55rem 0.95rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s var(--ease);
}
.whatsapp-float:hover .tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.6), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50%      { box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.6), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ============================================================
   Interior page hero (Services, Work, Contact)
============================================================ */

.page-hero {
  background: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(3rem, 6vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 20%; left: 8%;
  width: 200px; height: 200px;
  background: var(--blue-soft);
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.7;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 10%; right: 8%;
  width: 220px; height: 220px;
  background: var(--orange-soft);
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.6;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .section-eyebrow-pill { margin-bottom: 1.25rem; }
.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.page-hero h1 .orange { color: var(--orange); }
.page-hero h1 .blue { color: var(--blue); }
.page-hero p {
  font-size: 1.1rem;
  color: var(--ink-muted);
  max-width: 60ch;
  margin: 0 auto;
}

/* ============================================================
   Services page — service detail blocks
============================================================ */

.service-detail {
  padding: clamp(3.5rem, 6vw, 5rem) 0;
}
.service-detail:nth-child(even) { background: var(--cream); }

.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 880px) { .service-detail-inner { grid-template-columns: 1fr; } }
.service-detail-inner.flip { direction: rtl; }
.service-detail-inner.flip > * { direction: ltr; }
@media (max-width: 880px) { .service-detail-inner.flip { direction: ltr; } }

.service-detail-visual {
  aspect-ratio: 4/3;
  border-radius: 22px;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 50px -20px rgba(30, 127, 194, 0.4);
}
.service-detail-visual::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.15) 0%, transparent 50%);
}
.service-detail-visual i { position: relative; z-index: 1; transition: transform 0.5s var(--ease); }
.service-detail-visual:hover i { transform: scale(1.1) rotate(-6deg); }

.service-detail-content .section-eyebrow-pill { margin-bottom: 1rem; }
.service-detail-content h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1rem;
}
.service-detail-content h2 .orange { color: var(--orange); }
.service-detail-content > p {
  color: var(--ink-muted);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  margin-bottom: 2rem;
}
.feature-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.55rem 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.feature-list li i {
  color: var(--orange);
  margin-top: 0.3rem;
  flex-shrink: 0;
}

/* ============================================================
   Process (Services page)
============================================================ */

.process-section { background: var(--white); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 980px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .process-grid { grid-template-columns: 1fr; } }

.process-card {
  position: relative;
  padding: 2.25rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -20px rgba(12, 26, 46, 0.12);
}
.process-num {
  position: absolute;
  top: -20px; left: 50%;
  transform: translateX(-50%);
  width: 44px; height: 44px;
  background: var(--orange);
  color: var(--white);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 8px 20px -6px rgba(242, 139, 28, 0.5);
}
.process-icon {
  font-size: 1.8rem;
  color: var(--blue);
  margin: 0.5rem 0 1rem;
}
.process-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.process-card p {
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ============================================================
   Work page — project grid
============================================================ */

.projects-section { background: var(--white); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 980px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .projects-grid { grid-template-columns: 1fr; } }

.project-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: block;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -20px rgba(12, 26, 46, 0.18);
}
.project-img {
  position: relative;
  height: 220px;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.project-img::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.25) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,0.15) 0%, transparent 50%);
}
.project-img i {
  font-size: 4rem;
  color: var(--white);
  position: relative;
  z-index: 1;
  transition: transform 0.5s var(--ease);
}
.project-card:hover .project-img i { transform: scale(1.15) rotate(-5deg); }
.project-tag {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--orange-deep);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  z-index: 2;
}
.project-body { padding: 1.5rem 1.6rem; }
.project-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.project-cat {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--blue);
  letter-spacing: 0.05em;
  margin-bottom: 0.7rem;
  font-weight: 500;
}
.project-body p {
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ============================================================
   Contact page
============================================================ */

.contact-cards-section { background: var(--white); padding: clamp(2rem, 4vw, 4rem) 0; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 880px) { .contact-cards { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem 2rem;
  border: 1px solid var(--line);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.contact-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
}
.contact-card.call::before { background: var(--orange); }
.contact-card.email::before { background: var(--blue); }
.contact-card.follow::before { background: var(--grad-brand); }
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -20px rgba(12, 26, 46, 0.18);
}

.contact-card-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.3rem;
  color: var(--white);
  transition: transform 0.4s var(--bounce);
}
.contact-card.call .contact-card-icon { background: var(--orange); }
.contact-card.email .contact-card-icon { background: var(--blue); }
.contact-card.follow .contact-card-icon { background: var(--grad-brand); }
.contact-card:hover .contact-card-icon { transform: scale(1.1) rotate(-6deg); }

.contact-card-label {
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.6rem;
}
.contact-card-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
  word-break: break-word;
}
.contact-card-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  width: 100%;
  justify-content: center;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  transition: color 0.2s var(--ease), gap 0.3s var(--ease);
}
.contact-card.call .contact-card-cta:hover { color: var(--orange); gap: 0.7rem; }
.contact-card.email .contact-card-cta:hover { color: var(--blue); gap: 0.7rem; }
.contact-card.follow .contact-card-cta:hover { color: var(--orange); gap: 0.7rem; }

.contact-card-socials {
  display: flex; justify-content: center; gap: 0.6rem;
  margin: 0.5rem 0 1rem;
}
.contact-card-socials a {
  width: 40px; height: 40px;
  background: var(--cream);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
  transition: all 0.25s var(--ease);
}
.contact-card-socials a:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

/* Form */
.contact-form-section { background: var(--cream); }

.contact-form-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: 0 24px 50px -25px rgba(12, 26, 46, 0.12);
}

.contact-form-wrap .section-head { margin-bottom: 2rem; }
.contact-form-wrap .section-head .section-eyebrow-pill {
  background: var(--blue-soft);
  color: var(--blue-deep);
  border-color: rgba(30, 127, 194, 0.2);
}

.contact-form {
  display: flex; flex-direction: column; gap: 1.25rem;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 540px) { .contact-form-row { grid-template-columns: 1fr; } }

.contact-form label {
  display: flex; flex-direction: column; gap: 0.45rem;
}
.contact-form label span {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.contact-form label span .req { color: var(--orange); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  font-size: 0.96rem;
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
  resize: vertical;
  width: 100%;
  font-family: inherit;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
}
.contact-form textarea { min-height: 130px; }

.contact-submit {
  background: #25d366;
  color: var(--white);
  border-radius: 14px;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.7rem;
  transition: all 0.25s var(--ease);
  box-shadow: 0 10px 24px -8px rgba(37, 211, 102, 0.5);
  margin-top: 0.5rem;
}
.contact-submit:hover {
  background: #1eb555;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.65);
}
.contact-form-note {
  text-align: center;
  font-size: 0.84rem;
  color: var(--ink-muted);
  margin-top: 0.75rem;
}

/* ============================================================
   Reveal animations
============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

.fade-in-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-in-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.fade-in-stagger.is-visible > *:nth-child(2) { transition-delay: 0.08s; opacity: 1; transform: translateY(0); }
.fade-in-stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; opacity: 1; transform: translateY(0); }
.fade-in-stagger.is-visible > *:nth-child(4) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }
.fade-in-stagger.is-visible > *:nth-child(5) { transition-delay: 0.32s; opacity: 1; transform: translateY(0); }
.fade-in-stagger.is-visible > *:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: translateY(0); }

.reveal.d1 { transition-delay: 0.05s; }
.reveal.d2 { transition-delay: 0.15s; }
.reveal.d3 { transition-delay: 0.30s; }
.reveal.d4 { transition-delay: 0.45s; }
.reveal.d5 { transition-delay: 0.60s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .fade-in, .fade-in-stagger > * { opacity: 1; transform: none; }
}
