
        /* ══════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════ */
        :root {
            --blue: #0A73FD;
            --blue-dark: #064597;
            --blue-hover: #1A81FF;
            --blue-dim: rgba(10, 115, 253, .10);
            --blue-bdr: rgba(10, 115, 253, .24);
            --blue-glow: rgba(10, 115, 253, .32);

            --ink: #1E1E1E;
            --ink-mid: #262626;
            --ink-deep: #1A191F;
            --ink-foot: #0E0D12;

            --white: #FFFFFF;
            --gray-50: #F8FAFC;
            --gray-100: #F1F5F9;
            --gray-200: #E2E8F0;
            --gray-400: hsl(215, 20%, 65%);
            --gray-500: hsl(215, 17%, 55%);
            --gray-600: #64748B;
            --gray-800: #1E293B;

            --fh: 'Space Grotesk', system-ui, sans-serif;
            --fb: 'DM Sans', system-ui, sans-serif;

            --r-sm: 8px;
            --r-md: 16px;
            --r-lg: 24px;
            --r-xl: 32px;

            --sh-sm: 0 2px 12px rgba(0, 0, 0, .06);
            --sh-md: 0 8px 32px rgba(0, 0, 0, .10);
            --sh-lg: 0 20px 60px rgba(0, 0, 0, .15);
            --sh-blue: 0 8px 32px rgba(10, 115, 253, .30);

            --ease: cubic-bezier(0.4, 0, 0.2, 1);
            --t: 0.32s;
        }

        /* ══════════════════════════════════════ page animations ══════════════════════════════════════ */


        /* ══════════════════════════════════════
   RESET
══════════════════════════════════════ */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--fb);
            color: var(--ink);
            background: var(--white);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        img {
            display: block;
            max-width: 100%;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
            font-family: inherit;
        }

        ul {
            list-style: none;
        }

        svg {
            display: block;
        }

        /* ══════════════════════════════════════
   LAYOUT
══════════════════════════════════════ */
        .wrap {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 48px;
        }

        /* ══════════════════════════════════════
   ACCESSIBILITY
══════════════════════════════════════ */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            clip: rect(0, 0, 0, 0);
            overflow: hidden;
            white-space: nowrap;
        }

        a:focus-visible,
        button:focus-visible {
            outline: 2px solid var(--blue);
            outline-offset: 3px;
            border-radius: var(--r-sm);
        }

        @media (prefers-reduced-motion:reduce) {

            *,
            *::before,
            *::after {
                animation-duration: .01ms !important;
                transition-duration: .01ms !important;
            }
        }

        /* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: var(--fb);
            font-weight: 600;
            border-radius: var(--r-sm);
            transition: all var(--t) var(--ease);
            white-space: nowrap;
            cursor: pointer;
        }

        .btn-blue {
            background: var(--blue);
            color: var(--white);
            font-size: 15px;
            padding: 13px 26px;
            border: 1px solid transparent;
        }

        .btn-blue:hover {
            background: var(--blue-hover);
            box-shadow: var(--sh-blue);
            transform: translateY(-2px);
        }

        .btn-blue svg {
            transition: transform var(--t) var(--ease);
        }

        .btn-blue:hover svg {
            transform: translateX(3px);
        }

        .btn-ghost {
            background: transparent;
            color: rgba(255, 255, 255, .72);
            font-size: 15px;
            padding: 13px 22px;
            border: 1px solid rgba(255, 255, 255, .16);
        }

        .btn-ghost:hover {
            color: var(--white);
            border-color: rgba(255, 255, 255, .34);
            background: rgba(255, 255, 255, .06);
        }

        .btn-outline {
            background: transparent;
            color: var(--blue);
            font-size: 15px;
            padding: 13px 22px;
            border: 1.5px solid var(--blue-bdr);
        }

        .btn-outline:hover {
            background: var(--blue-dim);
            border-color: var(--blue);
        }

        .btn-sm {
            font-size: 13px;
            padding: 9px 18px;
            border-radius: 6px;
        }

        /* Section headers */
        .sec-head {
            text-align: center;
            max-width: 640px;
            margin: 0 auto 72px;
        }

        .sec-head--left {
            text-align: left;
            margin: 0 0 48px;
        }

        .eyebrow {
            display: inline-block;
            font-family: var(--fb);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--blue);
            margin-bottom: 14px;
        }

        .sec-title {
            font-family: var(--fh);
            font-size: clamp(26px, 3.2vw, 42px);
            font-weight: 700;
            letter-spacing: -.9px;
            color: var(--ink-mid);
            line-height: 1.18;
            margin-bottom: 16px;
        }
        .sec-title--branding{
              color: var(--gray-100);
        }

        .sec-title--white {
            color: var(--white);
        }

        .sec-sub {
            font-family: var(--fb);
            font-size: 17px;
            color: var(--gray-500);
            line-height: 1.72;
        }

        .sec-sub--white {
            color: rgba(255, 255, 255, .56);
        }


        

        /* ══════════════════════════════════════
   ANIM SEEDS
══════════════════════════════════════ */
        .au {
            opacity: 0;
            transform: translateY(30px);
        }

        .af {
            opacity: 0;
        }

        /* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
        .nav {
            position: fixed;
            inset: 0 0 auto;
            z-index: 900;
            padding: 22px 0;
            transition: padding var(--t) var(--ease),
                background var(--t) var(--ease),
                box-shadow var(--t) var(--ease);
        }

        .nav.scrolled {
            padding: 14px 0;
            background: rgba(26, 25, 31, .80);
            backdrop-filter: blur(22px);
            -webkit-backdrop-filter: blur(22px);
            border-bottom: 1px solid rgba(255, 255, 255, .07);
            box-shadow: 0 4px 32px rgba(0, 0, 0, .22);
        }

        .nav__row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .nav__logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--fh);
            font-size: 21px;
            font-weight: 700;
            color: var(--white);
            letter-spacing: -.5px;
            flex-shrink: 0;
        }

        .nav__mark {
            width: 34px;
            height: 34px;
            background: var(--blue);
            border-radius: var(--r-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 700;
            color: var(--white);
            flex-shrink: 0;
        }

        .nav__menu {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .nav__menu a {
            font-family: var(--fb);
            font-size: 14px;
            font-weight: 500;
            color: rgba(255, 255, 255, .68);
            padding: 8px 14px;
            border-radius: 6px;
            transition: color var(--t) var(--ease), background var(--t) var(--ease);
        }

        .nav__menu a:hover {
            color: var(--white);
            background: rgba(255, 255, 255, .08);
        }

        .nav__menu a.is-current {
            color: var(--white);
        }

        .nav__right {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .nav__lang {
            display: flex;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: 6px;
            padding: 3px;
            gap: 2px;
        }

        .nav__lang button {
            font-family: var(--fb);
            font-size: 12px;
            font-weight: 700;
            color: rgba(255, 255, 255, .44);
            padding: 5px 11px;
            border-radius: 4px;
            transition: all var(--t) var(--ease);
        }

        .nav__lang button.on {
            background: var(--white);
            color: var(--ink-deep);
        }

        .nav__burger {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 6px;
        }

        .nav__burger span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--white);
            border-radius: 2px;
            transition: all var(--t) var(--ease);
        }

        .nav__burger.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .nav__burger.open span:nth-child(2) {
            opacity: 0;
        }

        .nav__burger.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* Mobile drawer */
        .nav__drawer {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(26, 25, 31, .97);
            backdrop-filter: blur(24px);
            z-index: 850;
            padding: 100px 32px 48px;
            flex-direction: column;
            gap: 4px;
        }

        .nav__drawer.open {
            display: flex;
        }

        .nav__drawer a {
            font-family: var(--fh);
            font-size: 26px;
            font-weight: 600;
            color: rgba(255, 255, 255, .65);
            padding: 14px 0;
            border-bottom: 1px solid rgba(255, 255, 255, .07);
            transition: color var(--t) var(--ease);
        }

        .nav__drawer a:hover {
            color: var(--white);
        }

        .nav__drawer .btn-blue {
            margin-top: 28px;
            justify-content: center;
        }

        /* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
        .hero {
            min-height: 100vh;
            background: var(--ink-deep);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 128px 0 84px;
        }

        /* Ambient radial — different from homepage grid texture */
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 70% 60% at 68% 40%, rgba(10, 115, 253, .12) 0%, transparent 70%),
                radial-gradient(ellipse 40% 50% at 20% 80%, rgba(6, 69, 151, .14) 0%, transparent 65%);
            pointer-events: none;
        }

        .hero__grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 72px;
            position: relative;
            z-index: 1;
        }

        /* Left */
        .hero__badge {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            background: rgba(10, 115, 253, .12);
            border: 1px solid rgba(10, 115, 253, .28);
            color: #93C5FD;
            font-family: var(--fb);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .08em;
            text-transform: uppercase;
            padding: 7px 16px;
            border-radius: 100px;
            margin-bottom: 30px;
        }

        .hero__badge-dot {
            width: 6px;
            height: 6px;
            background: #60A5FA;
            border-radius: 50%;
            flex-shrink: 0;
            animation: blink 2.4s ease-in-out infinite;
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: .4;
                transform: scale(.65);
            }
        }

        .hero__h1 {
            font-family: var(--fh);
            font-size: clamp(36px, 5vw, 62px);
            font-weight: 700;
            line-height: 1.08;
            letter-spacing: -2px;
            color: var(--white);
            margin-bottom: 24px;
        }

        .hero__h1 em {
            font-style: normal;
            background: linear-gradient(118deg, #93C5FD 0%, var(--blue) 55%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero__lead {
            font-size: 17px;
            line-height: 1.72;
            color: rgba(255, 255, 255, .50);
            max-width: 460px;
            margin-bottom: 44px;
        }

        .hero__actions {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        /* Right: SVG constellation */
        .hero__visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* SVG animations */
        @keyframes float-a {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(-9px)
            }
        }

        @keyframes float-b {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(-7px)
            }
        }

        @keyframes float-c {

            0%,
            100% {
                transform: translateY(-4px)
            }

            50% {
                transform: translateY(5px)
            }
        }

        @keyframes float-d {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(-11px)
            }
        }

        @keyframes dash-flow {
            to {
                stroke-dashoffset: -28;
            }
        }

        @keyframes orbit-spin {
            from {
                transform: rotate(0deg)
            }

            to {
                transform: rotate(360deg)
            }
        }

        @keyframes hub-breathe {

            0%,
            100% {
                opacity: .55;
                transform: scale(1)
            }

            50% {
                opacity: .20;
                transform: scale(1.08)
            }
        }

        .svg-node-a {
            animation: float-a 3.4s ease-in-out infinite;
            transform-origin: 240px 62px;
        }

        .svg-node-b {
            animation: float-b 2.9s ease-in-out infinite .5s;
            transform-origin: 404px 154px;
        }

        .svg-node-c {
            animation: float-c 3.8s ease-in-out infinite 1s;
            transform-origin: 380px 338px;
        }

        .svg-node-d {
            animation: float-d 3.1s ease-in-out infinite 1.6s;
            transform-origin: 102px 316px;
        }

        .svg-line {
            animation: dash-flow 2.8s linear infinite;
        }

        .svg-line-2 {
            animation: dash-flow 2.8s linear infinite .7s;
        }

        .svg-line-3 {
            animation: dash-flow 2.8s linear infinite 1.4s;
        }

        .svg-line-4 {
            animation: dash-flow 2.8s linear infinite 2.1s;
        }

        .svg-orbit {
            animation: orbit-spin 22s linear infinite;
            transform-origin: 240px 200px;
        }

        .svg-hub-pulse {
            animation: hub-breathe 3s ease-in-out infinite;
            transform-origin: 240px 200px;
        }

        /* ══════════════════════════════════════
   SERVICE OVERVIEW
══════════════════════════════════════ */
        .overview {
            padding: 96px 0;
            background: var(--white);
            border-bottom: 1px solid var(--gray-200);
        }

        .ov-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .ov-card {
            background-image: linear-gradient(45deg, var(--white), var(--gray-200));
            border: 1px solid var(--gray-200);
            border-radius: var(--r-xl);
            padding: 36px 28px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: border-color var(--t) var(--ease),
                box-shadow var(--t) var(--ease),
                transform var(--t) var(--ease);
        }

        .ov-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--blue);
            transform: scaleY(0);
            transform-origin: bottom;
            transition: transform .40s var(--ease);
            border-radius: 0 2px 2px 0;
        }

        .ov-card:hover {
            border-color: var(--blue-bdr);
            box-shadow: 0 12px 40px rgba(10, 115, 253, .12);
            transform: translateY(-4px);
        }

        .ov-card:hover::before {
            transform: scaleY(1);
        }

        .ov-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: var(--blue-dim);
            border: 1px solid var(--blue-bdr);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .ov-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--blue);
        }

        .ov-cat {
            font-family: var(--fb);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .10em;
            text-transform: uppercase;
            color: var(--blue);
            margin-bottom: 8px;
        }

        .ov-name {
            font-family: var(--fh);
            font-size: 19px;
            font-weight: 700;
            color: var(--ink);
            letter-spacing: -.4px;
            margin-bottom: 12px;
            line-height: 1.25;
        }

        .ov-desc {
            font-size: 14px;
            color: var(--gray-800);
            line-height: 1.68;
            margin-bottom: 24px;
        }

        .ov-count {
            font-family: var(--fh);
            font-size: 30px;
            font-weight: 700;
            color: rgba(10, 115, 253, .10);
            letter-spacing: -1px;
            line-height: 1;
            position: absolute;
            bottom: 24px;
            right: 28px;
        }

        /* ══════════════════════════════════════
   SERVICE DETAIL SECTIONS
══════════════════════════════════════ */
        .detail {
            padding: 112px 0;
            
        }

        .detail--light {
            background: var(--gray-50);
        }

        .detail--white {
            background: var(--white);
        }

        .detail__grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: start;
            gap: 80px;
        }

        .detail__grid--rev .detail__img {
            order: 2;
        }

        .detail__grid--rev .detail__body {
            order: 1;
        }

        /* Image side */
        .detail__img {
            position: relative;
        }

        .detail__img-frame {
            position: relative;
            border-radius: var(--r-xl);
            overflow: hidden;
            box-shadow: var(--sh-lg);
        }

        .detail__img-frame img {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
            display: block;
        }

        /* Blue frame accent */
        .detail__img-frame::after {
            content: '';
            position: absolute;
            inset: 0;
            box-shadow: inset 0 0 0 1px rgba(10, 115, 253, .20);
            border-radius: var(--r-xl);
            pointer-events: none;
        }

        /* Floating badge on image */
        .detail__badge {
            position: absolute;
            bottom: -18px;
            left: 28px;
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: var(--r-md);
            padding: 14px 20px;
            box-shadow: var(--sh-md);
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 200px;
            z-index: 2;
        }

        .detail__badge-ico {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: var(--blue-dim);
            border: 1px solid var(--blue-bdr);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .detail__badge-ico svg {
            width: 17px;
            height: 17px;
            stroke: var(--blue);
        }

        .detail__badge-text {
            font-size: 12px;
            color: var(--gray-600);
            line-height: 1.45;
        }

        .detail__badge-text strong {
            display: block;
            font-size: 15px;
            font-weight: 700;
            color: var(--ink);
            font-family: var(--fh);
        }

        /* Body side */


        .detail__services {
            margin-top: 40px;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .dsvc {
            padding: 24px 0;
            border-bottom: 1px solid var(--gray-200);
            position: relative;
            cursor: default;
        }

        .dsvc:first-child {
            border-top: 1px solid var(--gray-200);
        }

        .dsvc__head {
            display: flex;
            align-items: flex-start;
            gap: 16px;

        }

        .dsvc__ico {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: var(--blue-dim);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
            transition: background var(--t) var(--ease);
        }

        .dsvc__ico svg {
            width: 17px;
            height: 17px;
            stroke: var(--blue);
        }

        .dsvc:hover .dsvc__ico {
            background: var(--blue);
        }

        .dsvc:hover .dsvc__ico svg {
            stroke: var(--white);
        }



        .dsvc__title {
            font-family: var(--fh);
            font-size: 17px;
            font-weight: 700;
            color: var(--ink);
            letter-spacing: -.3px;
            margin-bottom: 6px;
        }

        .dsvc__desc {
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.65;
            margin-bottom: 12px;
        }

        .dsvc__tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }

        .dsvc__tag {
            font-size: 11px;
            font-weight: 600;
            padding: 4px 10px;
            background: var(--blue-dim);
            color: var(--blue);
            border-radius: 100px;
            border: 1px solid var(--blue-bdr);
            letter-spacing: .02em;
        }

        /* ══════════════════════════════════════
   BRANDING SECTION
══════════════════════════════════════ */
        .branding {
            padding: 112px 0;
               background-image: linear-gradient(45deg, var(--ink) , var(--ink-deep)) ;
            position: relative;
            overflow: hidden;
        }

        /* Subtle decorative arc */
        .branding::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -120px;
            width: 440px;
            height: 440px;
            border-radius: 50%;
            border: 1px solid rgba(10, 115, 253, .06);
            pointer-events: none;
        }

        .branding::after {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            border: 1px solid rgba(10, 115, 253, .08);
            pointer-events: none;
        }

        .brand-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .brand-card {
            background-image: linear-gradient(145deg, var(--white), var(--gray-200));
            border: 1px solid var(--gray-200);
            border-radius: var(--r-xl);
            padding: 40px;
            transition: box-shadow var(--t) var(--ease), transform var(--t) var(--ease),
                border-color var(--t) var(--ease);
            position: relative;
            overflow: hidden;
        }

        .brand-card:hover {
            box-shadow: var(--sh-md);
            transform: translateY(-3px);
            border-color: var(--blue-bdr);
        }

        /* Top border accent on hover */
        .brand-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--blue);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .40s var(--ease);
        }

        .brand-card:hover::before {
            transform: scaleX(1);
        }

        .brand-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: var(--blue-dim);
            border: 1px solid var(--blue-bdr);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .brand-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--blue);
        }

        .brand-num {
            position: absolute;
            top: 32px;
            right: 36px;
            font-family: var(--fh);
            font-size: 52px;
            font-weight: 700;
            color: rgba(10, 115, 253, 0.239);
            letter-spacing: -3px;
            line-height: 1;
            pointer-events: none;
        }

        .brand-name {
            font-family: var(--fh);
            font-size: 20px;
            font-weight: 700;
            color: var(--ink);
            letter-spacing: -.4px;
            margin-bottom: 10px;
        }

        .brand-desc {
            font-size: 15px;
            color: var(--gray-600);
            line-height: 1.70;
        }

        /* ══════════════════════════════════════
   WEB DEVELOPMENT SECTION
══════════════════════════════════════ */
        .webdev {
            padding: 112px 0;
            background: var(--gray-100);
            border-top: 1px solid var(--gray-200);
            border-bottom: 1px solid var(--gray-200);
        }

        .webdev-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 0;
            border: 1px solid var(--gray-200);
            border-radius: var(--r-xl);
            overflow: hidden;
        }

        .webdev-tile {
            padding: 40px 28px;
            border-right: 1px solid var(--gray-200);
            background: var(--white);
            position: relative;
            overflow: hidden;
            transition: background var(--t) var(--ease);
        }

        .webdev-tile:last-child {
            border-right: none;
        }

        .webdev-tile:hover {
            background: var(--blue-dim);
        }

        .webdev-ghost {
            position: absolute;
            bottom: -12px;
            right: 8px;
            font-family: var(--fh);
            font-size: 72px;
            font-weight: 700;
            color: rgba(10, 115, 253, .20);
            letter-spacing: -4px;
            line-height: 1;
            pointer-events: none;
            transition: color var(--t) var(--ease);
        }

        .webdev-tile:hover .webdev-ghost {
            color: rgba(10, 115, 253, .120);
        }

        .webdev-ico {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: var(--blue-dim);
            border: 1px solid var(--blue-bdr);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: background var(--t) var(--ease), border-color var(--t) var(--ease);
        }

        .webdev-tile:hover .webdev-ico {
            background: var(--blue);
            border-color: var(--blue);
        }

        .webdev-ico svg {
            width: 20px;
            height: 20px;
            stroke: var(--blue);
            transition: stroke var(--t) var(--ease);
        }

        .webdev-tile:hover .webdev-ico svg {
            stroke: var(--white);
        }

        .webdev-label {
            font-family: var(--fb);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .10em;
            text-transform: uppercase;
            color: var(--blue);
            margin-bottom: 8px;
        }

        .webdev-name {
            font-family: var(--fh);
            font-size: 16px;
            font-weight: 700;
            color: var(--ink);
            letter-spacing: -.3px;
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .webdev-desc {
            font-size: 13px;
            color: var(--gray-600);
            line-height: 1.65;
        }

        /* ══════════════════════════════════════
   BENEFITS
══════════════════════════════════════ */
        .benefits {
            padding: 112px 0;
            background: var(--white);
        }

        .bft-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .bft-card {
            box-shadow: 10px 10px 30px #c0c5cc,
                -10px -10px 30px #ffffff;
            border-radius: var(--r-xl);
            padding: 36px;
            background: var(--gray-200);
border: 1px solid var(--blue-bdr);
            transition: box-shadow var(--t) var(--ease), transform var(--t) var(--ease),
                border-color var(--t) var(--ease);
        }

        .bft-card:hover {
              box-shadow: 20px 20px 60px #c0c5cc,
                -20px -20px 60px #ffffff;
            transform: translateY(-4px);
            border: 1px solid var(--blue);
         
        }

        .bft-ico {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: var(--blue-dim);
            border: 1px solid var(--blue-bdr);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .bft-ico svg {
            width: 24px;
            height: 24px;
            stroke: var(--blue);
        }

        .bft-name {
            font-family: var(--fh);
            font-size: 18px;
            font-weight: 700;
            color: var(--ink);
            letter-spacing: -.3px;
            margin-bottom: 10px;
        }

        .bft-desc {
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.70;
        }

        /* ══════════════════════════════════════
   PROCESS TIMELINE
══════════════════════════════════════ */
        .process {
            padding: 112px 0;
            background: var(--gray-50);
        }

        .proc-wrap {
            max-width: 780px;
            margin: 0 auto;
            position: relative;
        }

        /* Vertical spine */
        .proc-wrap::before {
            content: '';
            position: absolute;
            left: 31px;
            top: 40px;
            bottom: 40px;
            width: 2px;
            background: linear-gradient(to bottom, var(--blue) 0%, rgba(10, 115, 253, .15) 100%);
        }

        .proc-step {
            display: flex;
            align-items: flex-start;
            gap: 32px;
            position: relative;
            margin-bottom: 48px;
        }

        .proc-step:last-child {
            margin-bottom: 0;
        }

        .proc-dot {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
            font-family: var(--fh);
            font-size: 15px;
            font-weight: 700;
            transition: all .40s var(--ease);
        }

        .proc-dot--active {
            background: var(--blue);
            color: var(--white);
            box-shadow: 0 8px 24px rgba(10, 115, 253, .38);
        }

        .proc-dot--idle {
            background: var(--white);
            color: var(--gray-400);
            border: 2px solid var(--gray-200);
        }

        .proc-step:hover .proc-dot--idle {
            background: var(--blue);
            color: var(--white);
            border-color: var(--blue);
            box-shadow: 0 8px 24px rgba(10, 115, 253, .38);
        }

        .proc-body {
            padding: 16px 0 48px;
        }

        .proc-step:last-child .proc-body {
            padding-bottom: 0;
        }

        .proc-tag {
            font-family: var(--fb);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--blue);
            margin-bottom: 6px;
        }

        .proc-title {
            font-family: var(--fh);
            font-size: 20px;
            font-weight: 700;
            color: var(--ink);
            letter-spacing: -.4px;
            margin-bottom: 10px;
        }

        .proc-desc {
            font-size: 15px;
            color: var(--gray-600);
            line-height: 1.70;
        }

        /* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
        .faq {
            padding: 112px 0;
            background: var(--white);
        }

        .faq-list {
            max-width: 780px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid var(--gray-200);
        }

        .faq-item:first-child {
            border-top: 1px solid var(--gray-200);
        }

        .faq-btn {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            padding: 24px 0;
            text-align: left;
            background: none;
            border: none;
            cursor: pointer;
            font-family: var(--fh);
            font-size: 18px;
            font-weight: 600;
            color: var(--ink);
            letter-spacing: -.3px;
            transition: color var(--t) var(--ease);
        }

        .faq-btn:hover {
            color: var(--blue);
        }

        .faq-btn[aria-expanded="true"] {
            color: var(--blue);
        }

        .faq-chevron {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: var(--gray-100);
            border: 1px solid var(--gray-200);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all var(--t) var(--ease);
        }

        .faq-chevron svg {
            stroke: var(--gray-600);
            transition: transform var(--t) var(--ease), stroke var(--t) var(--ease);
        }

        .faq-btn:hover .faq-chevron {
            background: var(--blue-dim);
            border-color: var(--blue-bdr);
        }

        .faq-btn:hover .faq-chevron svg {
            stroke: var(--blue);
        }

        .faq-btn[aria-expanded="true"] .faq-chevron {
            background: var(--blue);
            border-color: var(--blue);
        }

        .faq-btn[aria-expanded="true"] .faq-chevron svg {
            stroke: var(--white);
            transform: rotate(180deg);
        }

        .faq-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height .42s cubic-bezier(0, 1, .5, 1);
        }

        .faq-body-inner {
            padding: 0 0 28px;
            font-size: 16px;
            color: var(--gray-600);
            line-height: 1.75;
        }

        /* ══════════════════════════════════════
   CTA FINAL
══════════════════════════════════════ */
        .cta-fin {
            padding: 128px 0;
            background: var(--ink-deep);
            position: relative;
            overflow: hidden;
        }

        .cta-fin::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 70% 80% at 50% 110%, rgba(10, 115, 253, .28) 0%, transparent 68%);
            pointer-events: none;
        }

        .cta-rings {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 720px;
            height: 720px;
            pointer-events: none;
            opacity: .05;
        }

        .cta-fin__inner {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-fin__pre {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: rgba(147, 197, 253, .72);
            margin-bottom: 24px;
        }

        .cta-fin__h2 {
            font-family: var(--fh);
            font-size: clamp(30px, 4.5vw, 52px);
            font-weight: 700;
            color: var(--white);
            letter-spacing: -1.6px;
            line-height: 1.10;
            margin-bottom: 20px;
        }

        .cta-fin__h2 em {
            font-style: normal;
            background: linear-gradient(100deg, #93C5FD, var(--blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cta-fin__sub {
            font-size: 17px;
            color: rgba(255, 255, 255, .46);
            line-height: 1.72;
            margin-bottom: 44px;
        }

        .cta-fin__btns {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        /* WhatsApp button */
        .btn-wa {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            background: #25D366;
            color: var(--white);
            font-family: var(--fb);
            font-size: 15px;
            font-weight: 600;
            padding: 13px 26px;
            border-radius: var(--r-sm);
            border: 1px solid transparent;
            transition: all var(--t) var(--ease);
        }

        .btn-wa:hover {
            background: #22c55e;
            box-shadow: 0 8px 28px rgba(37, 211, 102, .35);
            transform: translateY(-2px);
        }

        /* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
        .footer {
            background: var(--ink-foot);
            padding: 80px 0 0;
            border-top: 1px solid rgba(255, 255, 255, .05);
        }

        .footer__grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.4fr;
            gap: 60px;
            padding-bottom: 72px;
        }

        .f-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 14px;
        }

        .f-logo-mark {
            width: 34px;
            height: 34px;
            background: var(--blue);
            border-radius: var(--r-sm);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .f-logo-name {
            font-family: var(--fh);
            font-size: 20px;
            font-weight: 700;
            color: var(--white);
            letter-spacing: -.5px;
        }

        .f-tagline {
            font-size: 14px;
            color: rgba(255, 255, 255, .36);
            line-height: 1.70;
            max-width: 250px;
            margin-bottom: 24px;
        }

        .f-social {
            display: flex;
            gap: 8px;
        }

        .f-social a {
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, .07);
            border: 1px solid rgba(255, 255, 255, .10);
            border-radius: var(--r-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, .46);
            transition: all var(--t) var(--ease);
        }

        .f-social a:hover {
            background: var(--blue);
            border-color: var(--blue);
            color: var(--white);
        }

        .f-col-title {
            font-family: var(--fh);
            font-size: 13px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 20px;
        }

        .f-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .f-links a {
            font-size: 14px;
            color: rgba(255, 255, 255, .38);
            transition: color var(--t) var(--ease);
        }

        .f-links a:hover {
            color: rgba(255, 255, 255, .80);
        }

        .f-ci {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
        }

        .f-ci-ico {
            width: 30px;
            height: 30px;
            background: rgba(10, 115, 253, .14);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .f-ci-ico svg {
            width: 13px;
            height: 13px;
            stroke: var(--blue);
        }

        .f-ci-txt {
            font-size: 13px;
            color: rgba(255, 255, 255, .38);
            line-height: 1.55;
        }

        .f-ci-txt strong {
            display: block;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: .06em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .60);
            margin-bottom: 3px;
        }

        .footer__bar {
            border-top: 1px solid rgba(255, 255, 255, .06);
            padding: 24px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }

        .footer__copy {
            font-size: 13px;
            color: rgba(255, 255, 255, .22);
        }

        .footer__blinks {
            display: flex;
            gap: 24px;
        }

        .footer__blinks a {
            font-size: 13px;
            color: rgba(255, 255, 255, .22);
            transition: color var(--t) var(--ease);
        }

        .footer__blinks a:hover {
            color: rgba(255, 255, 255, .55);
        }




        /* ══════════════════════════════════════
   RESPONSIVE — 1024px
══════════════════════════════════════ */
        @media (max-width:1024px) {
            .wrap {
                padding: 0 32px;
            }

            .hero__grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .hero__visual {
                order: -1;
            }

            .detail__grid,
            .detail__grid--rev {
                grid-template-columns: 1fr;
                gap: 56px;
            }

            .detail__grid--rev .detail__img {
                order: 0;
            }

            .detail__grid--rev .detail__body {
                order: 0;
            }

            .detail__badge {
                bottom: -14px;
            }

            .ov-grid {
                grid-template-columns: 1fr 1fr;
            }

            .webdev-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .bft-grid {
                grid-template-columns: 1fr 1fr;
            }

            .footer__grid {
                grid-template-columns: 1fr 1fr;
                gap: 44px;
            }
        }

        @media (max-width:768px) {
            .wrap {
                padding: 0 20px;
            }

            .nav__menu,
            .nav__lang,
            .nav__right .btn-blue {
                display: none;
            }

            .nav__burger {
                display: flex;
            }

            .hero {
                padding: 100px 0 60px;
            }

            .hero__h1 {
                font-size: 32px;
                letter-spacing: -1px;
            }

            .hero__badge {
                font-size: 10px;
            }

            .ov-grid {
                grid-template-columns: 1fr;
            }

            .brand-grid {
                grid-template-columns: 1fr;
            }

            .webdev-grid {
                grid-template-columns: 1fr 1fr;
                border-radius: var(--r-lg);
            }

            .webdev-tile {
                border-right: none;
                border-bottom: 1px solid var(--gray-200);
            }

            .webdev-tile:last-child {
                border-bottom: none;
            }

            .bft-grid {
                grid-template-columns: 1fr;
            }

            .proc-wrap::before {
                left: 31px;
            }

            .detail,
            .branding,
            .webdev,
            .benefits,
            .process,
            .faq {
                padding: 80px 0;
            }

            .sec-head {
                margin-bottom: 48px;
            }

            .footer__grid {
                grid-template-columns: 1fr;
                gap: 36px;
            }

            .footer__bar {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width:480px) {

            .hero__actions,
            .cta-fin__btns {
                flex-direction: column;
            }

            .hero__actions .btn,
            .cta-fin__btns a {
                width: 100%;
                justify-content: center;
            }

            .webdev-grid {
                grid-template-columns: 1fr;
            }

            .proc-wrap::before {
                display: none;
            }
        }

        @view-transition {
         navigation: auto;
        }

/* ══════════════════════════════════════
   SERVICES — Soft Texture Refinement
   Mantém o layout atual. Só adiciona noise, blobs e profundidade
══════════════════════════════════════ */

:root {
  --soft-bg: #F4F7FB;
  --soft-bg-2: #EEF3F8;
  --soft-card: rgba(255, 255, 255, .76);
  --soft-line: rgba(10, 115, 253, .14);
  --soft-shadow: 0 18px 54px rgba(15, 23, 42, .08);
}

/* Camada base para secções que estavam demasiado brancas */
.overview,
.detail--light,
.detail--white,
.webdev,
.benefits,
.process,
.faq {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.overview .wrap,
.detail .wrap,
.webdev .wrap,
.benefits .wrap,
.process .wrap,
.faq .wrap {
  position: relative;
  z-index: 2;
}

/* Fundo premium suave: menos branco chapado, mais textura */
.overview,
.detail--light,
.webdev,
.process {
  background:
    radial-gradient(circle at 78% 12%, rgba(10, 115, 253, .105), transparent 30rem),
    radial-gradient(circle at 12% 82%, rgba(10, 115, 253, .055), transparent 26rem),
    linear-gradient(180deg, var(--soft-bg), var(--soft-bg-2));
}

.detail--white,
.benefits,
.faq {
  background:
    radial-gradient(circle at 18% 18%, rgba(10, 115, 253, .075), transparent 28rem),
    radial-gradient(circle at 88% 76%, rgba(6, 69, 151, .045), transparent 24rem),
    linear-gradient(180deg, #FFFFFF, #F5F8FC);
}

/* Blob decorativo — cria direção visual sem mexer no HTML */
.overview::before,
.detail--light::before,
.detail--white::before,
.webdev::before,
.benefits::before,
.process::before,
.faq::before {
  content: '';
  position: absolute;
  width: clamp(260px, 34vw, 520px);
  height: clamp(260px, 34vw, 520px);
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
  filter: blur(28px);
  opacity: .72;
  background:
    radial-gradient(circle at 38% 32%, rgba(10, 115, 253, .18), transparent 58%),
    radial-gradient(circle at 70% 72%, rgba(102, 166, 255, .10), transparent 62%);
}

.overview::before,
.webdev::before,
.faq::before {
  top: -170px;
  right: -170px;
}

.detail--light::before,
.benefits::before,
.process::before {
  bottom: -190px;
  left: -170px;
}

.detail--white::before {
  top: 12%;
  right: -190px;
}

/* Noise editorial leve */
.overview::after,
.detail--light::after,
.detail--white::after,
.webdev::after,
.benefits::after,
.process::after,
.faq::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .18;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.34'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* Grid quase invisível para dar sofisticação tech */
.overview .wrap::before,
.webdev .wrap::before,
.benefits .wrap::before,
.faq .wrap::before {
  content: '';
  position: absolute;
  inset: -36px -24px;
  z-index: -1;
  pointer-events: none;
  opacity: .45;
  background-image:
    linear-gradient(rgba(10, 115, 253, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 115, 253, .035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 26%, black, transparent 74%);
}

/* Overview — cards mais premium sem mudar estrutura */
.ov-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(244,247,251,.78)),
    var(--white);
  border-color: rgba(10, 115, 253, .10);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(10px);
}

.ov-card:hover {
  box-shadow: 0 24px 70px rgba(10, 115, 253, .13);
}

.ov-count {
  color: rgba(10, 115, 253, .14);
}

/* Detail sections — imagens e listas com mais profundidade */
.detail__img-frame {
  box-shadow: 0 26px 72px rgba(15, 23, 42, .16);
}

.detail__img-frame img {
  filter: saturate(.92) contrast(1.04);
}

.detail__badge,
.dsvc {
  backdrop-filter: blur(12px);
}

.detail__badge {
  background: rgba(255, 255, 255, .84);
  border-color: rgba(10, 115, 253, .12);
  box-shadow: 0 16px 44px rgba(15, 23, 42, .12);
}

.dsvc {
  padding: 22px 0;
  border-bottom-color: rgba(15, 23, 42, .085);
}

.dsvc:first-child {
  border-top-color: rgba(15, 23, 42, .085);
}

.dsvc__ico {
  box-shadow: inset 0 0 0 1px rgba(10, 115, 253, .08);
}

/* Webdev — tiles menos chapados */
.webdev-grid {
  background: rgba(255, 255, 255, .44);
  border-color: rgba(10, 115, 253, .10);
  box-shadow: 0 22px 70px rgba(15, 23, 42, .08);
  backdrop-filter: blur(10px);
}

.webdev-tile {
  background:
    radial-gradient(circle at 92% 10%, rgba(10, 115, 253, .075), transparent 38%),
    rgba(255, 255, 255, .78);
}

.webdev-tile:hover {
  background:
    radial-gradient(circle at 92% 10%, rgba(10, 115, 253, .13), transparent 42%),
    rgba(255, 255, 255, .92);
}

/* Benefits — mantém claro, mas com sensação premium */
.bft-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,.88), rgba(238,243,248,.76));
  border-color: rgba(10, 115, 253, .12);
  box-shadow: 16px 16px 44px rgba(15, 23, 42, .08), -10px -10px 28px rgba(255,255,255,.72);
}

.bft-card:hover {
  box-shadow: 22px 22px 60px rgba(15, 23, 42, .12), -12px -12px 34px rgba(255,255,255,.76);
}

/* Processo e FAQ — menos branco, mais profundidade */
.proc-dot--idle,
.faq-item {
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(10px);
}

.faq-list {
  border-color: rgba(10, 115, 253, .10);
  box-shadow: 0 20px 62px rgba(15, 23, 42, .075);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.faq-item {
  border-bottom-color: rgba(15, 23, 42, .08);
}

.faq-btn:hover {
  background: rgba(10, 115, 253, .055);
}

/* Pequeno refinamento dos headers nas áreas claras */
.overview .sec-head,
.webdev .sec-head,
.benefits .sec-head,
.process .sec-head,
.faq .sec-head {
  position: relative;
}

.overview .eyebrow,
.webdev .eyebrow,
.benefits .eyebrow,
.process .eyebrow,
.faq .eyebrow {
  color: var(--blue);
}

/* Performance e acessibilidade */
@media (prefers-reduced-motion: reduce) {
  .overview::before,
  .detail--light::before,
  .detail--white::before,
  .webdev::before,
  .benefits::before,
  .process::before,
  .faq::before {
    filter: blur(20px);
  }
}

@media (max-width: 768px) {
  .overview::before,
  .detail--light::before,
  .detail--white::before,
  .webdev::before,
  .benefits::before,
  .process::before,
  .faq::before {
    width: 320px;
    height: 320px;
    opacity: .55;
  }

  .overview::after,
  .detail--light::after,
  .detail--white::after,
  .webdev::after,
  .benefits::after,
  .process::after,
  .faq::after {
    opacity: .13;
  }
}
/* ── Floating WhatsApp Button ───────────────── */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 13px 18px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-family: var(--fb, 'DM Sans', system-ui, sans-serif);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow:
    0 18px 42px rgba(37, 211, 102, .28),
    0 8px 20px rgba(0, 0, 0, .18);
  transition:
    transform .28s var(--ease, cubic-bezier(.22, 1, .36, 1)),
    box-shadow .28s var(--ease, cubic-bezier(.22, 1, .36, 1)),
    background .28s var(--ease, cubic-bezier(.22, 1, .36, 1));
}

.wa-float:hover {
  background: #22C55E;
  transform: translateY(-4px);
  box-shadow:
    0 24px 54px rgba(37, 211, 102, .34),
    0 12px 28px rgba(0, 0, 0, .22);
}

.wa-float:focus-visible {
  outline: 3px solid rgba(37, 211, 102, .35);
  outline-offset: 4px;
}

.wa-float__icon {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
}

.wa-float__text {
  line-height: 1;
  white-space: nowrap;
}

/* Mobile */
@media (max-width: 640px) {
  .wa-float {
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
    min-height: 54px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }

  .wa-float__text {
    display: none;
  }

  .wa-float__icon {
    width: 27px;
    height: 27px;
  }
}