/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 250ms var(--ease);
  text-align: center;
  min-height: 44px;
  box-sizing: border-box;
}
.btn-primary { background: var(--orange-btn); color: #fff; }
.btn-primary:hover { background: var(--dark); color: #fff; }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: var(--orange-btn); color: #fff; }
.btn-ghost { background: transparent; border-color: var(--border); color: var(--dark); }
.btn-ghost:hover { border-color: var(--dark); }
.btn-light { background: #fff; color: var(--dark); }
.btn-light:hover { background: var(--orange-btn); color: #fff; }

/* Scroll progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: var(--orange); z-index: 1000; transform-origin: left;
}

/* Nav */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: 400ms var(--ease);
}
.nav.is-scrolled {
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 84px;
}
.nav.is-scrolled .logo img {
  height: 70px;
}
.nav-inner {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.logo img {
  height: 70px;
  width: auto;
  transition: height 400ms var(--ease);
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 14px; font-weight: 500; position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1.5px; background: var(--orange);
  transition: width 250ms var(--ease);
}
.nav-links a:hover::after, .nav-links a.is-active::after { width: 100%; }
.nav-cta { justify-self: end; display: flex; align-items: center; gap: 16px; }
.menu-toggle {
  --mt-size: 48px;
  --mt-bar: var(--dark);
  --mt-ring: rgba(255, 82, 0, 0.22);
  position: relative;
  display: none;
  width: var(--mt-size);
  height: var(--mt-size);
  min-width: var(--mt-size);
  border: 1.5px solid var(--mt-ring);
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 82, 0, 0.12), transparent 55%),
    #fff;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.06);
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  transition:
    border-color 280ms var(--ease),
    background 280ms var(--ease),
    box-shadow 280ms var(--ease),
    transform 280ms var(--ease);
}
.menu-toggle::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 180deg, transparent, rgba(255, 82, 0, 0.35), transparent 40%);
  opacity: 0;
  animation: menu-orbit 2.8s linear infinite;
  transition: opacity 280ms var(--ease);
  pointer-events: none;
}
.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(255, 82, 0, 0.55);
  box-shadow: 0 10px 24px rgba(255, 82, 0, 0.16);
  transform: translateY(-1px);
  outline: none;
}
.menu-toggle:hover::before,
.menu-toggle:focus-visible::before,
.menu-toggle[aria-expanded="true"]::before {
  opacity: 1;
}
.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--mt-bar);
  transform: translateX(-50%);
  transform-origin: center;
  transition:
    transform 360ms var(--ease),
    width 360ms var(--ease),
    opacity 220ms var(--ease),
    background 280ms var(--ease),
    top 360ms var(--ease);
}
.menu-toggle span:nth-child(1) {
  top: 15px;
  width: 16px;
  animation: menu-bar-pulse 2.4s ease-in-out infinite;
}
.menu-toggle span:nth-child(2) {
  top: 22px;
  width: 20px;
  background: var(--orange);
  animation: menu-bar-pulse 2.4s ease-in-out infinite 0.18s;
}
.menu-toggle span:nth-child(3) {
  top: 29px;
  width: 12px;
  animation: menu-bar-pulse 2.4s ease-in-out infinite 0.36s;
}
.menu-toggle:hover span:nth-child(1),
.menu-toggle:focus-visible span:nth-child(1) { width: 20px; }
.menu-toggle:hover span:nth-child(3),
.menu-toggle:focus-visible span:nth-child(3) { width: 20px; }
.menu-toggle[aria-expanded="true"] {
  --mt-bar: #fff;
  border-color: rgba(255, 82, 0, 0.7);
  background: linear-gradient(145deg, #111 0%, #1f1f1f 100%);
  box-shadow: 0 12px 28px rgba(255, 82, 0, 0.22);
}
.menu-toggle[aria-expanded="true"] span {
  animation: none;
  background: #fff;
  width: 18px;
  top: 22px;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateX(-50%) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) scaleX(0.2);
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateX(-50%) rotate(-45deg);
}
@keyframes menu-orbit {
  to { transform: rotate(360deg); }
}
@keyframes menu-bar-pulse {
  0%, 100% { transform: translateX(-50%) scaleX(1); }
  50% { transform: translateX(-50%) scaleX(0.86); }
}
@media (prefers-reduced-motion: reduce) {
  .menu-toggle::before,
  .menu-toggle span:nth-child(1),
  .menu-toggle span:nth-child(2),
  .menu-toggle span:nth-child(3) {
    animation: none !important;
  }
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding:
    max(24px, env(safe-area-inset-top))
    max(24px, env(safe-area-inset-right))
    max(28px, env(safe-area-inset-bottom))
    max(24px, env(safe-area-inset-left));
  color: #fff;
  background:
    radial-gradient(circle at 85% 8%, rgba(255, 82, 0, 0.28), transparent 34%),
    radial-gradient(circle at 12% 88%, rgba(255, 82, 0, 0.18), transparent 36%),
    linear-gradient(160deg, #0b0b0b 0%, #151515 48%, #101010 100%);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-18px) scale(0.985);
  transition:
    opacity 420ms var(--ease),
    transform 520ms var(--ease),
    visibility 0s linear 420ms;
}
.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition:
    opacity 420ms var(--ease),
    transform 520ms var(--ease),
    visibility 0s linear 0s;
}
.mobile-nav__glow {
  position: absolute;
  inset: auto -20% -25% auto;
  width: min(70vw, 420px);
  height: min(70vw, 420px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 82, 0, 0.34), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
  animation: mobile-glow 7s ease-in-out infinite alternate;
}
.mobile-nav__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin:
    calc(-1 * max(24px, env(safe-area-inset-top)))
    calc(-1 * max(24px, env(safe-area-inset-right)))
    0
    calc(-1 * max(24px, env(safe-area-inset-left)));
  padding:
    max(16px, env(safe-area-inset-top))
    max(24px, env(safe-area-inset-right))
    18px
    max(24px, env(safe-area-inset-left));
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f5 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}
.mobile-nav__brand {
  display: inline-flex;
  align-items: center;
  margin: 0;
  color: inherit;
  text-decoration: none;
}
.mobile-nav__brand img {
  display: block;
  height: 52px;
  width: auto;
  max-width: min(62vw, 196px);
}
.mobile-nav__brand:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
  border-radius: 8px;
}
.mobile-close {
  position: relative;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border: 1.5px solid rgba(255, 82, 0, 0.45);
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 82, 0, 0.18), transparent 55%),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  transition:
    border-color 280ms var(--ease),
    background 280ms var(--ease),
    box-shadow 280ms var(--ease),
    transform 280ms var(--ease);
}
.mobile-close:hover,
.mobile-close:focus-visible {
  border-color: rgba(255, 82, 0, 0.8);
  background: linear-gradient(145deg, #111 0%, #1f1f1f 100%);
  box-shadow: 0 12px 28px rgba(255, 82, 0, 0.22);
  transform: translateY(-1px);
  outline: none;
}
.mobile-close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transform-origin: center;
}
.mobile-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.mobile-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.mobile-nav__top .mobile-close {
  border-color: rgba(255, 82, 0, 0.35);
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.mobile-nav__top .mobile-close span {
  background: var(--dark);
}
.mobile-nav__top .mobile-close:hover,
.mobile-nav__top .mobile-close:focus-visible {
  background: #fff;
  border-color: rgba(255, 82, 0, 0.65);
  box-shadow: 0 8px 22px rgba(255, 82, 0, 0.16);
}
.mobile-nav__links {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: auto 0;
}
.mobile-nav__links a {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 12px 8px;
  border-radius: 14px;
  color: #fff;
  font-size: clamp(1.85rem, 8vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(22px);
  transition:
    background 280ms var(--ease),
    color 280ms var(--ease),
    transform 520ms var(--ease),
    opacity 520ms var(--ease);
  transition-delay: 0ms;
}
.mobile-nav.open .mobile-nav__links a {
  opacity: 1;
  transform: none;
  transition-delay: calc(90ms + (var(--i, 0) * 55ms));
}
.mobile-nav__num {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 82, 0, 0.85);
}
.mobile-nav__label {
  position: relative;
  z-index: 1;
}
.mobile-nav__line {
  position: absolute;
  left: 52px;
  right: 12px;
  bottom: 8px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 82, 0, 0.55), transparent 80%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms var(--ease);
}
.mobile-nav__links a:focus-visible {
  color: #fff;
  background: rgba(255, 82, 0, 0.1);
  outline: none;
}
.mobile-nav__links a:focus-visible .mobile-nav__label {
  color: var(--orange);
}
.mobile-nav__links a:focus-visible .mobile-nav__line {
  transform: scaleX(1);
}
.mobile-nav__links a.is-active {
  background: rgba(255, 82, 0, 0.1);
}
.mobile-nav__links a.is-active .mobile-nav__label {
  color: var(--orange);
}
.mobile-nav__links a.is-active .mobile-nav__line {
  transform: scaleX(1);
}
@media (hover: hover) and (pointer: fine) {
  .mobile-nav__links a:hover {
    color: #fff;
    background: rgba(255, 82, 0, 0.1);
  }
  .mobile-nav__links a:hover .mobile-nav__label {
    color: var(--orange);
  }
  .mobile-nav__links a:hover .mobile-nav__line {
    transform: scaleX(1);
  }
}
.mobile-nav__footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 480ms var(--ease), transform 480ms var(--ease);
  transition-delay: 0ms;
}
.mobile-nav.open .mobile-nav__footer {
  opacity: 1;
  transform: none;
  transition-delay: 360ms;
}
.mobile-nav__cta {
  min-width: 150px;
}
.mobile-nav__social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mobile-nav__social .social-btn {
  margin: 0;
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.mobile-nav__social .social-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--social-bg);
}
.mobile-nav__social .social-btn svg {
  width: 18px;
  height: 18px;
  display: block;
}
.mobile-nav__social .social-btn:hover {
  transform: translateY(-3px) scale(1.05);
  color: #fff;
}
.social-btn--whatsapp {
  --social-bg: linear-gradient(145deg, #25d366 0%, #128c7e 100%);
}
@keyframes mobile-glow {
  from { transform: translate3d(0, 0, 0) scale(1); opacity: 0.75; }
  to { transform: translate3d(-18px, -24px, 0) scale(1.12); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-nav,
  .mobile-nav__links a,
  .mobile-nav__footer,
  .mobile-nav__line,
  .mobile-close {
    transition: none !important;
  }
  .mobile-nav__glow {
    animation: none !important;
  }
  .mobile-nav:not(.open) {
    transform: none;
  }
  .mobile-nav__links a,
  .mobile-nav__footer {
    opacity: 1;
    transform: none;
  }
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #f6f6f4 0%, #ededeb 100%);
  color: var(--muted);
  padding: clamp(56px, 8vw, 84px) 0 28px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
.footer h3 {
  color: var(--dark);
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
}
.footer a {
  display: flex;
  align-items: center;
  min-height: 44px;
  margin: 0;
  padding: 8px 0;
  font-size: 15px;
  color: var(--dark);
  font-weight: 500;
  transition: color 200ms var(--ease);
}
.footer a:hover { color: var(--orange-ink); }
.footer-brand p {
  max-width: 34ch;
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}
.footer-logo {
  height: 70px;
  width: auto;
  display: block;
}
.footer-bottom {
  margin-top: clamp(40px, 6vw, 56px);
  padding-top: 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}
.footer-bottom a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-right: 12px;
  padding: 8px 4px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.footer-bottom a:hover { color: var(--orange-ink); }
.footer-bottom a:last-child { margin-right: 0; }

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.footer-social .social-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  margin: 0;
  border-radius: 14px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.12);
  transition:
    transform 280ms var(--ease),
    box-shadow 280ms var(--ease),
    filter 280ms var(--ease);
}
.footer-social .social-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--social-bg);
  transition: transform 360ms var(--ease);
}
.footer-social .social-btn::after {
  content: "";
  position: absolute;
  inset: -40%;
  z-index: -1;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.34), transparent 58%);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 280ms var(--ease), transform 360ms var(--ease);
}
.footer-social .social-btn svg {
  width: 20px;
  height: 20px;
  display: block;
  transition: transform 320ms var(--ease);
}
.footer-social .social-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 30px rgba(17, 17, 17, 0.18);
  color: #fff;
  filter: saturate(1.08);
}
.footer-social .social-btn:hover::before {
  transform: scale(1.08);
}
.footer-social .social-btn:hover::after {
  opacity: 1;
  transform: scale(1);
}
.footer-social .social-btn:hover svg {
  transform: rotate(-8deg) scale(1.08);
}
.footer-social .social-btn:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}
.social-btn--instagram {
  --social-bg: linear-gradient(135deg, #f58529 0%, #dd2a7b 48%, #8134af 78%, #515bd4 100%);
}
.social-btn--facebook {
  --social-bg: linear-gradient(145deg, #1877f2 0%, #0c63d4 100%);
}
@media (prefers-reduced-motion: reduce) {
  .footer-social .social-btn,
  .footer-social .social-btn::before,
  .footer-social .social-btn::after,
  .footer-social .social-btn svg {
    transition: none;
  }
}

/* Service rows */
.service-row {
  display: grid; grid-template-columns: 80px 1fr auto; gap: 24px;
  align-items: center; padding: 32px 0;
  border-top: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: 400ms var(--ease);
}
.service-row:last-child { border-bottom: 1px solid var(--border); }
.service-row .num { font-size: 14px; color: var(--muted); font-weight: 600; }
.service-row h3 { font-size: clamp(1.6rem, 3vw, 2.6rem); }
.service-row p { max-height: 0; overflow: hidden; color: var(--muted); margin-top: 0; transition: 400ms var(--ease); }
.service-row:hover { background: var(--bg-soft); padding-left: 16px; padding-right: 16px; }
.service-row:hover .num { color: var(--orange); }
.service-row:hover p { max-height: 80px; margin-top: 8px; }
.service-row .arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--dark);
  flex-shrink: 0;
  transition: transform 400ms var(--ease), border-color 400ms var(--ease), color 400ms var(--ease), background 400ms var(--ease);
}
.service-row .arrow svg {
  width: 20px;
  height: 20px;
}
.service-row:hover .arrow {
  transform: translateX(8px);
  color: var(--orange);
  border-color: rgba(255, 82, 0, 0.35);
  background: var(--orange-soft);
}

