/* ============== BASE ============== */
* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; overflow-x: hidden; }
.font-display { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; letter-spacing: -0.02em; }

/* Selection */
::selection { background: #f97316; color: #fff; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #f97316, #ea580c); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #c2410c; }

/* ============== PAGE LOADER ============== */
@keyframes loader-fill {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}
.animate-loader {
  width: 100%;
  animation: loader-fill 1.2s ease-out forwards;
}

/* ============== NAVBAR ============== */
#navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 4px 30px rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
#navbar.scrolled .nav-link { color: #0f172a; }
#navbar:not(.scrolled) .nav-link { color: #fff; }

.nav-link {
  position: relative;
  transition: color .2s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #f97316, #fb923c);
  transition: width .3s ease;
  border-radius: 2px;
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover { color: #f97316 !important; }

#navbar.scrolled #mobile-toggle { background: #f1f5f9; }
#navbar:not(.scrolled) #mobile-toggle { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.15); }
#navbar:not(.scrolled) #mobile-toggle i { color: #fff; }

.mobile-link {
  color: #0f172a;
  border-radius: 10px;
  padding-left: 12px;
  transition: all .2s;
}
.mobile-link:hover { background: #fff7ed; color: #f97316; }

/* ============== BUTTONS ============== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #fff;
  font-weight: 600;
  border-radius: 14px;
  font-size: 15px;
  box-shadow: 0 10px 30px -10px rgba(249, 115, 22, 0.6);
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left .6s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -10px rgba(249, 115, 22, 0.75);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-weight: 600;
  border-radius: 14px;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  transition: all .3s;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.6rem;
  background: #0f172a;
  color: #fff;
  font-weight: 600;
  border-radius: 14px;
  font-size: 15px;
  transition: all .3s;
}
.btn-dark:hover {
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -10px rgba(15, 23, 42, 0.4);
}

.btn-emergency {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 1.1rem 2rem;
  color: #fff;
  font-weight: 700;
  border-radius: 16px;
  transition: transform .3s;
  overflow: visible;
}
.btn-emergency:hover { transform: translateY(-3px); }

/* ============== GLASS ELEMENTS ============== */
.glass-pill {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 9999px;
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.3);
}
.glass-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.4);
}

.input-field {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #fff !important;
    font-size: 14px;
    transition: all .25s;
    background-color: transparent !important;
        border-color: #505050 !important;
}
.input-field::placeholder { color: rgba(255,255,255,0.45); }
.input-field:focus {
  outline: none;
  border-color: #f97316;
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15);
}
.input-field option { background: #0f172a; color: #fff; }

.input-light {
  width: 100%;
  padding: 0.875rem 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  color: #0f172a;
  font-size: 14px;
  transition: all .25s;
}
.input-light::placeholder { color: #94a3b8; }
.input-light:focus {
  outline: none;
  border-color: #f97316;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

/* ============== EYEBROW / TITLES ============== */
.eyebrow {
  display: inline-block;
  padding: 0.4rem 0.95rem;
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  color: #c2410c;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 9999px;
  border: 1px solid #fed7aa;
}
.eyebrow-light {
  background: rgba(249, 115, 22, 0.15);
  color: #fdba74;
  border-color: rgba(249, 115, 22, 0.3);
}
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: #0f172a;
}
.section-title-light { color: #fff; }
.section-title-light { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.1; }

/* ============== SERVICE CARDS ============== */
.service-card {
  position: relative;
  padding: 2.25rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f97316, #fb923c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(249,115,22,0.08), transparent 70%);
  transition: all .5s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.12);
  border-color: #fed7aa;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { bottom: -25%; right: -25%; }
.service-card:hover .service-icon { transform: rotate(-8deg) scale(1.05); }

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: #fff;
  background: linear-gradient(135deg, #f97316, #ea580c);
  box-shadow: 0 12px 24px -8px rgba(249, 115, 22, 0.5);
  transition: transform .4s ease;
}
.service-icon-accent { background: linear-gradient(135deg, #fb923c, #f59e0b); box-shadow: 0 12px 24px -8px rgba(245, 158, 11, 0.5); }
.service-icon-danger { background: linear-gradient(135deg, #ef4444, #dc2626); box-shadow: 0 12px 24px -8px rgba(239, 68, 68, 0.5); }
.service-icon-blue   { background: linear-gradient(135deg, #3b82f6, #1d4ed8); box-shadow: 0 12px 24px -8px rgba(59, 130, 246, 0.5); }
.service-icon-purple { background: linear-gradient(135deg, #a855f7, #7e22ce); box-shadow: 0 12px 24px -8px rgba(168, 85, 247, 0.5); }
.service-icon-green  { background: linear-gradient(135deg, #16a34a, #15803d); box-shadow: 0 12px 24px -8px rgba(22, 163, 74, 0.5); }

.service-list {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e2e8f0;
  display: grid;
  gap: 0.6rem;
  font-size: 14px;
  color: #475569;
}
.service-list li { display: flex; align-items: center; gap: 0.6rem; }
.service-list i { color: #16a34a; font-size: 12px; }

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: #f97316;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  z-index: 1;
}
.service-cta i { transition: transform .3s ease; }
.service-cta:hover { color: #c2410c; }
.service-cta:hover i { transform: translateX(4px); }

/* ============== FEATURE PILLS ============== */
.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
  transition: all .25s;
}
.feature-pill:hover {
  background: #fff7ed;
  border-color: #fed7aa;
  transform: translateY(-2px);
}
.feature-pill i { color: #16a34a; flex-shrink: 0; }

/* ============== STAT CARDS ============== */
.stat-card {
  position: relative;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  text-align: center;
  transition: all .3s;
  backdrop-filter: blur(6px);
}
.stat-card:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 20px 40px -10px rgba(249, 115, 22, 0.2);
}
.stat-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  color: #fff;
}
.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fdba74, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat-label {
  margin-top: 0.5rem;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}

/* ============== REASON CARDS ============== */
.reason-card {
  padding: 1.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  transition: all .3s;
}
.reason-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.3);
}
.reason-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(249, 115, 22, 0.15);
  color: #fdba74;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  transition: all .3s;
}
.reason-card:hover .reason-icon {
  background: #f97316;
  color: #fff;
  transform: scale(1.05) rotate(-5deg);
}

/* ============== PROCESS CARDS ============== */
.process-card {
  position: relative;
  padding: 2rem 1.75rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  text-align: center;
  transition: all .3s;
}
.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.1);
  border-color: #fed7aa;
}
.process-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(180deg, #fed7aa, transparent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 0.9;
  margin-bottom: 0.5rem;
}
.process-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  border-radius: 50%;
  background: #0f172a;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  transition: all .3s;
  position: relative;
  z-index: 1;
}
.process-card:hover .process-icon {
  background: linear-gradient(135deg, #f97316, #ea580c);
  transform: scale(1.05);
}

/* ============== TESTIMONIALS ============== */
.testimonial-card {
  position: relative;
  padding: 3rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  box-shadow: 0 20px 60px -20px rgba(15, 23, 42, 0.1);
  overflow: hidden;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #f97316, #fb923c);
}
.testimonial-quote {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 5rem;
  color: #fff7ed;
  z-index: 0;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  display: grid;
  place-items: center;
  transition: all .25s;
  cursor: pointer;
}
.slider-btn:hover { border-color: #f97316; color: #f97316; }
.slider-btn-primary {
  background: #f97316;
  border-color: #f97316;
  color: #fff;
  box-shadow: 0 10px 25px -8px rgba(249, 115, 22, 0.5);
}
.slider-btn-primary:hover { background: #ea580c; color: #fff; transform: translateX(2px); }

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  transition: all .3s ease;
  cursor: pointer;
  border: none;
  padding: 0;
}
.dot.active {
  background: #f97316;
  width: 28px;
  border-radius: 4px;
}

/* ============== GALLERY (MASONRY) ============== */
.masonry {
  column-count: 1;
  column-gap: 1.25rem;
}
@media (min-width: 640px) { .masonry { column-count: 2; } }
@media (min-width: 1024px) { .masonry { column-count: 3; } }
@media (min-width: 1280px) { .masonry { column-count: 4; } }

.masonry-item {
  position: relative;
  display: block;
  margin-bottom: 1.25rem;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  break-inside: avoid;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.15);
}
.masonry-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .7s cubic-bezier(0.4, 0, 0.2, 1);
}
.masonry-tall img { height: 380px; }
.masonry-item:hover img { transform: scale(1.08); }
.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1.5rem;
  color: #fff;
  opacity: 0;
  transition: opacity .35s ease;
}
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-overlay i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f97316;
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============== FAQ ============== */
.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  transition: all .3s;
  overflow: hidden;
}
.faq-item:hover { border-color: #fed7aa; }
.faq-item[open] {
  border-color: #f97316;
  box-shadow: 0 12px 30px -10px rgba(249, 115, 22, 0.2);
}
.faq-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #0f172a;
  cursor: pointer;
  list-style: none;
  transition: color .2s;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary:hover { color: #f97316; }
.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff7ed;
  color: #f97316;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  transition: transform .3s ease, background .3s;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: #f97316;
  color: #fff;
}
.faq-content {
  padding: 0 1.75rem 1.5rem 1.75rem;
  color: #475569;
  line-height: 1.7;
  animation: faq-slide .35s ease-out;
}
@keyframes faq-slide {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============== CONTACT ============== */
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  transition: all .25s;
}
.contact-item:hover {
  border-color: #fed7aa;
  transform: translateX(4px);
  box-shadow: 0 12px 25px -10px rgba(15, 23, 42, 0.08);
}
.contact-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

/* ============== FOOTER ============== */
.footer-link {
  color: rgba(255,255,255,0.55);
  transition: color .2s;
  position: relative;
}
.footer-link:hover { color: #fdba74; }
.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: all .25s;
}
.social-icon:hover {
  background: #f97316;
  border-color: #f97316;
  color: #fff;
  transform: translateY(-3px);
}

/* ============== BACKGROUND PATTERNS ============== */
.bg-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* ============== ANIMATIONS ============== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.animate-float { animation: float 5s ease-in-out infinite; }
.animate-float-slow { animation: float 7s ease-in-out infinite; }
.animate-float-delay { animation: float 6s ease-in-out 1s infinite; }

@keyframes floating-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}
.floating-orb { animation: floating-orb 15s ease-in-out infinite; }
.floating-delay { animation-delay: -5s; }
.floating-delay-2 { animation-delay: -10s; }

@keyframes shake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-12deg); }
  75% { transform: rotate(12deg); }
}
.animate-shake { animation: shake .8s ease-in-out infinite; transform-origin: center; }

@keyframes pulse-slow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}
.animate-pulse-slow { animation: pulse-slow 4s ease-in-out infinite; }

