* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
            -webkit-font-smoothing: antialiased;
        }

        body {
            background-color: #ffffff;
            color: #1d1d1f;
            overflow-x: hidden;
            --cursor-x: 50vw;
            --cursor-y: 50vh;
        }

        .cursor-orb {
            width: 42px;
            height: 42px;
            position: fixed;
            left: var(--cursor-x);
            top: var(--cursor-y);
            z-index: 2000;
            pointer-events: none;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.52);
            background: rgba(255, 255, 255, 0.22);
            box-shadow: 0 10px 28px rgba(17, 24, 39, 0.12);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            opacity: 0;
            transform: translate(-50%, -50%) scale(0.82);
            transition: opacity 0.22s ease, transform 0.22s ease, width 0.22s ease, height 0.22s ease;
        }

        .cursor-orb.is-visible {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        .cursor-orb.is-hovering {
            width: 56px;
            height: 56px;
            background: rgba(255, 255, 255, 0.32);
        }

        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 140px 8vw 126px;
            text-align: left;
            overflow: hidden;
            background: #ffffff;
        }

        .hero-slideshow {
            position: absolute;
            inset: 0;
            z-index: 0;
            overflow: hidden;
        }

        .hero-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            background-image: var(--hero-image);
            background-size: cover;
            background-position: calc(100% + 260px) center;
            background-repeat: no-repeat;
            animation: heroSlide 28s ease-in-out infinite;
            transform: scale(1.015);
        }

        .hero-slide:nth-child(1) { animation-delay: 0s; }
        .hero-slide:nth-child(2) { animation-delay: 7s; }
        .hero-slide:nth-child(3) { animation-delay: 14s; }
        .hero-slide:nth-child(4) { animation-delay: 21s; }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(90deg,
                rgba(255, 255, 255, 0.96) 0%,
                rgba(255, 255, 255, 0.88) 28%,
                rgba(255, 255, 255, 0.44) 52%,
                rgba(255, 255, 255, 0.08) 78%);
            pointer-events: none;
        }

        .hero::after {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.04) 55%, rgba(255, 255, 255, 0) 100%);
            pointer-events: none;
        }

        .hero-content {
            width: min(560px, 100%);
            position: relative;
            z-index: 2;
            transform: translateY(-34px);
            animation: fadeInUp 0.9s ease-out;
        }

        .subtitle-premium {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #56565c;
            margin-bottom: 12px;
        }

        .hero-title {
            font-size: 56px;
            font-weight: 700;
            letter-spacing: -1.5px;
            line-height: 1.1;
            color: #1d1d1f;
            margin-bottom: 16px;
        }

        .ai-gradient-text {
            color: #1d1d1f;
            background:
                linear-gradient(105deg,
                    #18191d 0%,
                    #2b2d33 18%,
                    #5f5143 31%,
                    #617456 43%,
                    #2f756d 55%,
                    #256f95 68%,
                    #20242b 84%,
                    #18191d 100%);
            background-size: 260% 260%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: textGradientFlow 9s ease-in-out infinite;
        }

        .gradient-divider {
            width: 120px;
            height: 4px;
            background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.16) 70%, rgba(0,0,0,0) 100%);
            margin: 24px 0;
        }

        .hero-description {
            font-size: 18px;
            font-weight: 400;
            color: #36363a;
            line-height: 1.5;
            max-width: 520px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 30px;
        }

        .hero-button {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            min-height: 48px;
            padding: 0 22px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.55);
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            color: #111114;
            background: rgba(255, 255, 255, 0.56);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            box-shadow: 0 14px 36px rgba(17, 24, 39, 0.10);
            overflow: hidden;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .hero-button svg {
            width: 16px;
            height: 16px;
            opacity: 0.7;
            stroke-width: 1.8;
            flex: 0 0 auto;
        }

        .hero-button::before {
            content: "";
            position: absolute;
            inset: -2px;
            z-index: -1;
            border-radius: inherit;
            opacity: 0.58;
            animation: softPulse 3.8s ease-in-out infinite;
        }

        .hero-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 18px 42px rgba(17, 24, 39, 0.14);
        }

        .hero-button.primary::before {
            background: linear-gradient(135deg, rgba(56, 189, 248, 0.32), rgba(34, 197, 94, 0.24));
        }

        .hero-button.secondary::before {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.24), rgba(59, 130, 246, 0.24));
            animation-delay: 1.1s;
        }

        .footer-cta-actions {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 14px;
            margin: 62px auto 0;
            padding: 0 24px;
        }

        .footer-cta-actions .hero-button {
            min-width: 180px;
        }

        .products-section {
            position: relative;
            z-index: 4;
            margin-top: -156px;
            padding: 70px 8vw 86px;
            background: transparent;
        }

        .section-heading {
            max-width: 760px;
            margin: 0 auto 64px;
            text-align: center;
        }

        .section-kicker {
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #8a8a90;
            margin-bottom: 12px;
        }

        .section-title {
            font-size: 40px;
            font-weight: 400;
            line-height: 1.12;
            letter-spacing: -0.6px;
            color: #111114;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 24px;
            max-width: 1180px;
            margin: 0 auto;
        }

        .product-card {
            min-height: 430px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            overflow: hidden;
            border-radius: 30px;
            padding: 38px;
            background: #fbfbfc;
            border: 1px solid rgba(17, 17, 20, 0.06);
            box-shadow: 0 18px 48px rgba(17, 24, 39, 0.04);
            transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                        box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 28px 70px rgba(17, 24, 39, 0.10);
        }

        .product-card.dark {
            background: #0f0f0f;
            color: #ffffff;
        }

        .product-card.soft {
            background: #d1d1d1;
        }

        .product-card.silver {
            background: linear-gradient(145deg, #ffffff 0%, #eef1f3 100%);
        }

        .product-card.outline {
            background: rgba(255, 255, 255, 0.78);
            border-color: rgba(17, 17, 20, 0.14);
            box-shadow: none;
        }

        .product-copy {
            max-width: 255px;
            position: relative;
            z-index: 2;
        }

        .product-card h3 {
            font-size: 32px;
            font-weight: 400;
            line-height: 1.08;
            letter-spacing: -0.4px;
            margin-bottom: 18px;
        }

        .product-card p {
            font-size: 15px;
            font-weight: 300;
            line-height: 1.55;
            color: #5f6065;
        }

        .product-card.dark p {
            color: rgba(255, 255, 255, 0.72);
        }

        .product-link {
            width: fit-content;
            position: relative;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            padding: 0 18px;
            border-radius: 999px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            color: #111114;
            background: rgba(255, 255, 255, 0.68);
            border: 1px solid rgba(17, 17, 20, 0.08);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
        }

        .product-card.dark .product-link {
            color: #111114;
            background: rgba(255, 255, 255, 0.92);
            border-color: rgba(255, 255, 255, 0.38);
        }

        .category-section {
            max-width: 1380px;
            margin: -22px auto 74px;
        }

        .category-section + .section-heading {
            margin-bottom: 52px;
        }

        .category-title {
            font-size: 26px;
            font-weight: 600;
            letter-spacing: -0.2px;
            color: #202126;
            margin-bottom: 30px;
        }

        .category-row {
            position: relative;
        }

        .category-scroller {
            display: flex;
            gap: 24px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scroll-snap-type: x proximity;
            padding: 4px 4px 8px;
            scrollbar-width: none;
        }

        .category-scroller::-webkit-scrollbar {
            display: none;
        }

        .category-item {
            flex: 0 0 138px;
            display: grid;
            justify-items: center;
            gap: 14px;
            color: #121316;
            text-align: center;
            text-decoration: none;
            scroll-snap-align: start;
        }

        .category-thumb {
            width: 138px;
            height: 138px;
            display: grid;
            place-items: center;
            overflow: hidden;
            border-radius: 999px;
            background: var(--category-color, #ededee);
            box-shadow: inset 0 0 0 1px rgba(17, 17, 20, 0.04);
            transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                        box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .category-thumb img {
            width: 80%;
            height: 80%;
            object-fit: contain;
            filter: drop-shadow(0 16px 18px rgba(0, 0, 0, 0.12));
        }

        .category-item span:last-child {
            font-size: 16px;
            font-weight: 700;
            line-height: 1.18;
        }

        .category-item:hover .category-thumb {
            transform: translateY(-5px);
            box-shadow: inset 0 0 0 1px rgba(17, 17, 20, 0.06), 0 18px 42px rgba(17, 24, 39, 0.10);
        }

        .category-arrow {
            width: 42px;
            height: 42px;
            position: absolute;
            top: 52px;
            z-index: 2;
            display: grid;
            place-items: center;
            border: 0;
            border-radius: 999px;
            color: #1d1d1f;
            background: rgba(255, 255, 255, 0.86);
            box-shadow: 0 12px 34px rgba(17, 24, 39, 0.10);
            cursor: pointer;
        }

        .category-arrow svg {
            width: 18px;
            height: 18px;
            stroke-width: 1.8;
        }

        .category-arrow.prev {
            left: -20px;
        }

        .category-arrow.next {
            right: -20px;
        }

        .product-media {
            position: absolute;
            right: -8%;
            bottom: -8%;
            width: 58%;
            aspect-ratio: 1;
            display: grid;
            place-items: center;
            background: transparent;
            transform: translate3d(0, 0, 0);
            transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .product-media img {
            width: 112%;
            height: 112%;
            object-fit: contain;
            filter: drop-shadow(0 28px 28px rgba(0, 0, 0, 0.16));
            transform: translate3d(0, 0, 0) scale(1);
            transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
                        filter 0.55s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .product-card:hover .product-media {
            transform: translate3d(-10px, -8px, 0);
        }

        .product-card:hover .product-media img {
            transform: scale(1.065);
            filter: drop-shadow(0 34px 32px rgba(0, 0, 0, 0.2));
        }

        .danfoss-section {
            width: min(92vw, 1500px);
            max-width: none;
            margin: 92px auto 0;
        }

        .danfoss-showcase {
            display: grid;
            grid-template-columns: minmax(300px, 380px) minmax(0, 1080px);
            align-items: stretch;
            justify-content: center;
            gap: 28px;
        }

        .danfoss-editorial {
            position: relative;
            display: flex;
            flex-direction: column;
            min-height: 1032px;
        }

        .danfoss-kicker {
            font-size: 21px;
            font-weight: 400;
            color: #b5b5bb;
            margin-bottom: 14px;
        }

        .danfoss-title {
            max-width: 400px;
            font-size: 52px;
            font-weight: 600;
            line-height: 1.08;
            letter-spacing: -1.1px;
            color: #202124;
            margin-bottom: 22px;
        }

        .danfoss-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 60px;
            padding: 0 24px;
            border-radius: 999px;
            background: #161617;
            color: #ffffff;
            text-decoration: none;
            font-size: 20px;
            font-weight: 400;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .danfoss-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 16px 36px rgba(17, 24, 39, 0.14);
        }

        .product-promo {
            flex: 1;
            min-height: 0;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: flex-end;
            margin-top: 20px;
            padding: 32px;
            border-radius: 18px;
            background:
                linear-gradient(180deg,
                    rgba(15, 15, 15, 0.02) 0%,
                    rgba(15, 15, 15, 0.26) 42%,
                    rgba(15, 15, 15, 0.82) 100%),
                url("https://res.cloudinary.com/dncdgiwhp/image/upload/v1781011812/Design_sem_nome_36_d8rf75.png");
            background-size: 118% auto;
            background-position: center 44%;
            box-shadow: 0 20px 58px rgba(17, 24, 39, 0.12);
            transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                        box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                        background-size 0.65s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .product-promo:hover {
            transform: translateY(-6px);
            background-size: 124% auto;
            box-shadow: 0 30px 72px rgba(17, 24, 39, 0.16);
        }

        .product-promo-content {
            max-width: 325px;
            color: #ffffff;
        }

        .product-promo-eyebrow {
            font-size: 21px;
            font-weight: 400;
            margin-bottom: 18px;
            color: rgba(255, 255, 255, 0.84);
        }

        .product-promo h3 {
            font-size: 48px;
            font-weight: 600;
            line-height: 1.14;
            letter-spacing: -0.8px;
            margin-bottom: 22px;
        }

        .product-promo-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 58px;
            padding: 0 22px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.94);
            color: #2f3033;
            text-decoration: none;
            font-size: 20px;
            font-weight: 400;
            box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
        }

        .danfoss-products-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 24px;
        }

        .danfoss-card {
            min-height: 470px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            overflow: hidden;
            border-radius: 28px;
            background: rgba(250, 251, 252, 0.94);
            border: 1px solid rgba(18, 24, 32, 0.10);
            color: #202124;
            text-decoration: none;
            box-shadow: 0 22px 58px rgba(17, 24, 39, 0.06);
            transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                        box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .danfoss-card:hover {
            transform: translateY(-7px);
            box-shadow: 0 30px 72px rgba(17, 24, 39, 0.12);
        }

        .danfoss-media {
            flex: 1;
            min-height: 344px;
            display: grid;
            place-items: center;
            padding: 42px 34px 18px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(242, 244, 247, 0.64) 100%);
        }

        .danfoss-media img {
            width: min(86%, 270px);
            max-height: 270px;
            object-fit: contain;
            filter: drop-shadow(0 24px 22px rgba(0, 0, 0, 0.14));
            transform: translate3d(0, 0, 0) scale(1);
            transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
                        filter 0.55s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .danfoss-card:hover .danfoss-media img {
            transform: scale(1.06);
            filter: drop-shadow(0 30px 26px rgba(0, 0, 0, 0.18));
        }

        .danfoss-info {
            min-height: 104px;
            display: flex;
            align-items: flex-start;
            padding: 8px 32px 30px;
            background: transparent;
            border-top: 0;
        }

        .danfoss-info h3 {
            display: block;
            font-size: 22px;
            font-weight: 500;
            line-height: 1.22;
            letter-spacing: -0.2px;
            color: #202124;
            margin-bottom: 0;
        }

        .danfoss-product-link {
            display: none;
            align-items: center;
            justify-content: center;
            min-height: 40px;
            padding: 0 18px;
            border-radius: 999px;
            border: 1px solid rgba(17, 17, 20, 0.18);
            color: #15161a;
            background: rgba(255, 255, 255, 0.70);
            box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
        }

        .danfoss-product-link:hover {
            transform: translateY(-2px);
            border-color: rgba(17, 17, 20, 0.34);
            background: rgba(255, 255, 255, 0.90);
        }

        .faq-section {
            width: min(94vw, 1720px);
            margin: 112px 50% 0;
            padding: clamp(54px, 6vw, 96px) clamp(28px, 10vw, 170px);
            border-radius: 48px;
            background: #dde5f0;
            transform: translateX(-50%);
        }

        .faq-inner {
            max-width: 1160px;
            margin: 0 auto;
        }

        .faq-kicker {
            font-size: 22px;
            font-weight: 400;
            color: #2c2d31;
            margin-bottom: 20px;
        }

        .faq-title {
            max-width: 690px;
            font-size: 52px;
            font-weight: 600;
            line-height: 1.08;
            letter-spacing: -1px;
            color: #202124;
            margin-bottom: 66px;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 28px 62px;
        }

        .faq-column {
            display: grid;
            gap: 18px;
            align-content: start;
        }

        .faq-item {
            border-bottom: 1px solid rgba(32, 33, 36, 0.12);
        }

        .faq-question {
            width: 100%;
            min-height: 56px;
            display: grid;
            grid-template-columns: 1fr 28px;
            align-items: center;
            gap: 20px;
            padding: 0;
            border: 0;
            background: transparent;
            color: #202124;
            font: inherit;
            font-size: 27px;
            font-weight: 400;
            line-height: 1.24;
            text-align: left;
            cursor: pointer;
        }

        .faq-icon {
            display: inline-grid;
            place-items: center;
            font-size: 28px;
            line-height: 1;
            transform: rotate(0deg);
            transition: transform 0.3s ease;
        }

        .faq-item.is-open .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            display: grid;
            grid-template-rows: 0fr;
            opacity: 0;
            transition: grid-template-rows 0.42s cubic-bezier(0.16, 1, 0.3, 1),
                        opacity 0.28s ease;
        }

        .faq-item.is-open .faq-answer {
            grid-template-rows: 1fr;
            opacity: 1;
        }

        .faq-answer-content {
            overflow: hidden;
        }

        .faq-answer p {
            max-width: 500px;
            padding: 8px 34px 26px 0;
            font-size: 20px;
            font-weight: 300;
            line-height: 1.42;
            color: #4f5055;
        }

        .blog-section {
            max-width: 1180px;
            margin: 112px auto 0;
        }

        .blog-kicker {
            font-size: 22px;
            font-weight: 400;
            color: #b5b5bb;
            margin-bottom: 14px;
        }

        .blog-title {
            max-width: 690px;
            font-size: 44px;
            font-weight: 500;
            line-height: 1.08;
            letter-spacing: -0.8px;
            color: #202124;
            margin-bottom: 54px;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 24px;
        }

        .blog-card {
            min-height: 390px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 22px;
            padding: 38px;
            border-radius: 30px;
            background:
                radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.88), transparent 30%),
                rgba(250, 251, 252, 0.88);
            border: 1px solid rgba(18, 24, 32, 0.10);
            color: #202124;
            text-decoration: none;
            overflow: hidden;
            box-shadow: 0 22px 58px rgba(17, 24, 39, 0.06);
            transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                        box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .blog-card:hover {
            transform: translateY(-7px);
            box-shadow: 0 24px 56px rgba(17, 24, 39, 0.10);
        }

        .blog-card.featured {
            background:
                radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.88), transparent 30%),
                rgba(250, 251, 252, 0.88);
            color: #202124;
        }

        .blog-card.muted {
            background:
                radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.88), transparent 30%),
                rgba(245, 246, 248, 0.90);
        }

        .blog-card h3 {
            max-width: 260px;
            font-size: 32px;
            font-weight: 800;
            line-height: 1.08;
            letter-spacing: 0;
            margin-bottom: 18px;
        }

        .blog-card.compact-title h3 {
            font-size: 32px;
            margin-bottom: 14px;
        }

        .blog-card.hero-title h3 {
            font-size: 32px;
            line-height: 1.08;
            margin-bottom: 18px;
        }

        .blog-card p {
            max-width: 270px;
            font-size: 15px;
            font-weight: 400;
            line-height: 1.55;
            color: #5f6368;
            margin-bottom: 18px;
        }

        .blog-card.featured p {
            color: #5f6368;
        }

        .blog-card.media-before-link .blog-media {
            margin: 0;
        }

        .blog-card.media-before-link .blog-link {
            margin-top: 10px;
        }

        .blog-link {
            width: fit-content;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            padding: 0 18px;
            border-radius: 999px;
            border: 1px solid currentColor;
            background: #ffffff;
            color: #303236;
            box-shadow: 0 12px 30px rgba(17, 24, 39, 0.07);
            font-size: 14px;
            font-weight: 700;
        }

        .blog-media {
            width: min(44%, 250px);
            aspect-ratio: 1.04;
            position: absolute;
            right: 24px;
            bottom: 24px;
            overflow: hidden;
            border-radius: 22px;
            background: #ffffff;
            box-shadow: inset 0 0 0 1px rgba(18, 24, 32, 0.05);
        }

        .blog-media img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 18px;
            transform: scale(1.01);
            transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .blog-card:hover .blog-media img {
            transform: scale(1.06);
        }


        .feature-banner {
            width: min(92vw, 1720px);
            max-width: none;
            min-height: 430px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            margin: 72px 50% 0;
            padding: 58px;
            border-radius: 32px;
            transform: translateX(-50%);
            background:
                linear-gradient(90deg,
                    rgba(15, 15, 15, 0.82) 0%,
                    rgba(15, 15, 15, 0.6) 38%,
                    rgba(15, 15, 15, 0.1) 72%),
                url("https://res.cloudinary.com/dncdgiwhp/image/upload/v1780948383/C%C3%B3pia_de_Cilindro_Hidr%C3%A1ulico_12_mjlssd.png");
            background-size: auto, 100% auto;
            background-position: center right;
            box-shadow: 0 24px 70px rgba(17, 24, 39, 0.1);
            transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                        box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                        background-size 0.65s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .feature-banner:hover {
            transform: translateX(-50%) translateY(-6px);
            background-size: auto, 104% auto;
            box-shadow: 0 32px 82px rgba(17, 24, 39, 0.14);
        }

        .feature-banner-content {
            max-width: 560px;
            position: relative;
            z-index: 2;
            color: #ffffff;
        }

        .feature-kicker {
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.68);
            margin-bottom: 14px;
        }

        .feature-title {
            font-size: 44px;
            font-weight: 400;
            line-height: 1.08;
            letter-spacing: -0.6px;
            margin-bottom: 20px;
        }

        .feature-description {
            max-width: 460px;
            font-size: 17px;
            font-weight: 300;
            line-height: 1.55;
            color: rgba(255, 255, 255, 0.76);
            margin-bottom: 30px;
        }

        .feature-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 46px;
            padding: 0 20px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.22);
            background: rgba(255, 255, 255, 0.14);
            color: #ffffff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
        }

        .hero-button svg,
        .product-link svg,
        .feature-link svg,
        .steering-button svg,
        .danfoss-cta svg,
        .product-promo-link svg,
        .blog-link svg {
            display: none;
        }

        .partners-carousel {
            max-width: 1180px;
            margin: 76px auto 0;
            overflow: hidden;
        }

        .partners-heading {
            font-size: 22px;
            font-weight: 500;
            letter-spacing: -0.2px;
            color: #1d1d1f;
            margin-bottom: 28px;
        }

        .partners-viewport {
            position: relative;
            overflow: hidden;
            padding: 10px 0;
            -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
        }

        .partners-track {
            width: max-content;
            display: flex;
            align-items: center;
            gap: 52px;
            animation: partnerScroll 34s linear infinite;
        }

        .partner-logo {
            min-width: 150px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: rgba(17, 17, 20, 0.72);
            font-size: 22px;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            white-space: nowrap;
            filter: grayscale(1);
            opacity: 0.78;
        }

        .partner-logo.script {
            font-size: 28px;
            font-weight: 500;
            font-style: italic;
            letter-spacing: -0.5px;
            text-transform: none;
        }

        .partners-carousel:hover .partners-track {
            animation-play-state: paused;
        }

        .steering-showcase {
            width: min(96vw, 1660px);
            min-height: 720px;
            position: relative;
            overflow: hidden;
            margin: 92px 50% 0;
            padding: 68px clamp(68px, 9vw, 160px) 108px;
            border-radius: 64px;
            background: #e5e5e5;
            transform: translateX(-50%);
            -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 720' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 76Q0 0 76 0H1524Q1600 0 1600 76V644Q1600 720 1524 720H1090C1022 720 1032 646 800 646C568 646 578 720 510 720H76Q0 720 0 644Z'/%3E%3C/svg%3E");
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 720' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 76Q0 0 76 0H1524Q1600 0 1600 76V644Q1600 720 1524 720H1090C1022 720 1032 646 800 646C568 646 578 720 510 720H76Q0 720 0 644Z'/%3E%3C/svg%3E");
            -webkit-mask-size: 100% 100%;
            mask-size: 100% 100%;
            -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
            transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                        box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 18px 54px rgba(17, 24, 39, 0.06);
        }

        .steering-showcase:hover {
            transform: translateX(-50%) translateY(-8px);
            box-shadow: 0 30px 78px rgba(17, 24, 39, 0.12);
        }

        .steering-title {
            max-width: 980px;
            margin: 0 auto 34px;
            position: relative;
            z-index: 2;
            text-align: center;
            font-size: 76px;
            font-weight: 400;
            line-height: 1.08;
            letter-spacing: -1.2px;
            color: #1d1d1f;
        }

        .steering-layout {
            min-height: 450px;
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: minmax(280px, 0.74fr) minmax(560px, 760px) minmax(270px, 0.76fr);
            align-items: end;
            gap: 34px;
        }

        .steering-info {
            align-self: center;
            justify-self: end;
            padding-right: 8px;
        }

        .steering-pill {
            width: fit-content;
            margin-bottom: 30px;
            padding: 18px 24px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.72);
            border: 1px solid rgba(255, 255, 255, 0.76);
            font-size: 14px;
            font-weight: 400;
            color: #39393d;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 18px 38px rgba(17, 24, 39, 0.07);
        }

        .steering-copy h3 {
            font-size: 23px;
            font-weight: 500;
            margin-bottom: 14px;
        }

        .steering-copy p {
            max-width: 310px;
            font-size: 17px;
            font-weight: 300;
            line-height: 1.55;
            color: #4e4f54;
        }

        .steering-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 48px;
            margin-top: 28px;
            padding: 0 24px;
            border-radius: 999px;
            background: #1d1d1f;
            color: #ffffff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
        }

        .steering-product {
            position: relative;
            display: grid;
            place-items: center;
            min-height: 500px;
        }

        .steering-product::before {
            content: "";
            position: absolute;
            inset: 10% -4% 0%;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.18) 62%, rgba(255, 255, 255, 0) 72%);
            filter: blur(3px);
        }

        .steering-product img {
            width: min(132%, 760px);
            max-height: 640px;
            position: relative;
            z-index: 2;
            object-fit: contain;
            filter: drop-shadow(0 38px 38px rgba(0, 0, 0, 0.18));
            transform: scale(1);
            transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
                        filter 0.55s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .steering-showcase:hover .steering-product img {
            transform: scale(1.065);
            filter: drop-shadow(0 44px 42px rgba(0, 0, 0, 0.22));
        }

        .hp-social-section {
            width: 100%;
            margin: 86px auto 0;
            text-align: center;
            overflow: visible;
        }

        .hp-social-title {
            font-size: 54px;
            font-weight: 700;
            line-height: 1.04;
            letter-spacing: -0.9px;
            color: #171719;
            margin-bottom: 12px;
        }

        .hp-social-title .ai-gradient-text {
            display: inline-block;
        }

        .hp-social-subtitle {
            max-width: 620px;
            margin: 0 auto 34px;
            font-size: 20px;
            line-height: 1.42;
            color: #4f5055;
        }

        .hp-social-stage {
            width: 100vw;
            min-height: clamp(580px, 33vw, 640px);
            position: relative;
            margin-left: calc(50% - 50vw);
            margin-bottom: 46px;
            display: grid;
            place-items: end center;
            overflow: visible;
            background: #ffffff;
        }

        .hp-social-png-wrap {
            width: min(500px, 34vw);
            height: clamp(470px, 28vw, 525px);
            position: relative;
            z-index: 2;
            display: grid;
            place-items: start center;
            overflow: hidden;
            border-radius: 60px 60px 0 0;
        }

        .hp-social-png {
            width: 100%;
            height: auto;
            max-width: 100%;
            max-height: none;
            object-fit: contain;
            display: block;
            transform: none;
            filter: drop-shadow(0 34px 70px rgba(17, 24, 39, 0.18));
        }

        .hp-social-image-placeholder {
            width: min(360px, 78vw);
            aspect-ratio: 9 / 14;
            display: grid;
            place-items: center;
            padding: 32px;
            border: 1px dashed rgba(17, 24, 39, 0.18);
            border-radius: 32px;
            color: rgba(17, 24, 39, 0.55);
            background: rgba(255, 255, 255, 0.62);
            font-size: 15px;
            line-height: 1.35;
        }

        .hp-float-card {
            position: absolute;
            z-index: 3;
            display: inline-flex;
            align-items: center;
            color: #f7f7f8;
            box-shadow: 0 24px 58px rgba(17, 24, 39, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
            animation: hpFloat 5.8s ease-in-out infinite;
        }

        .hp-float-card strong {
            display: block;
            font-size: 17px;
            line-height: 1.1;
            text-align: left;
        }

        .hp-float-card small {
            display: block;
            margin-top: 3px;
            color: rgba(255, 255, 255, 0.66);
            font-size: 13px;
            font-weight: 500;
            text-align: left;
        }

        .hp-float-icon {
            width: 46px;
            height: 46px;
            display: grid;
            place-items: center;
            flex: 0 0 auto;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.14);
            color: currentColor;
        }

        .hp-float-icon svg {
            width: 22px;
            height: 22px;
            stroke-width: 2;
        }

        .hp-float-card.power {
            min-width: 260px;
            min-height: 60px;
            border-radius: 999px;
            gap: 14px;
            padding: 8px 22px 8px 8px;
            background: #050506;
        }

        .hp-float-card.power strong {
            color: #7ff5a0;
        }

        .hp-float-card.product {
            min-width: 292px;
            min-height: 88px;
            gap: 14px;
            padding: 14px 22px 14px 14px;
            border-radius: 24px;
            background: #272830;
        }

        .hp-float-card.payment {
            width: 306px;
            min-height: 136px;
            align-items: stretch;
            flex-direction: column;
            gap: 16px;
            padding: 18px;
            border-radius: 24px;
            color: #1f2328;
            background: rgba(255, 255, 255, 0.88);
            box-shadow: 0 18px 46px rgba(17, 24, 39, 0.14);
        }

        .hp-payment-row {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .hp-payment-actions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .hp-payment-actions span {
            min-width: 108px;
            padding: 12px 16px;
            border-radius: 999px;
            color: #ffffff;
            background: #2d72f6;
            font-size: 14px;
            font-weight: 700;
        }

        .hp-payment-actions span:first-child {
            color: #1f2328;
            background: #eef0f4;
        }

        .hp-float-card.delivery {
            min-width: 310px;
            min-height: 88px;
            gap: 14px;
            padding: 14px 22px 14px 14px;
            border-radius: 24px;
            color: #1f2328;
            background: rgba(255, 255, 255, 0.9);
        }

        .hp-float-card.delivery small {
            color: rgba(31, 35, 40, 0.58);
        }

        .hp-float-card.compact {
            min-width: 250px;
            min-height: 60px;
            gap: 12px;
            padding: 8px 22px 8px 8px;
            border-radius: 999px;
            background: #111114;
        }

        .hp-float-card.compact strong,
        .hp-float-card.power strong {
            font-size: 16px;
        }

        .hp-float-card.power {
            top: 230px;
            left: calc(50% - 580px);
            animation-delay: -1.2s;
        }

        .hp-float-card.product {
            top: 120px;
            left: calc(50% + 320px);
            right: auto;
            animation-delay: -2s;
        }

        .hp-float-card.compact {
            top: 250px;
            left: calc(50% + 360px);
            right: auto;
            animation-delay: -0.5s;
        }

        .hp-float-card.compact:not(.anniversary) {
            color: #eef6ff;
            background: #0d2f62;
            box-shadow: 0 18px 46px rgba(38, 104, 214, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
        }

        .hp-float-card.payment {
            top: 420px;
            left: calc(50% + 320px);
            right: auto;
            bottom: auto;
            transform: none;
            animation-delay: -1.8s;
        }

        .hp-float-card.delivery {
            top: 106px;
            bottom: auto;
            left: calc(50% - 580px);
            animation-delay: -2.8s;
        }

        .hp-float-card.anniversary {
            top: 446px;
            left: calc(50% - 580px);
            right: auto;
            bottom: auto;
            transform: none;
            animation-delay: -3.3s;
        }

        .steering-stats {
            align-self: center;
            display: grid;
            gap: 26px;
        }

        .steering-rating {
            display: flex;
            align-items: baseline;
            gap: 16px;
            color: #1d1d1f;
        }

        .steering-rating strong {
            font-size: 54px;
            font-weight: 500;
            letter-spacing: -0.8px;
        }

        .steering-rating span {
            max-width: 120px;
            font-size: 16px;
            font-weight: 300;
            line-height: 1.25;
            color: #4f5055;
        }

        .steering-miniatures {
            display: flex;
            gap: 16px;
        }

        .steering-miniature {
            width: 86px;
            height: 86px;
            display: grid;
            place-items: center;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.68);
            border: 1px solid rgba(255, 255, 255, 0.74);
            box-shadow: 0 16px 30px rgba(17, 24, 39, 0.06);
        }

        .steering-miniature img {
            width: 78%;
            height: 78%;
            object-fit: contain;
        }

        .reveal-on-scroll {
            opacity: 0;
            translate: 0 34px;
            transition: opacity 0.82s cubic-bezier(0.16, 1, 0.3, 1),
                        translate 0.82s cubic-bezier(0.16, 1, 0.3, 1);
            transition-delay: var(--reveal-delay, 0ms);
            will-change: opacity, translate;
        }

        .reveal-on-scroll.is-revealed {
            opacity: 1;
            translate: 0 0;
        }

        @keyframes fadeInDown {
            from { opacity: 0; transform: translate(-50%, -40px); }
            to { opacity: 1; transform: translate(-50%, 0); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes softPulse {
            0%, 100% { opacity: 0.36; transform: scale(0.98); }
            50% { opacity: 0.72; transform: scale(1.04); }
        }

        @keyframes heroSlide {
            0% { opacity: 0; transform: scale(1.015) translateX(18px); }
            5% { opacity: 1; }
            24% { opacity: 1; transform: scale(1.02) translateX(0); }
            29% { opacity: 0; transform: scale(1.025) translateX(-14px); }
            100% { opacity: 0; transform: scale(1.025) translateX(-14px); }
        }

        @keyframes hpFloat {
            0%, 100% { translate: 0 0; }
            50% { translate: 0 -10px; }
        }

        @keyframes partnerScroll {
            from { transform: translateX(0); }
            to { transform: translateX(calc(-50% - 26px)); }
        }

        @keyframes newsletterHeartbeat {
            0%, 100% {
                scale: 1;
                filter: drop-shadow(0 34px 80px rgba(0, 0, 0, 0.22));
            }

            28% {
                scale: 1.012;
                filter: drop-shadow(0 42px 94px rgba(0, 0, 0, 0.28));
            }

            46% {
                scale: 1;
                filter: drop-shadow(0 34px 80px rgba(0, 0, 0, 0.22));
            }

            62% {
                scale: 1.006;
                filter: drop-shadow(0 38px 86px rgba(0, 0, 0, 0.25));
            }

            78% {
                scale: 1;
                filter: drop-shadow(0 34px 80px rgba(0, 0, 0, 0.22));
            }
        }

        @media (max-width: 1380px) {
            .danfoss-showcase {
                grid-template-columns: minmax(260px, 380px) minmax(0, 700px);
            }

            .danfoss-editorial {
                min-height: 1560px;
            }

            .danfoss-products-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .hp-social-stage {
                min-height: 560px;
                margin-bottom: 44px;
            }

            .hp-social-png-wrap {
                width: min(430px, 34vw);
                height: 470px;
                overflow: hidden;
            }

            .hp-float-card strong {
                font-size: 15px;
            }

            .hp-float-card small {
                font-size: 12px;
            }

            .hp-float-icon {
                width: 40px;
                height: 40px;
            }

            .hp-float-card.power {
                min-width: 230px;
                left: calc(50% - 500px);
            }

            .hp-float-card.delivery {
                min-width: 270px;
                left: calc(50% - 520px);
            }

            .hp-float-card.product {
                min-width: 258px;
                left: calc(50% + 300px);
            }

            .hp-float-card.compact {
                min-width: 224px;
                left: calc(50% + 340px);
            }

            .hp-float-card.payment {
                width: 278px;
                left: calc(50% + 300px);
            }

            .hp-float-card.anniversary {
                min-width: 225px;
                left: calc(50% - 500px);
            }

            .blog-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .blog-card {
                min-height: 390px;
            }
        }

        @media (max-width: 768px) {
            .cursor-orb {
                display: none;
            }

            .hero {
                align-items: flex-end;
                justify-content: center;
                min-height: 92vh;
                padding: 132px 24px 96px;
                text-align: center;
            }

            .hero::before {
                background: linear-gradient(180deg,
                    rgba(255, 255, 255, 0.92) 0%,
                    rgba(255, 255, 255, 0.62) 40%,
                    rgba(255, 255, 255, 0.34) 100%);
            }

            .hero-slide {
                background-size: cover;
                background-position: calc(100% + 120px) top;
            }

            .hero-title {
                font-size: 38px;
            }

            .hero-description {
                font-size: 16px;
                margin-left: auto;
                margin-right: auto;
            }

            .hero-content {
                width: min(520px, 100%);
                transform: translateY(-18px);
                text-align: center;
                margin: 0 auto;
            }

            .gradient-divider {
                margin-left: auto;
                margin-right: auto;
                background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.42) 50%, rgba(0,0,0,0) 100%);
            }

            .hero-actions {
                gap: 10px;
                justify-content: center;
            }

            .hero-button {
                width: 100%;
                min-height: 46px;
                padding: 0 18px;
            }


            .footer-cta-actions {
                margin-top: 48px;
                margin-bottom: 0;
                padding: 0 24px;
            }

            .products-section {
                margin-top: -82px;
                padding: 46px 24px 72px;
            }

            .section-heading {
                text-align: left;
                margin-bottom: 30px;
            }

            .section-title {
                font-size: 32px;
            }

            .product-grid {
                grid-template-columns: 1fr;
            }

            .category-section {
                margin: -8px auto 48px;
            }

            .category-section + .section-heading {
                margin-bottom: 30px;
            }

            .category-title {
                font-size: 22px;
                margin-bottom: 22px;
            }

            .category-scroller {
                gap: 16px;
                padding: 2px 2px 8px;
            }

            .category-item {
                flex-basis: 104px;
                gap: 10px;
            }

            .category-thumb {
                width: 104px;
                height: 104px;
            }

            .category-item span:last-child {
                font-size: 13px;
            }

            .category-arrow {
                display: none;
            }

            .product-card {
                min-height: 380px;
                padding: 28px;
                border-radius: 24px;
            }

            .product-card h3 {
                font-size: 28px;
            }

            .product-media {
                width: 62%;
                right: -12%;
                bottom: -6%;
            }

            .danfoss-section {
                margin-top: 56px;
            }

            .danfoss-showcase {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .danfoss-editorial {
                position: relative;
                top: auto;
                min-height: auto;
            }

            .danfoss-kicker {
                font-size: 18px;
            }

            .danfoss-title {
                font-size: 36px;
                max-width: 100%;
            }

            .danfoss-cta,
            .product-promo-link {
                min-height: 50px;
                font-size: 16px;
            }

            .product-promo {
                min-height: 520px;
                flex: none;
                padding: 28px;
                border-radius: 24px;
                background-size: 128% auto;
            }

            .product-promo h3 {
                font-size: 34px;
            }

            .danfoss-products-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 14px;
            }

            .danfoss-card {
                min-height: 280px;
                border-radius: 18px;
            }

            .danfoss-media {
                min-height: 180px;
                padding: 22px 14px 10px;
            }

            .danfoss-media img {
                width: min(92%, 150px);
                max-height: 142px;
            }

            .danfoss-info {
                min-height: 78px;
                padding: 8px 14px 18px;
                background: transparent;
            }

            .danfoss-info h3 {
                font-size: 17px;
                line-height: 1.18;
                margin-bottom: 8px;
            }

            .danfoss-product-link {
                display: none;
            }

            .faq-section {
                width: 100%;
                margin: 64px 0 0;
                padding: 42px 26px 50px;
                border-radius: 34px;
                transform: none;
            }

            .faq-kicker {
                font-size: 18px;
            }

            .faq-title {
                font-size: 36px;
                margin-bottom: 38px;
            }

            .faq-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }

            .faq-question {
                min-height: 52px;
                font-size: 21px;
            }

            .faq-answer p {
                padding-right: 18px;
                font-size: 16px;
            }

            .blog-section {
                margin-top: 64px;
            }

            .blog-kicker {
                font-size: 18px;
            }

            .blog-title {
                font-size: 34px;
                margin-bottom: 32px;
            }

            .blog-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .blog-card {
                min-height: 430px;
                gap: 16px;
                padding: 24px;
                border-radius: 22px;
            }

            .blog-card h3 {
                max-width: 240px;
                font-size: 26px;
                line-height: 1.16;
                margin-bottom: 12px;
            }

            .blog-card p {
                max-width: 250px;
                font-size: 14px;
                line-height: 1.45;
                margin-bottom: 12px;
            }

            .blog-card.compact-title h3,
            .blog-card.hero-title h3 {
                font-size: 26px;
                line-height: 1.16;
                margin-bottom: 12px;
            }

            .blog-link {
                min-height: 38px;
                padding: 0 13px;
                font-size: 13px;
            }

            .blog-media {
                width: min(58%, 250px);
                right: 16px;
                bottom: 16px;
                border-radius: 13px;
            }

            .blog-card.media-before-link .blog-media {
                margin: 0;
            }


            .feature-banner {
                width: 100%;
                min-height: 420px;
                align-items: flex-end;
                margin: 48px 0 0;
                padding: 34px 28px;
                border-radius: 24px;
                transform: none;
                background:
                    linear-gradient(180deg,
                        rgba(15, 15, 15, 0.08) 0%,
                        rgba(15, 15, 15, 0.42) 44%,
                        rgba(15, 15, 15, 0.82) 100%),
                    url("https://res.cloudinary.com/dncdgiwhp/image/upload/v1780947576/Comando_Monobloco_80_lts_h9dyck.png");
                background-size: cover;
                background-position: center;
            }

            .feature-banner:hover {
                transform: translateY(-6px);
            }

            .feature-title {
                font-size: 32px;
            }

            .feature-description {
                font-size: 15px;
            }

            .partners-carousel {
                margin-top: 48px;
            }

            .partners-heading {
                font-size: 20px;
                margin-bottom: 20px;
            }

            .partners-track {
                gap: 34px;
                animation-duration: 28s;
            }

            .partner-logo {
                min-width: 126px;
                font-size: 18px;
            }

            .steering-showcase {
                width: min(94vw, 1660px);
                min-height: auto;
                margin-top: 52px;
                padding: 42px 26px 76px;
                border-radius: 34px;
            }

            .steering-title {
                text-align: left;
                font-size: 38px;
                margin-bottom: 30px;
            }

            .steering-layout {
                grid-template-columns: 1fr;
                gap: 22px;
            }

            .steering-info {
                order: 2;
                justify-self: stretch;
                padding-right: 0;
            }

            .steering-product {
                order: 1;
                min-height: 350px;
            }

            .steering-product img {
                width: min(128%, 460px);
                max-height: 430px;
            }

            .hp-social-section {
                width: 100%;
                margin-top: 44px;
            }

            .hp-social-title {
                font-size: 34px;
                line-height: 1.06;
            }

            .hp-social-subtitle {
                margin-bottom: 22px;
                font-size: 16px;
            }

            .hp-social-stage {
                width: 100vw;
                min-height: clamp(490px, 110vw, 620px);
                margin-top: -6px;
                margin-bottom: 22px;
                place-items: end center;
                overflow: visible;
            }

            .hp-social-png-wrap {
                width: min(86vw, 400px);
                height: clamp(390px, 94vw, 500px);
                overflow: hidden;
                place-items: center;
            }

            .hp-social-png {
                width: 100%;
                height: auto;
                max-width: 100%;
                max-height: none;
                transform: none;
                clip-path: none;
            }

            .hp-social-image-placeholder {
                font-size: 18px;
            }

            .hp-float-card {
                display: none;
            }

            .hp-float-card strong {
                font-size: 12px;
            }

            .hp-float-card small {
                font-size: 10px;
            }

            .hp-float-icon {
                width: 28px;
                height: 28px;
            }

            .hp-float-icon svg {
                width: 15px;
                height: 15px;
            }

            .hp-float-card.compact strong,
            .hp-float-card.power strong {
                font-size: 12px;
            }

            .hp-float-card.power {
                top: 204px;
                left: 4%;
            }

            .hp-float-card.product {
                top: 156px;
                right: 4%;
                left: auto;
            }

            .hp-float-card.compact {
                top: 262px;
                right: 5%;
                left: auto;
            }

            .hp-float-card.payment {
                top: auto;
                bottom: 96px;
                right: 4%;
                left: auto;
            }

            .hp-float-card.delivery {
                top: 98px;
                bottom: auto;
                left: 4%;
            }

            .hp-float-card.anniversary {
                top: auto;
                left: 4%;
                right: auto;
                bottom: 104px;
                transform: none;
            }

            .steering-stats {
                order: 3;
                grid-template-columns: 1fr;
            }

            .steering-rating strong {
                font-size: 34px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .reveal-on-scroll {
                opacity: 1;
                translate: 0 0;
                transition: none;
            }


        }
