@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
        :root {
            --landing-bg: #040404;
            --landing-bg-alt: #0b0b0b;
            --landing-overlay: rgba(4, 4, 4, 0.75);
            --landing-primary: #e11d48;
            --landing-secondary: #f5f5f5;
            --landing-accent: #969696;
            --landing-border: rgba(255, 255, 255, 0.1);
            --landing-font: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
            --landing-max-width: 1140px;
            --landing-base-font-size: 16px;
        }

        html,
        body.landing-page {
            margin: 0;
            padding: 0;
            background: var(--landing-bg);
            color: var(--landing-secondary);
            font-family: var(--landing-font);
            font-size: var(--landing-base-font-size);
            line-height: 1.6;
        }

        body.landing-page {
            min-height: 100vh;
        }

        main.landing {
            position: relative;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .landing * {
            box-sizing: border-box;
        }

        .landing-container {
            width: 100%;
            max-width: var(--landing-max-width);
            margin: 0 auto;
        }

        .landing-header {
            position: sticky;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 5;
            background: linear-gradient(90deg, #a01f2e 0%, #1c0b13 100%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
        }

        .landing-header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: var(--landing-max-width);
            width: 100%;
            margin: 0 auto;
            padding: 1.25rem clamp(1.5rem, 4vw, 2.5rem);
            gap: 1.5rem;
        }

        .landing-header-logo {
            display: inline-flex;
            align-items: center;
            max-width: 190px;
        }

        .landing-header-logo img {
            width: 100%;
            height: auto;
        }

        .landing-header-cta {
            padding: 0.55rem 2.4rem;
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 2px;
            font-size: 0.95rem;
            letter-spacing: 0.04em;
            text-transform: none;
            font-weight: 500;
            transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
            background: transparent;
            color: #fff;
        }

        .landing-header-cta:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 1);
        }

        .landing-header-cta:focus {
            outline: none;
            box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
        }

        .landing-hero {
            position: relative;
            min-height: 90vh;
            overflow: hidden;
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
            padding: 10rem 6vw 6rem;
            background: radial-gradient(circle at top right, rgba(225, 29, 72, 0.15), transparent 55%),
                var(--landing-bg);
        }

        .landing-hero video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.55);
        }

        .landing-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, var(--landing-overlay) 100%);
        }

        .hero-content {
            position: relative;
            max-width: 780px;
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
            z-index: 2;
        }

        .hero-title {
            margin: 0;
            font-size: clamp(3.5rem, 6vw, 5rem);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            line-height: 1.05;
        }

        .hero-subtitle {
            margin: 0;
            font-size: 0.85rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.28em;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.85);
        }

        .hero-note {
            margin: 0;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.32em;
            color: rgba(255, 255, 255, 0.65);
        }

        .landing-section {
            position: relative;
            padding: 1rem clamp(1.5rem, 6vw, 3rem);
            background: var(--landing-bg);
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }

        .landing-section > .landing-container {
            display: grid;
            gap: 3.5rem;
        }

        .technical-download {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1.25rem;
            text-align: center;
            width: 100%;
            max-width: 400px;
            margin: 50px auto 50px auto;
        }

        .technical-download p {
            margin: 0;
            max-width: 100%;
            font-size: clamp(0.85rem, 1vw, 0.72rem);
            font-weight: 300;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.85);
        }

        .technical-download a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 0.675rem 1.375rem;
            border: 1px solid rgba(255, 255, 255, 0.85);
            font-size: clamp(0.8rem, 0.8vw, 0.6rem);
            letter-spacing: 0.08em;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            text-transform: none;
            font-weight: 400;
            transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
        }

        .technical-download a svg {
            width: 12px;
            height: 12px;
            fill: currentColor;
        }

        .technical-download a:hover,
        .technical-download a:focus-visible {
            background: rgba(255, 255, 255, 0.12);
            color: #fff;
            border-color: rgba(255, 255, 255, 1);
            outline: none;
        }

        .cold-system,
        .hot-system {
            display: block;
            position: relative;
            padding: 5rem clamp(1.5rem, 6vw, 3rem) 6rem;
            border-bottom: none;
            background: radial-gradient(circle at left bottom, rgba(225, 29, 72, 0.06), transparent 65%), var(--landing-bg);
            overflow: hidden;
            --cold-media-pad: clamp(3rem, 6vw, 5rem);
        }

        #animation-hot,
        .landing-carousel-section {
            overflow: hidden;
            background: radial-gradient(circle at top, rgba(225, 29, 72, 0.12), transparent 55%), var(--landing-bg);
        }

        #animation-hot > .landing-container,
        .landing-carousel-section > .landing-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: clamp(2rem, 6vw, 4rem);
            text-align: center;
        }

        .animation-hot-heading {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            align-items: center;
            text-transform: uppercase;
        }

        .animation-hot-tag {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            font-size: clamp(1.05rem, 2vw, 1.35rem);
            color: rgba(255, 255, 255, 0.75);
            letter-spacing: 0.32em;
            font-weight: 500;
        }

        .animation-hot-tag img {
            width: clamp(32px, 5vw, 54px);
            height: auto;
        }

        .animation-hot-title {
            margin: 0;
            width: clamp(220px, 60vw, 420px);
            opacity: 0.4;
        }

        /* Fix per technical-download nel carousel - rimuove l'effetto sfumato */
        .landing-carousel-section .technical-download {
            background: rgba(0, 0, 0, 0.15);
            backdrop-filter: blur(8px);
        }

        .animation-carousel {
            position: relative;
            width: 100%;
            max-width: 1120px;
            padding: clamp(1.5rem, 4vw, 3rem) 0;
        }

        .animation-carousel-track {
            position: relative;
            width: 100%;
            height: clamp(260px, 45vw, 520px);
            margin: 0 auto;
            touch-action: pan-y;
            cursor: grab;
        }

        .animation-carousel-track:active {
            cursor: grabbing;
        }

        .animation-slide {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.6);
            opacity: 0;
            pointer-events: none;
            transition: transform 0.6s ease, opacity 0.6s ease, filter 0.6s ease;
            z-index: 1;
        }

        .animation-slide img {
            display: block;
            width: clamp(240px, 38vw, 540px);
            height: auto;
            filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.55));
        }

        .animation-slide.is-active {
            opacity: 1;
            pointer-events: auto;
            transform: translate(-50%, -50%) scale(1);
            z-index: 3;
        }

        .animation-slide.is-active img {
            filter: drop-shadow(0 34px 55px rgba(0, 0, 0, 0.7));
        }

        .animation-slide.is-left {
            opacity: 0.55;
            transform: translate(-145%, -50%) scale(0.78);
            z-index: 2;
        }

        .animation-slide.is-right {
            opacity: 0.55;
            transform: translate(45%, -50%) scale(0.78);
            z-index: 2;
        }

        .animation-slide.is-left img,
        .animation-slide.is-right img {
            filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.4));
        }

        .animation-carousel::after {
            content: '';
            position: absolute;
            inset: auto 12% -18% 12%;
            height: 120px;
            background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.45) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        .animation-control {
            position: absolute;
            top: 50%;
            width: 64px;
            height: 64px;
            margin-top: -32px;
            border: 1px solid rgba(255, 255, 255, 0.75);
            background: rgba(0, 0, 0, 0.35);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
            cursor: pointer;
            backdrop-filter: blur(6px);
            z-index: 5;
        }

        .animation-control::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 10px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            box-shadow: 0 0 8px rgba(225, 29, 72, 0.8);
        }

        .animation-control svg {
            width: 22px;
            height: 22px;
            fill: currentColor;
        }

        .animation-control:hover,
        .animation-control:focus-visible {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.95);
            outline: none;
        }

        .animation-control:active {
            transform: scale(0.95);
        }

        .animation-control.control-prev {
            left: clamp(0.5rem, 8vw, 6rem);
        }

        .animation-control.control-next {
            right: clamp(0.5rem, 8vw, 6rem);
        }

        .animation-carousel-track:focus-visible {
            outline: 1px dashed rgba(255, 255, 255, 0.4);
            outline-offset: 12px;
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        @media (max-width: 900px) {
            .animation-control {
                width: 56px;
                height: 56px;
                margin-top: -28px;
            }

            .animation-carousel::after {
                inset: auto 8% -22% 8%;
                height: 100px;
            }

            .animation-slide.is-left {
                transform: translate(-125%, -50%) scale(0.72);
            }

            .animation-slide.is-right {
                transform: translate(25%, -50%) scale(0.72);
            }
        }

        @media (max-width: 640px) {
            .animation-hot-title {
                letter-spacing: 0.1em;
            }

            .animation-control {
                width: 48px;
                height: 48px;
                margin-top: -24px;
                background: rgba(0, 0, 0, 0.45);
            }

            .animation-control.control-prev {
                left: clamp(0.5rem, 6vw, 3rem);
            }

            .animation-control.control-next {
                right: clamp(0.5rem, 6vw, 3rem);
            }

            .animation-slide.is-left,
            .animation-slide.is-right {
                opacity: 0.25;
                transform: translate(-50%, -50%) scale(0.7);
            }
        }

        .cold-system .cold-backdrop,
        .hot-system .hot-backdrop {
            position: absolute;
            top: 20px;
            left: 50%;
            width: min(calc(100% - 2 * clamp(1.5rem, 6vw, 3rem)), var(--landing-max-width));
            transform: translateX(-50%);
            display: flex;
            justify-content: center;
            align-items: flex-start;
            pointer-events: none;
            opacity: 0.05;
        }

        .cold-system .cold-backdrop img,
        .hot-system .hot-backdrop img {
            width: 100%;
            height: auto;
            filter: blur(15px);

        }

        .cold-inner,
        .hot-inner {
            position: relative;
            z-index: 1;
            display: grid;
            row-gap: 2.5rem;
            column-gap: clamp(1rem, 2.5vw, 1.75rem);
            align-items: end;
        }

        .cold-inner {
            grid-template-columns: minmax(520px, 1fr) auto;
        }

        .hot-inner {
            grid-template-columns: auto minmax(520px, 1fr);
        }

        .cold-media,
        .hot-media {
            position: relative;
            display: flex;
            align-items: flex-end;
            padding-bottom: var(--cold-media-pad);
        }

        .cold-media {
            justify-content: flex-start;
        }

        .hot-media {
            justify-content: flex-end;
        }

        .cold-media::after,
        .hot-media::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: calc(32% + var(--cold-media-pad));
            pointer-events: none;
            z-index: 1;
        }

        .cold-media img,
        .hot-media img {
            display: block;
            width: min(680px, 105%);
            height: auto;
            position: relative;
            z-index: 0;
        }

        .cold-content,
        .hot-content {
            display: flex;
            flex-direction: column;
            gap: 1.6rem;
            max-width: 420px;
            justify-self: start;
            align-self: end;
        }

        .cold-header,
        .hot-header {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
        }

        .cold-icon,
        .hot-icon {
            width: 46px;
            height: 46px;
        }

        .cold-title,
        .hot-title {
            margin: 0;
            font-size: 2rem;
            text-transform: uppercase;
        }

        .cold-subtitle,
        .hot-subtitle {
            margin: 0.25rem 0 0;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.32em;
            color: rgba(255, 255, 255);
        }

        .cold-intro,
        .hot-intro {
            margin: 0;
            max-width: 340px;
            color: rgba(255, 255, 255);
            font-size: 0.8rem;
            line-height: 1rem;
        }

        .cold-features,
        .hot-features {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 1rem 1.8rem;
            grid-template-columns: repeat(2, minmax(160px, 1fr));
        }

        .cold-feature,
        .hot-feature {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.8rem;
        }

        .cold-feature img,
        .hot-feature img {
            width: 25px;
            height: 25px;
        }

        .cold-feature span,
        .hot-feature span {
            color: rgba(255, 255, 255, 0.9);
        }

        .section-heading {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .section-eyebrow {
            font-size: 0.8rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.6);
        }

        .section-title {
            font-size: clamp(2rem, 3vw, 3rem);
            text-transform: uppercase;
            margin: 0;
            font-weight: 700;
        }

        .section-subtitle {
            margin: 0;
            color: rgba(255, 255, 255, 0.6);
            max-width: 460px;
        }

        .section-body {
            display: grid;
            gap: 3rem;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            align-items: center;
        }

        .section-media {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .media-asset {
            width: min(440px, 100%);
            aspect-ratio: 4 / 3;
            background: radial-gradient(circle at top left, rgba(225, 29, 72, 0.25), transparent 60%),
                linear-gradient(145deg, #111 0%, #050505 50%, #0f0f0f 100%);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            position: relative;
            overflow: hidden;
        }

        .media-asset::before,
        .media-asset::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            opacity: 0.4;
        }

        .media-asset::before {
            width: 120px;
            height: 120px;
            background: rgba(225, 29, 72, 0.22);
            top: 18%;
            left: 8%;
        }

        .media-asset::after {
            width: 220px;
            height: 220px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            bottom: -60px;
            right: -30px;
        }

        .features-list {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0 0;
            display: grid;
            gap: 0.85rem;
        }

        .features-list li {
            position: relative;
            padding-left: 2.4rem;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .features-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 1.6rem;
            height: 1.6rem;
            border-radius: 50%;
            background: radial-gradient(circle at center, var(--landing-primary) 0%, rgba(225, 29, 72, 0.25) 60%, transparent 100%);
            transform: translateY(-50%);
            box-shadow: 0 0 0 1px rgba(225, 29, 72, 0.35);
        }

        .features-list li strong {
            display: block;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #fff;
        }

        .highlight-panel {
            margin-top: 2rem;
            padding: 1.5rem 2rem;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
        }

        .highlight-panel p {
            margin: 0;
            color: rgba(255, 255, 255, 0.75);
        }

        .product-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.2rem;
            align-items: stretch;
        }

        .product-card {
            background: linear-gradient(180deg, #111 0%, #070707 60%, #0f0f0f 100%);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 14px;
            padding: 1.8rem 1.5rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 1.2rem;
        }

        .product-card h3 {
            margin: 0;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .product-card p {
            margin: 0;
            color: rgba(255, 255, 255, 0.65);
            font-size: 0.9rem;
        }

        .product-visual {
            position: relative;
            aspect-ratio: 4 / 3;
            border-radius: 12px;
            background: radial-gradient(circle at center, rgba(225, 29, 72, 0.25) 0%, transparent 70%), #070707;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .contact-section {
            display: grid;
            grid-template-columns: minmax(260px, 380px) minmax(320px, 1fr);
            gap: 3rem;
            align-items: start;
        }

        .contact-info h2 {
            margin: 0 0 1.25rem;
            font-size: 2.8rem;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            color: #fff;
        }

        .contact-info p {
            color: rgba(255, 255, 255, 0.85);
            max-width: 360px;
            margin: 0;
            line-height: 1.7;
        }

        .contact-info p strong {
            color: var(--landing-primary);
            font-weight: 600;
        }

        .contact-info p .highlight {
            display: block;
            color: var(--landing-primary);
            font-weight: 600;
            margin: 0.4rem 0;
        }

        .contact-form-wrapper {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .contact-form-wrapper .wpcf7 {
            width: 100%;
        }

        .contact-form-wrapper .wpcf7-form {
            display: grid;
            gap: 1rem;
        }

        .contact-form-wrapper .wpcf7-form label {
            display: block;
            font-size: 0.9rem;
            letter-spacing: 0.04em;
            color: rgba(255, 255, 255, 0.86);
            margin-bottom: 0.35rem;
        }

        .contact-form-wrapper .wpcf7-form label .wpcf7-form-control-wrap {
            display: block;
            margin-top: 0.35rem;
        }

        .contact-form-wrapper .wpcf7 input[type="text"],
        .contact-form-wrapper .wpcf7 input[type="email"],
        .contact-form-wrapper .wpcf7 input[type="tel"],
        .contact-form-wrapper .wpcf7 select,
        .contact-form-wrapper .wpcf7 textarea {
            width: 100%;
            padding: 0.95rem 1.1rem;
            border: 1px solid rgba(255, 255, 255, 0.32);
            background: rgba(46, 0, 13, 0.32);
            color: rgba(255, 255, 255, 0.92);
            font-size: 0.95rem;
            transition: border-color 0.2s ease, background 0.2s ease;
        }

        .contact-form-wrapper .wpcf7 textarea {
            min-height: 180px;
            resize: vertical;
        }

        .contact-form-wrapper .wpcf7 input[type="text"]:focus,
        .contact-form-wrapper .wpcf7 input[type="email"]:focus,
        .contact-form-wrapper .wpcf7 input[type="tel"]:focus,
        .contact-form-wrapper .wpcf7 select:focus,
        .contact-form-wrapper .wpcf7 textarea:focus {
            outline: none;
            border-color: rgba(225, 29, 72, 0.85);
            background: rgba(46, 0, 13, 0.45);
        }

        .contact-form-wrapper .wpcf7 input[type="checkbox"] {
            appearance: none;
            width: 18px;
            height: 18px;
            border: 1px solid rgba(255, 255, 255, 0.85);
            background: transparent;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            margin: 0 0.75rem 0 0;
        }

        .contact-form-wrapper .wpcf7 input[type="checkbox"]:checked::after {
            content: '\2713';
            font-size: 0.7rem;
            color: rgba(225, 29, 72, 0.95);
        }

        .contact-form-wrapper .cf7-grid {
            display: grid;
            gap: 1rem;
            grid-template-columns: minmax(0, 1fr) auto;
        }

        .contact-form-wrapper .cf7-grid > p {
            margin: 0;
            grid-column: 1 / -1;
        }

        .contact-form-wrapper .cf7-grid > p:nth-last-child(2) {
            display: flex;
            align-items: center;
            grid-column: 1 / span 1;
        }

        .contact-form-wrapper .cf7-grid > p:nth-last-child(2) label.privacy {
            display: flex;
            align-items: center;
            gap: 0.65rem;
            margin: 0;
        }

        .contact-form-wrapper .cf7-grid > p:last-child {
            grid-column: 2 / span 1;
            align-self: center;
            justify-self: end;
            margin: 0;
        }

        .contact-form-wrapper .cf7-grid > p:last-child input[type="submit"] {
            width: auto;
        }

        .contact-form-wrapper .wpcf7 .wpcf7-acceptance,
        .contact-form-wrapper .wpcf7 .wpcf7-acceptance .wpcf7-list-item {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.75);
        }

        .contact-form-wrapper .wpcf7 .wpcf7-acceptance,
        .contact-form-wrapper .wpcf7 .wpcf7-acceptance .wpcf7-list-item {
            justify-content: flex-start;
        }

        .contact-form-wrapper .wpcf7 .wpcf7-list-item-label {
            color: rgba(255, 255, 255, 0.75);
        }

        .contact-form-wrapper .wpcf7 .wpcf7-list-item-label a {
            color: var(--landing-primary);
            text-decoration: none;
        }

        .contact-form-wrapper .wpcf7 .wpcf7-list-item-label a:hover {
            text-decoration: underline;
        }

        .contact-form-wrapper .wpcf7 input[type="submit"] {
            align-self: flex-end;
            padding: 0.85rem 2.8rem;
            border: none;
            background: var(--landing-primary);
            color: #fff;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            cursor: pointer;
            transition: background 0.2s ease;
        }

        .contact-form-wrapper .wpcf7 input[type="submit"]:hover,
        .contact-form-wrapper .wpcf7 input[type="submit"]:focus-visible {
            background: #b01333;
            outline: none;
        }

        .contact-form-wrapper .wpcf7-form .wpcf7-not-valid-tip {
            font-size: 0.75rem;
            color: rgba(225, 29, 72, 0.9);
        }

        .contact-form-wrapper .wpcf7-response-output {
            margin: 0;
            padding: 0.75rem 1rem;
            border: 1px solid rgba(225, 29, 72, 0.9);
            color: rgba(255, 255, 255, 0.9);
        }

        #contact {
            position: relative;
            overflow: visible;
        }

        #contact::after {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: clamp(320px, 44vw, 640px);
            aspect-ratio: 1 / 1;
            background: url('../../../../media/images/x-white.svg') no-repeat center / contain;
            opacity: 0.05;
            pointer-events: none;
            z-index: 0;
        }

        #contact > .landing-container {
            position: relative;
            z-index: 1;
        }

        .landing-footer {
            position: relative;
            background: #121212;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            color: rgba(255, 255, 255, 0.65);
            margin-top: 100px;
        }

        .landing-footer .landing-container {
            display: flex;
            flex-direction: column;
            gap: 4.5rem;
            padding: 0 .2rem .2rem;
        }

        .landing-footer .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .landing-footer .footer-logo img {
            width: clamp(140px, 18vw, 200px);
            height: auto;
        }

        .landing-footer .footer-backtop {
            border: 1px solid rgba(255, 255, 255, 0.7);
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-size: 1.4rem;
            line-height: 1;
            transition: background 0.2s ease, color 0.2s ease;
        }

        .landing-footer .footer-backtop:hover,
        .landing-footer .footer-backtop:focus-visible {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            outline: none;
        }

        .landing-footer .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.5rem;
            font-size: 0.95rem;
        }

        .landing-footer .footer-nav {
            display: flex;
            gap: 1.5rem;
            color: rgba(255, 255, 255, 0.75);
        }

        .landing-footer .footer-nav a {
            color: inherit;
            text-decoration: none;
        }

        .landing-footer .footer-nav a:hover {
            text-decoration: underline;
        }

        .landing-footer .footer-email {
            display: flex;
            gap: 0.75rem;
            align-items: baseline;
            color: rgba(255, 255, 255, 0.65);
        }

        .landing-footer .footer-email strong {
            color: rgba(255, 255, 255, 0.92);
            font-weight: 500;
            letter-spacing: 0.04em;
        }

        .landing-footer .footer-meta {
            display: flex;
            gap: 1.5rem;
            color: rgba(255, 255, 255, 0.55);
        }

        .landing-footer .footer-meta span:last-child {
            color: rgba(255, 255, 255, 0.4);
        }

        footer {
            padding: 1rem 0 1rem 0;
        }

        @media (max-width: 768px) {
    .landing-footer .landing-container {
        padding: 1rem clamp(1.25rem, 6vw, 2rem);
    }
}

        @media (max-width: 1024px) {
            .cold-system,
            .hot-system {
                padding: 5.5rem clamp(1.25rem, 6vw, 2.5rem) 5rem;
                --cold-media-pad: clamp(2rem, 6vw, 3.5rem);
            }

            .cold-system .cold-backdrop,
            .hot-system .hot-backdrop {
                opacity: 0.25;
                transform: translateY(-10%);
            }

            .cold-inner,
            .hot-inner {
                grid-template-columns: 1fr;
                text-align: center;
                justify-items: center;
                align-items: center;
                gap: 2rem;
            }

            .cold-media,
            .hot-media {
                justify-content: center;
            }

            .cold-media img,
            .hot-media img {
                width: min(640px, 100%);
            }

            .cold-content,
            .hot-content {
                align-items: center;
                justify-self: center;
                align-self: center;
                max-width: 460px;
            }

            .cold-header,
            .hot-header {
                justify-content: center;
            }

            .cold-intro,
            .hot-intro {
                max-width: 460px;
            }

            .cold-features,
            .hot-features {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }

            .contact-section {
                grid-template-columns: 1fr;
                text-align: center;
                justify-items: center;
                gap: 2.5rem;
            }

            .contact-info p {
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .landing-header-inner {
                padding: 1rem clamp(1.25rem, 6vw, 2rem);
            }

            .landing-header-cta {
                padding: 0.5rem 1.8rem;
            }

            .landing-hero {
                padding: 7rem 6vw 3.5rem;
                min-height: 70vh;
            }

            .hero-title {
                font-size: clamp(2.4rem, 10vw, 3.5rem);
            }

            .landing-section {
                padding: 4.5rem clamp(1.25rem, 6vw, 2rem);
            }

            .cold-system,
            .hot-system {
                padding: 5rem clamp(1.25rem, 6vw, 2rem);
                --cold-media-pad: clamp(1.5rem, 6vw, 3rem);
            }

            .cold-system .cold-backdrop,
            .hot-system .hot-backdrop {
                transform: translateY(-4%);
            }

            .cold-media,
            .hot-media {
                justify-content: center;
            }

            .cold-media img,
            .hot-media img {
                width: min(520px, 95%);
            }

            .cold-header,
            .hot-header {
                flex-direction: column;
                gap: 0.75rem;
            }

            .cold-content,
            .hot-content {
                align-items: center;
                text-align: center;
                align-self: center;
            }

            .cold-features,
            .hot-features {
                grid-template-columns: repeat(2, minmax(140px, 1fr));
                gap: 0.85rem 1.2rem;
            }

            .cold-feature,
            .hot-feature {
                justify-content: center;
            }

            .cold-feature img,
            .hot-feature img {
                width: 24px;
                height: 24px;
            }

            .contact-section {
                gap: 2.5rem;
            }

            .contact-info {
                text-align: center;
            }

            .contact-form-wrapper .wpcf7 .wpcf7-acceptance,
            .contact-form-wrapper .wpcf7 .wpcf7-acceptance .wpcf7-list-item {
                justify-content: center;
            }

            .contact-form-wrapper .wpcf7 input[type="submit"] {
                width: 100%;
                display: flex;
                align-items: center;
            }

            .contact-form-wrapper .cf7-grid {
                grid-template-columns: 1fr;
            }

            .contact-form-wrapper .cf7-grid > p:nth-last-child(2) {
                grid-column: 1 / -1;
                justify-content: center;
            }

            .contact-form-wrapper .cf7-grid > p:last-child {
                grid-column: 1 / -1;
                justify-self: center;
            }
        }

        @media (max-width: 768px) {
    .cold-features,
    .hot-features {
        align-items: center;
    }
    
    .cold-feature,
    .hot-feature {
        justify-content: flex-start;
        align-items: center;
        text-align: left;
    }
    
    .cold-feature img,
    .hot-feature img {
        flex-shrink: 0;
    }
    
    .cold-feature span,
    .hot-feature span {
        flex: 1;
    }
}