@keyframes ping-slow {
  0% { transform: scale(1); opacity: 0.5; }
  75%, 100% { transform: scale(1.4); opacity: 0; }
}
.animate-ping-slow { animation: ping-slow 2.5s cubic-bezier(0, 0, 0.2, 1) infinite; }

@keyframes scroll-line {
  0%, 100% { transform: scaleY(0.3); opacity: 0.3; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; }
}
.animate-scroll-line { animation: scroll-line 1.8s ease-in-out infinite; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee { animation: marquee 30s linear infinite; }

/* ============== BACK TO TOP ============== */
#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#back-to-top:hover {
  transform: translateY(-4px) scale(1.05);
}

/* ============== RESPONSIVE TWEAKS ============== */
@media (max-width: 768px) {
  .testimonial-card { padding: 2rem 1.5rem; }
  .testimonial-quote { font-size: 3rem; top: 1rem; right: 1rem; }
  .section-title, .section-title-light { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .stat-num { font-size: 2.25rem; }
  .masonry-item img { height: 220px; }
  .masonry-tall img { height: 290px; }
}

@media (max-width: 480px) {
  .service-card { padding: 1.75rem; }
  .glass-card { padding: 1.5rem !important; }
  .btn-primary, .btn-ghost, .btn-dark { padding: 0.75rem 1.2rem; font-size: 14px; }
}

/* Smooth reveals with AOS already imported */
[data-aos] { will-change: transform, opacity; }

/* Lazy-loaded image skeleton */
img[loading="lazy"] {
  background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
  background-size: 200% 100%;
  animation: skeleton 1.4s ease-in-out infinite;
  border-radius: 10px;
}
img[loading="lazy"].loaded { animation: none; background: none; }
@keyframes skeleton {
  to { background-position-x: -200%; }
}

/* ==================================================
   Single Service template typography
   ================================================== */
.prose-service { color: #475569; font-size: 1.05rem; line-height: 1.75; }
.prose-service > * + * { margin-top: 1.1em; }
.prose-service h1,
.prose-service h2,
.prose-service h3,
.prose-service h4 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: #0f172a;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.prose-service h2 { font-size: 1.9rem; margin-top: 2em; margin-bottom: 0.5em; }
.prose-service h3 { font-size: 1.45rem; margin-top: 1.6em; margin-bottom: 0.4em; }
.prose-service h4 { font-size: 1.15rem; margin-top: 1.4em; margin-bottom: 0.3em; }
.prose-service p  { color: #475569; }
.prose-service a  { color: #f97316; text-decoration: underline; text-underline-offset: 3px; font-weight: 600; transition: color .25s ease; }
.prose-service a:hover { color: #c2410c; }
.prose-service strong { color: #0f172a; font-weight: 700; }
.prose-service ul,
.prose-service ol { padding-left: 1.4rem; }
.prose-service ul { list-style: none; padding-left: 0; }
.prose-service ul li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: 0.5rem;
}
.prose-service ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 1.3rem;
  height: 1.3rem;
  background: rgba(22, 163, 74, 0.12);
  color: #16a34a;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
}
.prose-service ol { list-style: decimal; }
.prose-service ol li { margin-bottom: 0.5rem; padding-left: 0.4rem; }
.prose-service ol li::marker { color: #f97316; font-weight: 700; }
.prose-service blockquote {
  border-left: 4px solid #f97316;
  background: #fff7ed;
  padding: 1rem 1.4rem;
  border-radius: 0 14px 14px 0;
  font-style: italic;
  color: #1e293b;
}
.prose-service img {
  border-radius: 18px;
  box-shadow: 0 10px 40px -10px rgba(15, 23, 42, 0.18);
  margin: 1.5em 0;
}
.prose-service code {
  background: #f1f5f9;
  padding: 0.15em 0.45em;
  border-radius: 6px;
  font-size: 0.9em;
  color: #0f172a;
}
.prose-service table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 40px -10px rgba(15, 23, 42, 0.12);
}
.prose-service th,
.prose-service td { padding: 0.85rem 1rem; text-align: left; border-bottom: 1px solid #e2e8f0; }
.prose-service th { background: #0f172a; color: #fff; font-weight: 600; letter-spacing: 0.02em; }
.prose-service tr:last-child td { border-bottom: none; }

/* small responsive sidebar tweak */
@media (max-width: 1023px) {
  .lg\:sticky { position: relative !important; top: auto !important; }
}

/* ==================================================
   PERFORMANCE: content-visibility on below-fold sections.
   Browser skips paint/layout cost for offscreen sections.
   Huge LCP/TBT win on mobile — no visible side-effect.
   ================================================== */
#about,
#why,
#process,
#testimonials,
#gallery,
#faq,
#contact,
footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 1200px;
}

/* Prevent CLS — give images aspect placeholders */
.service-card img,
.masonry-item img,
.prose-service img { aspect-ratio: 16/10; object-fit: cover; }

/* Skip heavy filters on small screens — saves a lot of paint */
@media (max-width: 768px) {
  .blur-3xl { filter: blur(40px); }
  [class*="floating-orb"],
  .animate-pulse-slow,
  .animate-float-slow,
  .animate-float-delay { animation: none !important; }
}

/* Honor user reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