/* Work cards */
.work-card { position: relative; overflow: hidden; display: block; background: #000; }
.work-card img, .work-card video {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1); transition: transform 900ms var(--ease);
}
.work-card:hover img, .work-card:hover video { transform: scale(1.04); }
.work-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65), transparent 55%);
  opacity: 0; color: #fff; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px; transition: opacity 400ms var(--ease);
}
.work-card:hover .work-overlay { opacity: 1; }
.work-meta { font-size: 12px; text-transform: uppercase; color: var(--orange-ink); }

/* Who we serve cards */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.serve-card {
  position: relative;
  min-height: 250px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(145deg, #fff 0%, var(--bg-soft) 100%);
  transition: transform 300ms var(--ease), border-color 300ms var(--ease), box-shadow 300ms var(--ease);
}
.serve-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -46px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--orange-soft);
  pointer-events: none;
  transition: transform 300ms var(--ease);
}
.serve-card:hover {
  border-color: var(--orange);
  box-shadow: 0 18px 40px rgba(255, 82, 0, 0.12);
  transform: translateY(-6px);
}
.serve-card:hover::after {
  transform: scale(1.35);
}
.serve-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
}
.serve-card__icon {
  --serve-icon-color: var(--orange);
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--serve-icon-color) 28%, white);
  border-radius: 15px;
  background: color-mix(in srgb, var(--serve-icon-color) 12%, white);
  color: var(--serve-icon-color);
}
.serve-card__icon svg {
  width: 27px;
  height: 27px;
}
.serve-card:nth-child(2) .serve-card__icon { --serve-icon-color: #3461ff; }
.serve-card:nth-child(3) .serve-card__icon { --serve-icon-color: #a855f7; }
.serve-card:nth-child(4) .serve-card__icon { --serve-icon-color: #dc2626; }
.serve-card:nth-child(5) .serve-card__icon { --serve-icon-color: #0ea5e9; }
.serve-card:nth-child(6) .serve-card__icon { --serve-icon-color: #ec4899; }
.serve-card:nth-child(7) .serve-card__icon { --serve-icon-color: #14b8a6; }
.serve-card:nth-child(8) .serve-card__icon { --serve-icon-color: #f59e0b; }
.serve-card:nth-child(9) .serve-card__icon { --serve-icon-color: #6366f1; }
.serve-card:nth-child(10) .serve-card__icon { --serve-icon-color: #22c55e; }
.serve-card__index {
  color: var(--orange-ink);
  font-size: 13px;
  font-weight: 700;
}
.serve-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
  font-size: 1.25rem;
}
.serve-card p {
  position: relative;
  z-index: 1;
  max-width: 28rem;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.serve-card--more {
  border-color: #bdbdbd;
  background: #00a1ff;
  color: #fff;
}
.serve-card--more::after {
  background: rgb(255 255 255 / 43%);
}
.serve-card--more .serve-card__index {
  color: #fff;
}
.serve-card--more p {
  color: #fff;
}

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: 0; text-align: left;
  padding: 22px 0; font-size: 18px; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  min-height: 48px;
}
.faq-q .plus { transition: transform 250ms var(--ease); color: var(--orange-ink); font-size: 24px; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; color: var(--muted); transition: max-height 400ms var(--ease); }
.faq-item.open .faq-a { max-height: 240px; padding-bottom: 20px; }

/* Form */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; }
.field input, .field select, .field textarea {
  border: 1px solid var(--border); background: #fff; padding: 14px 16px; border-radius: 10px; font-size: 16px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--orange); outline-offset: 1px;
}
.form-error { color: #b42318; font-size: 14px; }
.form-ok { color: #067647; font-size: 14px; }

/* Cursor */
.cursor {
  position: fixed; width: 12px; height: 12px; border: 1px solid var(--dark);
  border-radius: 50%; pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%); mix-blend-mode: difference; transition: width 200ms, height 200ms, background 200ms;
}
.cursor.expand { width: 56px; height: 56px; background: var(--orange); border-color: var(--orange); }
.cursor.view::after { content: "VIEW"; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 10px; }

/* Marquee — client logos */
.marquee { overflow: hidden; }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: marquee 80s linear infinite;
}
.marquee img {
  width: 200px;
  max-width: 200px;
  height: auto;
  max-height: 120px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  /* filter: grayscale(1); */
  opacity: 0.7;
  transition: filter 250ms var(--ease), opacity 250ms var(--ease);
}
.marquee img:hover {
  /* filter: grayscale(0); */
  opacity: 1;
}
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  overflow: hidden;
  background: var(--orange);
  transform: translate3d(0, -101%, 0);
  will-change: transform;
  transition: transform 0.85s cubic-bezier(0.65, 0, 0.35, 1);
}
/* One wipe only: orange slides top → bottom, then new page shows */
.page-transition.is-covering {
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .page-transition {
    display: none !important;
  }
  .back-to-top {
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }
  .back-to-top:hover {
    transform: none;
  }
}

.wa-float {
  position: fixed; left: 20px; bottom: 20px; z-index: 80;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 24px rgba(37,211,102,.4);
}
.wa-float:hover { transform: scale(1.06); }

/* Back to top */
.back-to-top {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 82;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--dark);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.88);
  transition:
    opacity 0.4s var(--ease),
    visibility 0.4s var(--ease),
    transform 0.4s var(--ease),
    box-shadow 0.3s var(--ease),
    background 0.3s var(--ease),
    color 0.3s var(--ease);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.back-to-top:hover {
  background: var(--orange);
  color: #fff;
  box-shadow:
    0 14px 36px rgba(255, 82, 0, 0.35),
    0 0 0 1px rgba(255, 82, 0, 0.2);
  transform: translateY(-3px) scale(1.04);
}
.back-to-top:active {
  transform: translateY(0) scale(0.96);
}
.back-to-top:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}
.back-to-top__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  pointer-events: none;
}
.back-to-top__track {
  fill: none;
  stroke: rgba(0, 0, 0, 0.08);
  stroke-width: 2.5;
}
.back-to-top__progress {
  fill: none;
  stroke: var(--orange);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 138.23;
  stroke-dashoffset: 138.23;
  transition: stroke-dashoffset 0.12s linear;
}
.back-to-top:hover .back-to-top__progress {
  stroke: #fff;
}
.back-to-top__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  transition: transform 0.35s var(--ease);
}
.back-to-top:hover .back-to-top__icon {
  transform: translateY(-2px);
}
.back-to-top__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* Modal */
.modal { position: fixed; inset: 0; z-index: 120; display: none; }
.modal.open { display: grid; place-items: center; }
.modal-bg { position: absolute; inset: 0; background: rgba(17,17,17,.55); backdrop-filter: blur(8px); }
.modal-card {
  position: relative; width: min(520px, calc(100% - 32px)); background: #fff;
  border-radius: 20px; padding: 32px; z-index: 1;
}
.modal-close { position: absolute; top: 14px; right: 14px; border: 0; background: var(--bg-soft); width: 48px; height: 48px; border-radius: 50%; cursor: pointer; }
