/* =========================
   UNIVERSAL HEADER
========================= */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined' !important;
  font-weight: normal !important;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
  vertical-align: middle;
  font-variation-settings:
    'FILL' 0,
    'wght' 500,
    'GRAD' 0,
    'opsz' 24;
}
:root {
  --primary: #ff5833;
  --bg-light: #f8f6f5;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --border-soft: rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.06);
  --shadow-premium: 0 18px 50px rgba(255, 88, 51, 0.15);
  --radius-card: 24px;
  --radius-pill: 999px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 18px 20px 0;
  background: transparent;
}

.header-shell {
  max-width: 1280px;
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
  padding: 0 22px;
  border: 1px solid rgba(255, 88, 51, 0.10);
  background: rgba(248, 246, 245, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.site-header.scrolled .header-inner {
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
  border-color: rgba(255, 88, 51, 0.14);
  background: rgba(248, 246, 245, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px rgba(255, 88, 51, 0.22);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    filter 0.35s ease;
}

.brand:hover .brand-mark {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 34px rgba(255, 88, 51, 0.28);
  filter: saturate(1.05);
}

.brand-mark .material-symbols-outlined {
  font-size: 22px;
  line-height: 1;
}

.brand-text {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-dark);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  color: #334155;
  text-decoration: none;
  transition:
    color 0.28s ease,
    background-color 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 8px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;

}

.nav-link:hover {
  color: var(--primary);
  background: rgba(255, 88, 51, 0.07);
  transform: translateY(-1px);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--primary);
  background: rgba(255, 88, 51, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 14px 30px rgba(255, 88, 51, 0.24);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    background 0.32s ease;
}

.header-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.16) 30%,
    transparent 60%
  );
  transform: translateX(-140%);
  transition: transform 0.7s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(255, 88, 51, 0.28);
}

.header-cta:hover::before {
  transform: translateX(140%);
}

.mobile-menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition:
    transform 0.28s ease,
    background-color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.mobile-menu-toggle:hover {
  transform: translateY(-1px);
  background: #ffffff;
  border-color: rgba(255, 88, 51, 0.16);
  box-shadow: var(--shadow-soft);
}

.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #0f172a;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease,
    width 0.28s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-wrap {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  pointer-events: none;
  transition:
    grid-template-rows 0.42s ease,
    opacity 0.32s ease,
    margin-top 0.32s ease;
  margin-top: 0;
}

.mobile-nav-wrap.open {
  grid-template-rows: 1fr;
  opacity: 1;
  pointer-events: auto;
  margin-top: 12px;
}

.mobile-nav {
  overflow: hidden;
  padding: 0;
  border-radius: 24px;
  background: rgba(248, 246, 245, 0.96);
  border: 1px solid rgba(255, 88, 51, 0.10);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.mobile-nav-link {
  display: block;
  padding: 18px 22px;
  text-decoration: none;
  color: #1e293b;
  font-size: 1rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    padding-left 0.25s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary);
  background: rgba(255, 88, 51, 0.06);
  padding-left: 28px;
}

.mobile-nav-footer {
  padding: 18px;
}

.mobile-cta {
  display: inline-flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(255, 88, 51, 0.22);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.mobile-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(255, 88, 51, 0.28);
}

/* Responsive */
@media (max-width: 991px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .header-inner {
    min-height: 74px;
    padding: 0 16px;
  }

  .site-header {
    padding: 14px 14px 0;
  }
}

@media (max-width: 640px) {
  .brand-text {
    font-size: 1.05rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .header-inner {
    border-radius: 20px;
  }

  .mobile-nav {
    border-radius: 20px;
  }
}

/* =========================
   UNIVERSAL FOOTER
========================= */

.site-footer {
  padding: 24px 20px 36px;
  background: transparent;
}

.footer-shell {
  max-width: 1280px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 32px;
  padding: 34px 32px 24px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
  position: relative;
  overflow: hidden;
}

.footer-shell::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 88, 51, 0.10), transparent 70%);
  pointer-events: none;
}

.footer-shell::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.08), transparent 72%);
  pointer-events: none;
}

.footer-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-brand-block {
  max-width: 460px;
}

