{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/PhLlPMrM1XxnoFxBevpP/7bw6hQiZLo6QA43pLd1D/contactOverrides.js", "ssg:https://framerusercontent.com/modules/DA0WEuNsiRBI6Lj3DQqm/K6s5HitZA7P39MVLyULZ/R16LVJYqr.js", "ssg:https://framerusercontent.com/modules/Q9pjmjDSI6zfhy2h74v9/S1wvHy4XKaV1gPmXZxFb/R16LVJYqr-0.js", "ssg:https://framerusercontent.com/modules/Q9pjmjDSI6zfhy2h74v9/S1wvHy4XKaV1gPmXZxFb/R16LVJYqr.js"],
  "sourcesContent": ["// /overrides/contactOverrides.ts\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect}from\"react\";import{sendGAEvent}from\"https://framerusercontent.com/modules/zuzxz0e21R6OLq3m9w7P/NmSuEHa3M94RGZKsSXh0/common.js\";// --- Meta Pixel\u9001\u4FE1\u7528\uFF08\u4EFB\u610F\uFF09 ---\nfunction sendFbPixelEvent(eventName){if(window.fbq){window.fbq(\"track\",eventName);console.log(`\u2705 fbq sent: ${eventName}`);}}// --- \u5404\u5165\u529B\u6B04\u306E onBlur \u30A4\u30D9\u30F3\u30C8\u3067\u5165\u529B\u691C\u77E5\uFF08GA4\uFF09 ---\nexport function TrackNameInput(){return{id:\"input-name\",onBlur:()=>sendGAEvent(\"form_field_interacted\",\"Name\")};}export function TrackEmailInput(){return{id:\"input-email\",onBlur:()=>sendGAEvent(\"form_field_interacted\",\"Email\")};}export function TrackPhoneInput(){return{id:\"input-phone\",onBlur:()=>sendGAEvent(\"form_field_interacted\",\"Phone\")};}export function TrackCompanyInput(){return{id:\"input-company\",onBlur:()=>sendGAEvent(\"form_field_interacted\",\"Company\")};}export function TrackMessageInput(){return{id:\"input-message\",onBlur:()=>sendGAEvent(\"form_field_interacted\",\"Message\")};}// --- \u9001\u4FE1\u30DC\u30BF\u30F3\u306E onClick \u30A4\u30D9\u30F3\u30C8\u3067\u9001\u4FE1\u72B6\u6CC1\u3092\u5224\u5B9A ---\nexport function TrackFormSubmission(){return{id:\"contact-submit-button\",onClick:()=>{const name=document.getElementById(\"input-name\")?.value?.trim();const email=document.getElementById(\"input-email\")?.value?.trim();const phone=document.getElementById(\"input-phone\")?.value?.trim();const company=document.getElementById(\"input-company\")?.value?.trim();const message=document.getElementById(\"input-message\")?.value?.trim();const consent=document.getElementById(\"checkbox-consent\")?.checked;const isEmpty=!name||!email||!company||!message;const isConsentUnchecked=!consent;if(isEmpty&&isConsentUnchecked){sendGAEvent(\"contact_submit_error\",\"Missing Fields & Consent\");}else if(isEmpty){sendGAEvent(\"contact_submit_error\",\"Missing Fields\");}else if(isConsentUnchecked){sendGAEvent(\"contact_submit_no_consent\",\"Consent Unchecked\");}else{sendGAEvent(\"contact_submit_success\",\"Form Submission\");sendFbPixelEvent(\"Lead\")// Meta Pixel\u9001\u4FE1\n;}}};}// --- \u6539\u5584\u6E08\uFF1A\u30B5\u30F3\u30AD\u30E5\u30FC\u30E1\u30C3\u30BB\u30FC\u30B8\u76E3\u8996\uFF0BID\u8A2D\u5B9A ---\nexport function ObserveFormSuccessAndSetID(){useEffect(()=>{// Framer\u3067Thank you\u30C6\u30AD\u30B9\u30C8\u306E\u30D6\u30ED\u30C3\u30AF\u3092\u7279\u5B9A\nconst target=Array.from(document.querySelectorAll(\"div\")).find(el=>el.textContent?.trim()===\"Thank you\");if(!target){console.warn(\"\u26A0\uFE0F Thank You block not found. Skipping observer.\");return;}// ID\u3092\u4ED8\u4E0E\uFF08\u4EFB\u610F\uFF09\ntarget.id=\"thank-you-message\";console.log(\"\u2705 Thank You block found and ID set.\");const observer=new MutationObserver(()=>{const isVisible=window.getComputedStyle(target).display!==\"none\";if(isVisible){sendGAEvent(\"contact_submit_success\",\"Observed\");sendFbPixelEvent(\"Lead\");console.log(\"\u2705 Form submission success observed!\");observer.disconnect();}});observer.observe(target,{attributes:true,attributeFilter:[\"style\",\"class\"]});},[]);return{};}import{useContext as __legacyOverrideHOC_useContext}from\"react\";import{DataObserverContext as __legacyOverrideHOC_DataObserverContext}from\"framer\";export function withTrackNameInput(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...TrackNameInput(props)});};}withTrackNameInput.displayName=\"TrackNameInput\";export function withTrackEmailInput(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...TrackEmailInput(props)});};}withTrackEmailInput.displayName=\"TrackEmailInput\";export function withTrackPhoneInput(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...TrackPhoneInput(props)});};}withTrackPhoneInput.displayName=\"TrackPhoneInput\";export function withTrackCompanyInput(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...TrackCompanyInput(props)});};}withTrackCompanyInput.displayName=\"TrackCompanyInput\";export function withTrackMessageInput(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...TrackMessageInput(props)});};}withTrackMessageInput.displayName=\"TrackMessageInput\";export function withTrackFormSubmission(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...TrackFormSubmission(props)});};}withTrackFormSubmission.displayName=\"TrackFormSubmission\";export function withObserveFormSuccessAndSetID(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...ObserveFormSuccessAndSetID(props)});};}withObserveFormSuccessAndSetID.displayName=\"ObserveFormSuccessAndSetID\";\nexport const __FramerMetadata__ = {\"exports\":{\"withTrackFormSubmission\":{\"type\":\"reactHoc\",\"name\":\"withTrackFormSubmission\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"TrackPhoneInput\":{\"type\":\"override\",\"name\":\"TrackPhoneInput\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"TrackEmailInput\":{\"type\":\"override\",\"name\":\"TrackEmailInput\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withTrackPhoneInput\":{\"type\":\"reactHoc\",\"name\":\"withTrackPhoneInput\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"TrackCompanyInput\":{\"type\":\"override\",\"name\":\"TrackCompanyInput\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ObserveFormSuccessAndSetID\":{\"type\":\"override\",\"name\":\"ObserveFormSuccessAndSetID\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withTrackEmailInput\":{\"type\":\"reactHoc\",\"name\":\"withTrackEmailInput\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"TrackFormSubmission\":{\"type\":\"override\",\"name\":\"TrackFormSubmission\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withTrackMessageInput\":{\"type\":\"reactHoc\",\"name\":\"withTrackMessageInput\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"TrackNameInput\":{\"type\":\"override\",\"name\":\"TrackNameInput\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withObserveFormSuccessAndSetID\":{\"type\":\"reactHoc\",\"name\":\"withObserveFormSuccessAndSetID\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"TrackMessageInput\":{\"type\":\"override\",\"name\":\"TrackMessageInput\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withTrackCompanyInput\":{\"type\":\"reactHoc\",\"name\":\"withTrackCompanyInput\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withTrackNameInput\":{\"type\":\"reactHoc\",\"name\":\"withTrackNameInput\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./contactOverrides.map", "// Generated by Framer (5b26096)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{withObserveFormSuccessAndSetID}from\"https://framerusercontent.com/modules/PhLlPMrM1XxnoFxBevpP/7bw6hQiZLo6QA43pLd1D/contactOverrides.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/Q9pjmjDSI6zfhy2h74v9/S1wvHy4XKaV1gPmXZxFb/R16LVJYqr.js\";const MotionDivWithFX=withFX(motion.div);const MotionButtonWithObserveFormSuccessAndSetID176u6m3=withCodeBoundaryForOverrides(motion.button,{nodeId:\"F3yA4BSri\",override:withObserveFormSuccessAndSetID,scopeId:\"R16LVJYqr\"});const enabledGestures={F3yA4BSri:{hover:true,pressed:true}};const cycleOrder=[\"F3yA4BSri\",\"qBYvY56NJ\",\"bymTsSZ9I\",\"Yzx7A4Pyb\",\"qO6aXVZep\"];const serializationHash=\"framer-bFKcp\";const variantClassNames={bymTsSZ9I:\"framer-v-yiz4l0\",F3yA4BSri:\"framer-v-176u6m3\",qBYvY56NJ:\"framer-v-xymbsz\",qO6aXVZep:\"framer-v-di1nw0\",Yzx7A4Pyb:\"framer-v-e9fj7f\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Default:\"F3yA4BSri\",Disabled:\"bymTsSZ9I\",Error:\"qO6aXVZep\",Loading:\"qBYvY56NJ\",Success:\"Yzx7A4Pyb\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"F3yA4BSri\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"F3yA4BSri\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"qBYvY56NJ\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"qBYvY56NJ\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(MotionButtonWithObserveFormSuccessAndSetID176u6m3,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-176u6m3\",className,classNames),\"data-framer-name\":\"Default\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"F3yA4BSri\",ref:refBinding,style:{backgroundColor:\"rgb(34, 34, 34)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.14), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.13), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.1), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05)\",opacity:1,...style},variants:{\"F3yA4BSri-hover\":{backgroundColor:\"var(--token-a8a1fca6-4a09-4638-a518-7f5770c5b648, rgb(255, 183, 0))\",opacity:1},\"F3yA4BSri-pressed\":{backgroundColor:\"rgba(17, 17, 17, 0.9)\",opacity:1},bymTsSZ9I:{opacity:.5},qO6aXVZep:{backgroundColor:\"rgba(255, 34, 68, 0.15)\",opacity:1},Yzx7A4Pyb:{opacity:1}},...addPropertyOverrides({\"F3yA4BSri-hover\":{\"data-framer-name\":undefined},\"F3yA4BSri-pressed\":{\"data-framer-name\":undefined},bymTsSZ9I:{\"data-framer-name\":\"Disabled\"},qBYvY56NJ:{\"data-framer-name\":\"Loading\"},qO6aXVZep:{\"data-framer-name\":\"Error\"},Yzx7A4Pyb:{\"data-framer-name\":\"Success\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"\u9001\u4FE1\u3059\u308B\"})}),className:\"framer-1v21ut2\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"onEPBeBhZ\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{qO6aXVZep:{\"--extracted-r6o4lv\":\"rgb(255, 34, 68)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({qO6aXVZep:{children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 34, 68))\"},children:\"Something went wrong\"})}),fonts:[\"Inter-SemiBold\"]},Yzx7A4Pyb:{children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Thank you\"})}),fonts:[\"Inter-SemiBold\"]}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i2dmin\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"cqwtE2d1H\",style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-188ulep\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"bZC_P2kCd\",style:{background:\"conic-gradient(from 180deg at 50% 50%, rgb(68, 204, 255) 0deg, rgb(68, 204, 255) 360deg)\",backgroundColor:\"rgb(68, 204, 255)\",mask:\"none\",WebkitMask:\"none\"},variants:{qBYvY56NJ:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 7.208614864864882deg, rgb(255, 255, 255) 342deg)\",backgroundColor:\"rgba(0, 0, 0, 0)\",mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s7fqf1\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"b5a6wuILl\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},transformTemplate:transformTemplate1})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bFKcp.framer-1ax4du2, .framer-bFKcp .framer-1ax4du2 { display: block; }\",\".framer-bFKcp.framer-176u6m3 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 50px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 240px; }\",\".framer-bFKcp .framer-1v21ut2 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-bFKcp .framer-1i2dmin { aspect-ratio: 1 / 1; flex: none; gap: 10px; height: var(--framer-aspect-ratio-supported, 19px); overflow: hidden; position: relative; width: 19px; }\",\".framer-bFKcp .framer-188ulep { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-bFKcp .framer-1s7fqf1 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 2px; }\",\".framer-bFKcp.framer-v-xymbsz.framer-176u6m3, .framer-bFKcp.framer-v-yiz4l0.framer-176u6m3, .framer-bFKcp.framer-v-e9fj7f.framer-176u6m3, .framer-bFKcp.framer-v-di1nw0.framer-176u6m3 { cursor: unset; }\",\".framer-bFKcp.framer-v-xymbsz .framer-188ulep { overflow: hidden; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 50\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"qBYvY56NJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"bymTsSZ9I\":{\"layout\":[\"fixed\",\"fixed\"]},\"Yzx7A4Pyb\":{\"layout\":[\"fixed\",\"fixed\"]},\"qO6aXVZep\":{\"layout\":[\"fixed\",\"fixed\"]},\"bK0aMv0SN\":{\"layout\":[\"fixed\",\"fixed\"]},\"ivKDprgZ7\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerR16LVJYqr=withCSS(Component,css,\"framer-bFKcp\");export default FramerR16LVJYqr;FramerR16LVJYqr.displayName=\"Button\";FramerR16LVJYqr.defaultProps={height:50,width:240};addPropertyControls(FramerR16LVJYqr,{variant:{options:[\"F3yA4BSri\",\"qBYvY56NJ\",\"bymTsSZ9I\",\"Yzx7A4Pyb\",\"qO6aXVZep\"],optionTitles:[\"Default\",\"Loading\",\"Disabled\",\"Success\",\"Error\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerR16LVJYqr,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerR16LVJYqr\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"50\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qBYvY56NJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bymTsSZ9I\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Yzx7A4Pyb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qO6aXVZep\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bK0aMv0SN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ivKDprgZ7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"240\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Send\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Send\"})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 34, 68))\"},children:\"Send\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (5b26096)\nimport*as localizedValues from\"./R16LVJYqr-0.js\";const valuesByLocaleId={GvUY3NnSY:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["sendFbPixelEvent", "eventName", "window", "TrackNameInput", "sendGAEvent", "TrackEmailInput", "TrackPhoneInput", "TrackCompanyInput", "TrackMessageInput", "TrackFormSubmission", "name", "email", "phone", "company", "message", "consent", "isEmpty", "isConsentUnchecked", "ObserveFormSuccessAndSetID", "ue", "target", "el", "observer", "withTrackNameInput", "C", "props", "re", "DataObserverContext", "p", "withTrackEmailInput", "withTrackPhoneInput", "withTrackCompanyInput", "withTrackMessageInput", "withTrackFormSubmission", "withObserveFormSuccessAndSetID", "R16LVJYqr_exports", "__export", "__FramerMetadata__", "R16LVJYqr_default", "R16LVJYqr_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v0", "p", "x", "motion", "v1", "v2", "__FramerMetadata__", "valuesByLocaleId", "R16LVJYqr_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "MotionDivWithFX", "withFX", "motion", "MotionButtonWithObserveFormSuccessAndSetID176u6m3", "withCodeBoundaryForOverrides", "withObserveFormSuccessAndSetID", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "RichText", "getLocalizedValue", "css", "FramerR16LVJYqr", "withCSS", "R16LVJYqr_default", "addPropertyControls", "ControlType", "addFonts", "__FramerMetadata__"]
}