.footer-brand {
  display: inline-flex;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none;
}

.footer-brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 26px rgba(255, 88, 51, 0.20);
  flex-shrink: 0;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.footer-brand:hover .footer-brand-mark {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 34px rgba(255, 88, 51, 0.26);
}

.footer-brand-mark .material-symbols-outlined {
  font-size: 24px;
  line-height: 1;
}

.footer-brand-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-brand-text {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1;
}

.footer-brand-subtext {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.75;
  color: #64748b;
  max-width: 420px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}

.footer-links-col a,
.footer-socials a {
  text-decoration: none;
  color: #334155;
  font-size: 0.95rem;
  font-weight: 600;
  transition:
    color 0.28s ease,
    transform 0.28s ease,
    opacity 0.28s ease;
}

.footer-links-col a:hover,
.footer-socials a:hover {
  color: var(--primary);
  transform: translateX(2px);
}

.footer-divider {
  position: relative;
  z-index: 1;
  height: 1px;
  margin: 28px 0 20px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(15, 23, 42, 0.08),
    transparent
  );
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  margin: 0;
  font-size: 0.9rem;
  color: #94a3b8;
  font-weight: 500;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 991px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 18px 14px 26px;
  }

  .footer-shell {
    padding: 26px 20px 20px;
    border-radius: 24px;
  }

  .footer-brand {
    gap: 12px;
  }

  .footer-brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .footer-brand-text {
    font-size: 1.2rem;
  }

  .footer-brand-subtext {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-divider {
    margin: 24px 0 18px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-socials {
    gap: 16px;
  }
}
@media (hover: hover) and (pointer: fine) {
  body {
    cursor: none;
  }

@media (hover: hover) and (pointer: fine) {
  body {
    cursor: none;
  }

  .custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
   transition:
  transform 0.08s ease,
  opacity 0.16s ease;
  }

  .custom-cursor img {
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0.9;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
  }

  .custom-cursor.is-hover {
    transform: translate(-50%, -50%) scale(1.25);
  }

  .custom-cursor.is-hidden {
    opacity: 0;
  }

  a,
  button,
  [role="button"],
  input,
  textarea,
  select,
  .cursor-hover {
    cursor: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .custom-cursor {
    display: none;
  }
}

  a,
  button,
  [role="button"],
  input,
  textarea,
  select,
  .cursor-hover {
    cursor: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .custom-cursor,
  .custom-cursor-dot {
    display: none;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeLegibility;
}

a,
button,
.card-hover,
img,
.site-header,
.nav-link,
.header-cta,
.mobile-nav-link,
.footer-links-col a,
.footer-socials a {
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    background-color 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

button:hover,
a:hover {
  will-change: transform;
}

img {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a,
button,
img,
.site-header,
.nav-link,
.header-cta,
.mobile-nav-link,
.footer-links-col a,
.footer-socials a,
.group,
.group * {
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease,
    transform 0.3s ease;
}

img {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.service-card {
  will-change: transform;
}
.service-card:hover {
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.service-hover-preview {
  position: fixed;
  top: 0;
  left: 0;
  width: min(360px, calc(100vw - 32px));
  pointer-events: none;
  z-index: 1200;
  opacity: 0;
  transform: translate3d(-9999px, -9999px, 0) scale(0.96);
}

.service-hover-preview.is-visible {
  opacity: 1;
}

.service-hover-preview-inner {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 88, 51, 0.12);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.service-hover-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 88, 51, 0.10);
  color: #ff5833;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-hover-title {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.service-hover-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #64748b;
}

@media (max-width: 991px) {
  .service-hover-preview {
    display: none;
  }
}

.service-hover-preview {
  max-width: min(360px, calc(100vw - 32px));
}

.service-card {
  position: relative;
}

.service-hover-preview {
  position: fixed;
  top: 0;
  left: 0;
  width: min(360px, calc(100vw - 32px));
  pointer-events: none;
  z-index: 1200;
  opacity: 0;
  transform: translate3d(-9999px, -9999px, 0) scale(0.96);
}

.service-hover-preview.is-visible {
  opacity: 1;
}

.stagger-group > * {
  transform: none;
}

