@import url('ubuntu.css');
@import url('arabic.css');
@import url('menu.css');
@import url('modal.css');
@import url('bootstrap-icons-1.13.1/bootstrap-icons.min.css');
@import url('alerts.css');

:root {
    --ink: #000000;
    --muted: #707070;
    --line: #e9e9e9;
    --soft: #f7f7f5;
    --blue: #2f8fe8;
    --violet: #fb148a;
    --pink: #ed2198;
    --dark: #000000;
    --ilham-primary: #635bff;
    --ilham-primary-dark: #5148e5;
    --ilham-dark: #111827;
    --ilham-text: #1f2937;
    --ilham-muted: #6b7280;
    --ilham-border: #e5e7eb;
    --ilham-bg: #f8fafc;
    --ilham-white: #ffffff;
    --success: #16a34a;
    --error: #dc2626;
    --warning: #d97706;
    --info: #4f46e5;
}

.translated-rtl,
[lang="ar"] .menu,
.translated-rtl *,
[lang="ar"] .menu * {
    direction: rtl;
    font-family:
        arabic,
        'Ubuntu',
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

.g-recaptcha{
	width: 600px;
    margin: 2.5rem auto 0 auto;
    max-width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;	
}

font,
* font:hover {
    background-color: transparent !important;
    box-shadow: none !important;
    position: static !important;
}

/* =========================
   PAGE LOADER
========================= */

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 999999;

    display: flex;
    align-items: center;
    justify-content: center;


    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
    inset: 0;
    background: rgb(255 255 255 / 58%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.page-loader.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}


/* =========================
   LOADER CONTENT
========================= */

.page-loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}


/* =========================
   LOGO
========================= */

.page-loader-logo {
    width: 72px;
    height: 72px;

    display: block;

    object-fit: contain;

    transform-origin: center center;

    animation: logoLoading 1.6s cubic-bezier(
        0.65,
        0,
        0.35,
        1
    ) infinite;
}


/* =========================
   LOADING TEXT
========================= */

.page-loader-content p {
    margin: 20px 0 0;

    font-size: 15px;
    font-weight: 500;

    letter-spacing: 0.03em;

    opacity: 0.75;
}


/* =========================
   SMOOTH LOGO ANIMATION
========================= */

@keyframes logoLoading {

    0% {
        transform:
            perspective(500px)
            rotateY(0deg)
            scale(1);
    }

    25% {
        transform:
            perspective(500px)
            rotateY(90deg)
            scale(1.04);
    }

    50% {
        transform:
            perspective(500px)
            rotateY(180deg)
            scale(1);
    }

    75% {
        transform:
            perspective(500px)
            rotateY(270deg)
            scale(1.04);
    }

    100% {
        transform:
            perspective(500px)
            rotateY(360deg)
            scale(1);
    }
}

.page-loader-spinner {
    position: relative;

    width: 54px;
    height: 54px;

    margin-top: 22px;
}

.page-loader-spinner::before,
.page-loader-spinner::after {
    content: "";

    position: absolute;
    inset: 0;

    border-radius: 50%;
}

.page-loader-spinner::before {
    border: 3px solid rgba(0, 0, 0, 0.12);

    border-top-color: rgb(246 24 140);
    border-right-color: rgb(38 129 223);

    animation: loaderSpin 1.2s linear infinite;
}

.page-loader-spinner::after {
    inset: 9px;

    border: 3px solid rgba(0, 0, 0, 0.12);

    border-bottom-color: rgb(246 24 140);
    border-left-color: rgb(38 129 223);

    animation: loaderSpinReverse 0.8s linear infinite;
}

@keyframes loaderSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes loaderSpinReverse {
    to {
        transform: rotate(-360deg);
    }
}

.ai {
    position: relative;
	background: linear-gradient( 90deg, #db4793, #2c7ddc, #db4793 );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: aiGradient 3s linear infinite;
    display: inline-flex;
    gap: 2px;
    margin: 0 2px;
}

.ai2{
    padding: 5px 9px;
    border-radius: 50%;
    background: #db4793;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 0 0.3rem;
    position: absolute;
    top: -2px;
}

.d-none,.hide{
	display:none !important
}

@keyframes aiGradient { to { background-position: 200% center; } }


html,
body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

/* Hide scrollbars on every element */
* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

*::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}


* {
	outline:none;
	border:0;
	user-select:none;
    font-family: 'Ubuntu', Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
}

.bi {
    display: inline-block;
    vertical-align: -.125em;
    fill: currentcolor;
}

html {
    scroll-behavior: smooth;
}

body {
	top:0!important;
    margin: 0;
    color: var(--ink);
    background: #fff;
    line-height: 1.55;
	padding-top: 78px;
	font-weight:400;
}

a {
    color: #000000;
    text-decoration: none;
}

.container {
    width: min(1280px, calc(100% - 42px));
    margin: auto;
}

header{
	border-bottom:solid 1px black;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: transform .3s ease;
	background-color:#ffffff
}

.nav {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #000;
    transition: .3s;
}


.brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    letter-spacing: -.04em;
}

.brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.brand span {
    font-size: 32px;
}

.brand small {
    font-size: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 19px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    font-size: 14px;
    font-weight: 800;
    transition: .3s;
	cursor: pointer;
}

.btn.green:hover,
.btn.green {
    border: 0;
    color: #fff;
    border: 0;
	background-color: #27ae60;
}

.single-a{
    text-decoration: underline;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.overlay{
    position: relative;
    overflow: hidden;
    color: #fff;
}

.overlay::before{
	content: "";
    background-color: #307cdb;
    position: absolute;
    z-index: 0;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    opacity: 0.5;
    filter: blur(8px) brightness(.8);
    transform: scale(1.03);
}

.overlay{
	
}


.white{
    color:#ffffff;
}

.fs-12{
	font-size:12px;
}

path#phone {
    animation-name: CallUs;
    transform-origin: top center;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}

.btn.primary:hover,
.btn.primary {
    border: 0;
    color: #fff;
    background: #191919;
    box-shadow: 0 15px 35px #0001;
}

.btn.hover {
    position: relative;
    overflow: hidden;
    transition:
        transform .35s cubic-bezier(.2,.8,.2,1),
        box-shadow .35s ease;
}

.btn.hover::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        transparent 20%,
        rgba(255,255,255,.18) 50%,
        transparent 80%
    );
    transform: translateX(-120%);
    transition: transform .6s ease;
}

.btn.hover:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.015);
    box-shadow:
        0 12px 30px rgba(0,0,0,.12),
        0 25px 60px rgba(115,88,223,.12);
}

.btn.hover:hover::before {
    transform: translateX(120%);
}

.btn.hover:active {
    transform: translateY(-1px) scale(.99);
}

.btn.dark {
    background: var(--dark);
    border-color: var(--dark);
    color: #fff;
}


/* Sections */
section {
    padding: 120px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
    margin-bottom: 42px;
}

.kicker {
    color: #000;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

h2 {
    max-width: 680px;
    margin: 10px 0 0;
    font-size: clamp(36px, 4.5vw, 58px);
    line-height: 1.02;
    letter-spacing: -.055em;
}

.section-head p {
    max-width: 390px;
    margin: 0;
    color: var(--muted);
}

/* Services */
.services {
    background: var(--soft);
	/* min-height: calc(100vh + 79px);*/
}

.grid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.service {
    min-height: 225px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    transition: .2s transform, .2s box-shadow;
}

.service:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 60px #0001;
}

.icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border-radius: 13px;
    background: #f0eefc;
    color: #6655ca;
    font-weight: 900;
}


.icon img{
	width:64px;
	height:64px;
}

.service h3 {
    margin: 0 0 8px;
    font-size: 19px;
    letter-spacing: -.025em;
}

.service p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}


/* Process */
.process {
    border-top: 1px solid var(--line);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.step {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 22px;
    transition: .35s;
}

.step:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 50px #0001;
}

.num {
    color: #0191ff;
    font-size: 12px;
    font-weight: 850;
}

.step h3 {
    margin: 45px 0 8px;
    font-size: 21px;
}

.step p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

/* Contact */
.contact {
    background: var(--dark);
    color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.contact h2 {
    max-width: 600px;
}

.contact .muted {
    max-width: 520px;
    color: #b5b8c9;
}

.email-at-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.footer-contact{
	background-color: #000;
	background-image:
		linear-gradient(#0e0e0e 1px, transparent 1px),
		linear-gradient(90deg, #0e0e0e 1px, transparent 1px);
	background-attachment:scroll;
	background-size: 40px 40px;
    position: relative;
}

.footer-contact *{
	z-index:1
}

.footer-contact::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000 0%, transparent 45%);
    pointer-events: none;
	z-index:0
}



.form {
    padding: 26px;
    border-radius: 25px;
    background: #fff;
    color: var(--ink);
    box-shadow: 0 25px 70px #0003;
}

label {
    display: block;
    margin: 0 0 7px;
    color: #54586d;
    font-size: 12px;
    font-weight: 800;
}

input,
textarea {
    width: 100%;
    margin-bottom: 16px;
    padding: 13px 14px;
    border: 1px solid #e1e2eb;
    border-radius: 12px;
    outline: none;
    font: inherit;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

input:focus,
textarea:focus {
    border-color: #8b7ee3;
    box-shadow: 0 0 0 4px rgba(104, 87, 217, .1);
}

.form .btn {
    width: 100%;
}

/* Footer */
footer {
    padding: 24px 0 35px;
    background: var(--dark);
    color: #ffffff;
    font-size: 15px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    padding-top: 22px;
    border-top: 1px solid #0e0e0e
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.2, .8, .2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.delay1 { transition-delay: .1s; }
.delay2 { transition-delay: .2s; }
.delay3 { transition-delay: .3s; }

.cursor-glow {
    position: fixed;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999;
    background: radial-gradient(circle, #7658df18, transparent 68%);
    transform: translate(-50%, -50%);
    mix-blend-mode: multiply;
}

.marquee-wrap{
	background-color:#000000;
    background-image:
        linear-gradient(#0e0e0e 1px, transparent 1px),
        linear-gradient(90deg, #0e0e0e 1px, transparent 1px);
    background-size: 40px 40px;
}
.marquee {
    padding: 20px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    white-space: nowrap;
	mask-image: linear-gradient( 90deg, transparent 0%, black 12%, black 88%, transparent 100% );
	-webkit-mask-image: linear-gradient( 90deg, transparent 0%, black 12%, black 88%, transparent 100% );
}

.marquee-track {
    align-items: center;
    display: flex !important;
    height: 76px;
    justify-content: center;
    padding-inline: 40px;
	gap:50px;
    animation: marquee 22s linear infinite;
	z-index:99;
}

.marquee-track img {
	filter: brightness(0) invert(1);
    height: auto;
    max-height: 50px;
    max-width: 170px;
    -o-object-fit: contain;
    object-fit: contain;
    transition: opacity .2s ease;
    width: auto;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.pulse-dot {
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    50% {
        box-shadow: 0 0 0 10px transparent;
    }
}

 @keyframes CallUs {
	 0% {
		 transform: translateY(0%) rotate(0deg) scale(1) 
	}
	 4% {
		 transform: translateY(0%) rotate(10deg) scale(1.04) 
	}
	 8% {
		 transform: translateY(0%) rotate(0deg) scale(1.08) 
	}
	 12% {
		 transform: translateY(0%) rotate(10deg) scale(1.1) 
	}
	 16% {
		 transform: translateY(0%) rotate(0deg) scale(1.08) 
	}
	 20% {
		 transform: translateY(0%) rotate(10deg) scale(1.04) 
	}
	 24% {
		 transform: translateY(0%) rotate(0deg) scale(1) 
	}
	 100% {
		 transform: translateY(0%) rotate(0deg) scale(1) 
	}
}

/* Responsive */

@media (max-width: 786px) {

    .hero-grid,
    .feature,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .grid4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .section-head {
        display: block;
    }

    .section-head p {
        margin-top: 18px;
    }

    .hero {
        padding-top: 55px;
    }

    .hero-art {
        /* min-height: 350px; */
    }
}

@media (max-width: 560px) {
    .container {
        width: calc(100% - 28px);
    }

    section {
        padding: 80px 0;
    }

    h1,
    .hero h1 {
        font-size: 52px;
    }

    .grid4,.cms-platform-grid {
        display: flex !important;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        padding: 5px 0 15px;
        -webkit-overflow-scrolling: touch;
    }

    .grid4::-webkit-scrollbar {
        display: none;
    }

    .service,.cms-platform-grid {
        flex: 0 0 85%;
        min-height: 225px;
        scroll-snap-align: start;
    }
.cms-platform-card {
    flex: 0 0 85%;
    min-height: 225px;
    scroll-snap-align: start;
}
    .hero-art {
        /* min-height: 340px; */
    }
	
* {
    .browser {
        left: 18px;
        right: 18px;
    }
}
}

/* =========================================
   YARDCMS
========================================= */

.yardcms {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background:
        radial-gradient(
            circle at 80% 15%,
            rgba(115,88,223,.10),
            transparent 32%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(47,143,232,.07),
            transparent 30%
        ),
        #f7f7f5;
}


/* subtle grid */

.yardcms::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .35;

    background-image:
        linear-gradient(#00000006 1px, transparent 1px),
        linear-gradient(90deg, #00000006 1px, transparent 1px);

    background-size: 45px 45px;

    mask-image: linear-gradient(
        to bottom,
        transparent,
        black 20%,
        black 80%,
        transparent
    );
}


/* container */

.yardcms-wrap {
    position: relative;
    z-index: 1;

    width: min(
        1280px,
        calc(100% - 42px)
    );

    margin: auto;
}


/* =========================================
   HEADER
========================================= */

.yardcms-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: 60px;
    align-items: end;

    margin-bottom: 45px;
}

.yardcms-eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 15px;

    color: #312170;

    font-size: 11px;
    font-weight: 850;
    letter-spacing: .12em;
}

.yardcms-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #27ae60;

    box-shadow:
        0 0 0 5px #27ae6018,
        0 0 15px #27ae6066;
}

.yardcms-heading h2 {
    max-width: 750px;

    margin: 0;

    font-size: clamp(
        42px,
        5.5vw,
        52px
    );

    line-height: .94;
    letter-spacing: -.065em;

    color: #000;
}

.yardcms-heading h2 span {
    display: block;

    -webkit-background-clip: text;
    background-clip: text;

}

.yardcms-heading > p {
    max-width: 400px;

    margin: 0;

    color: #707070;

    font-size: 15px;
    line-height: 1.75;
}


/* =========================================
   MAIN BOX
========================================= */

.yardcms-box {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(0, .9fr);

    min-height: 620px;

    overflow: hidden;

    border: 1px solid #e2e2e2;

    border-radius: 32px;

    background: #fff;

    box-shadow:
        0 35px 100px rgba(0,0,0,.08);
}


/* =========================================
   LEFT MAIN
========================================= */

.yardcms-main {
    position: relative;

    overflow: hidden;

    padding: 34px;

    color: #fff;
	background-color: #312170;
    background-image: url(../imgs/i-bg-2.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: cover;
}


/* decorative glow */

.yardcms-main::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -300px;
    bottom: -300px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(237,33,152,.35),
            transparent 68%
        );

    pointer-events: none;
}


/* top */

.yardcms-top {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.yardcms-brand {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -.04em;
}

.yardcms-brand span {
    color: #8d7bed;
}

.yardcms-live {
    display: flex;
    align-items: center;
    gap: 7px;

    padding: 7px 11px;

    border: 1px solid #ffffff15;

    border-radius: 999px;

    background: #ffffff08;

    color: #8578b9;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
}

.yardcms-live i {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #27ae60;

    box-shadow: 0 0 10px #27ae60;
}


/* content */

.yardcms-content {
    position: relative;
    z-index: 2;

    max-width: 600px;

    margin-top: 45px;
}

.yardcms-overline {
    margin-bottom: 13px;

    color: #f1f1f1;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
}

.yardcms-content h3 {
    max-width: 570px;

    margin: 0 0 18px;

    font-size: clamp(
        38px,
        4.5vw,
        57px
    );

    line-height: .97;

    letter-spacing: -.06em;
}

.yardcms-content h3 span {
    display: block;

    color: #9883e7;
}

.yardcms-description {
    max-width: 510px;

    margin: 0 0 28px;

    color: #ffffff;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================
   CHECK LIST
========================================= */

.yardcms-checks {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px 20px;

    margin-bottom: 32px;
}

.yardcms-check {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #d0d0d0;

    font-size: 11px;
}

.yardcms-check span {
    display: grid;

    flex: 0 0 20px;

    width: 20px;
    height: 20px;

    place-items: center;

    border-radius: 50%;

    background: #27ae60;

    color: #fff;

    font-size: 10px;
    font-weight: 900;

    box-shadow:
        0 5px 15px rgba(39,174,96,.25);
}

.yardcms-check strong {
    font-weight: 600;
}


/* =========================================
   BUTTONS
========================================= */

.yardcms-actions {
    display: flex;

    gap: 10px;

    flex-wrap: wrap;
}

.yardcms-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 46px;

    padding: 0 18px;

    border-radius: 12px;

    font-size: 12px;
    font-weight: 800;

    transition:
        transform .3s cubic-bezier(.2,.8,.2,1),
        box-shadow .3s ease,
        background .3s ease;
}

.yardcms-button span {
    transition: transform .3s ease;
}

.yardcms-button:hover span {
    transform: translate(3px,-2px);
}

.yardcms-button-primary {
    background: #fff;

    color: #111;

    box-shadow:
        0 10px 30px rgba(0,0,0,.15);
}

.yardcms-button-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(0,0,0,.25);
}

.yardcms-button-secondary {
    border: 1px solid #ffffff1c;

    background: #ffffff08;

    color: #fff;
}

.yardcms-button-secondary:hover {
    transform: translateY(-3px);

    background: #ffffff12;
}


/* powered */

.yardcms-footer {
	margin-top: 30px;
    text-align: center;
    display: flex;
    gap: 7px;
    color: #bcbcbc;
    font-size: 10px;
    letter-spacing: .06em;
    justify-content: center;
}

.yardcms-footer strong {
    color: #888;
}


/* =========================================
   RIGHT FEATURES
========================================= */

.yardcms-side {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 0;

    background: #fff;
}

.yardcms-side-title {
    grid-column: 1 / -1;

    display: flex;

    justify-content: space-between;
    align-items: center;

    height: 55px;

    padding: 0 25px;

    border-bottom: 1px solid #ededed;

    color: #fb148a;

    font-size: 12px;
    font-weight: 850;

    letter-spacing: .12em;
}

.yardcms-side-title small {
    color: #aaa;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: .05em;
}


/* feature */

.yardcms-feature {
    position: relative;

    min-width: 0;

    padding: 23px;

    border-bottom: 1px solid #ededed;

    transition:
        background .3s ease,
        transform .3s ease;
}

.yardcms-feature:nth-last-child(-n+2) {
    border-bottom: 0;
}

.yardcms-feature:hover {
    z-index: 2;

    background: #fafaff;
}


/* icon */

.yardcms-feature-icon {
    width: 34px;
    height: 34px;

    display: grid;

    place-items: center;

    margin-bottom: 24px;

    border-radius: 10px;

    background: #dbd0ff;
    color: #8e71ff;

    font-size: 13px;
    font-weight: 900;

    transition:
        transform .3s ease,
        background .3s ease;
}

.yardcms-feature:hover .yardcms-feature-icon {
    transform: scale(1.08) rotate(-4deg);

    background: #312170;

    color: #fff;
}

.yardcms-feature h4 {
    margin: 0 0 7px;

    color: #111;

    font-size: 14px;

    letter-spacing: -.02em;
}

.yardcms-feature p {
    margin: 0;

    color: #777;

    font-size: 11px;

    line-height: 1.6;
}


/* 24 */

.yardcms-feature-icon.yardcms-24 {
    font-size: 10px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .yardcms-heading {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .yardcms-heading > p {
        max-width: 600px;
    }

    .yardcms-box {
        grid-template-columns: 1fr;
    }

    .yardcms-main {
        min-height: 600px;
    }

}

.ext-menu{
    display: none;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 560px) {


.ext-menu{
		display: flex;
        flex-direction: column;
        gap: 20px;
}

    .yardcms {
        padding: 80px 0;
    }

    .yardcms-wrap {
        width: calc(100% - 28px);
    }

    .yardcms-heading {
        margin-bottom: 30px;
    }

    .yardcms-heading h2 {
        font-size: 42px;
    }

    .yardcms-heading > p {
        font-size: 14px;
    }

    .yardcms-box {
        border-radius: 24px;
    }

    .yardcms-main {
        min-height: 650px;

        padding: 24px;
    }

    .yardcms-content {
        margin-top: 65px;
    }

    .yardcms-content h3 {
        font-size: 38px;
    }

    .yardcms-checks {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .yardcms-actions {
        flex-direction: column;
    }

    .yardcms-button {
        width: 100%;
    }

    .yardcms-footer {
        left: 24px;
        bottom: 20px;
    }

    .yardcms-side {
        grid-template-columns: 1fr;
    }

    .yardcms-side-title {
        grid-column: 1;
    }

    .yardcms-feature {
        border-bottom: 1px solid #ededed !important;
    }

    .yardcms-feature:last-child {
        border-bottom: 0 !important;
    }

}


/* =========================
   INDUSTRIES
   ========================= */

.industries-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: #f7f7f5;
}

.industries-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    right: -300px;
    top: -250px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(115, 88, 223, .12),
        transparent 68%
    );
    pointer-events: none;
}

.industries-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 45px;
}

.industries-head h2 {
    margin: 10px 0 0;
}

.industries-head p {
    max-width: 420px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

/* Grid */

.industries-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* Card */

.industry-card {
    overflow: hidden;
    border: 1px solid #e5e5e5;
    border-radius: 26px;
    background: #fff;
    transition:
        transform .4s cubic-bezier(.2,.8,.2,1),
        box-shadow .4s ease;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0,0,0,.09);
}

/* Image */

.industry-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #eee;
}

.industry-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(0,0,0,.18)
    );
    pointer-events: none;
}

.industry-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.2,.8,.2,1);
}

.industry-card:hover .industry-image img {
    transform: scale(1.055);
}

.industry-number {
    position: absolute;
    z-index: 2;
    top: 8px;
    right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 13px;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(10px);
    color: #111;
    font-size: 11px;
    font-weight: 850;
}

/* Content */

.industry-content {
    padding: 25px;
}

.industry-content h3 {
    margin: 0 0 8px;
    font-size: 22px;
    letter-spacing: -.035em;
}

.industry-content p {
    min-height: 66px;
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.industry-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #111;
    font-size: 13px;
    font-weight: 800;
    transition: gap .3s ease;
}

.industry-link span {
    font-size: 16px;
    transition: transform .3s ease;
}

.industry-card:hover .industry-link {
    gap: 12px;
}

.industry-card:hover .industry-link span {
    transform: translate(2px, -2px);
}

/* Bottom CTA */

.industries-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 16px;
    padding: 22px 25px;
    border: 1px solid #e4e4e4;
    border-radius: 22px;
    background: #fff;
}

.industries-footer strong {
    display: block;
    margin-bottom: 3px;
    font-size: 14px;
}

.industries-footer span {
    color: var(--muted);
    font-size: 13px;
}

.industries-footer .btn {
    flex-shrink: 0;
}


/* =========================
   TABLET
   ========================= */

@media (max-width: 900px) {

    .industries-section {
        padding: 90px 0;
    }

    .industries-head {
        display: block;
    }

    .industries-head p {
        margin-top: 20px;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .industry-image {
        height: 330px;
    }
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 560px) {

    .industries-section {
        padding: 80px 0;
    }

    .industries-head h2 {
        font-size: 43px;
    }

    .industries-grid {
        display: flex;
        overflow-x: auto;
        gap: 14px;
        padding: 5px 0 18px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .industries-grid::-webkit-scrollbar {
        display: none;
    }

    .industry-card {
        flex: 0 0 86%;
        scroll-snap-align: start;
    }

    .industry-image {
        height: 250px;
    }

    .industries-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .industries-footer .btn {
        width: 100%;
    }
}


/* =========================================
   LITEIT.APP
========================================= */

h3 {
  position: relative;
  overflow: hidden;
}

.h3ttl::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.8),
    transparent
  );
  transform: skewX(-20deg);
  animation: shineh3ttl 10s linear infinite;
}

@keyframes shineh3ttl {
  0%   { left: -100%; }
  20%  { left: 150%; }
  100% { left: 150%; }
}


.liteit-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background:
        radial-gradient(circle at 85% 10%, rgba(115,88,223,.13), transparent 30%),
        radial-gradient(circle at 10% 80%, rgba(47,143,232,.08), transparent 28%),
        #f7f7f5;
}

.liteit-section:before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .45;
    background-image:
        linear-gradient(#00000008 1px, transparent 1px),
        linear-gradient(90deg, #00000008 1px, transparent 1px);
    background-size: 45px 45px;
    mask-image: linear-gradient(to bottom, black, transparent 80%);
}


/* Header */

.liteit-header {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 55px;
}

.liteit-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #6655ca;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
}

.liteit-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg,#2f8fe8,#ed2198);
    box-shadow: 0 0 0 5px #fb148a12;
}

.liteit-header h2 {
    max-width: 850px;
    margin: 16px 0 0;
    font-size: clamp(45px,6vw,52px);
    line-height: .96;
    letter-spacing: -.07em;
}

.liteit-header h2 span {
    display: block;
    -webkit-background-clip: text;
    background-clip: text;
}

.liteit-header > p {
    max-width: 450px;
    margin: 0;
    color: #707070;
    font-size: 17px;
}


/* Product */

.liteit-product {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr .92fr;
    min-height: 590px;
    overflow: hidden;
    border: 1px solid #dedee5;
    border-radius: 34px;
    background: #fff;
    box-shadow:
        0 40px 100px rgba(0,0,0,.08),
        0 5px 20px rgba(0,0,0,.04);
}

.liteit-product-main {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 42px;
}

.liteit-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.liteit-logo {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: linear-gradient(135deg,#2f8fe8,#fb148a);
    color: white;
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 10px 25px #fb148a30;
}

.liteit-brand strong {
    display: block;
    font-size: 22px;
    letter-spacing: -.05em;
}

.liteit-brand strong span {
    color: #fb148a;
}

.liteit-brand small {
    display: block;
    margin-top: 2px;
    color: #969696;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .12em;
}

.liteit-content {
    max-width: 580px;
    margin: auto 0;
    padding: 70px 0;
}

.liteit-label {
    margin-bottom: 14px;
    color: #000000;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
}

.liteit-content h3 {
    color: #2b85f8;
    margin: 0 0 20px;
    font-size: clamp(40px,4.5vw,62px);
    line-height: .95;
    letter-spacing: -.065em;
}

.liteit-content h3 span {
    color: #e31c5c;
}

.liteit-content > p {
    max-width: 520px;
    margin: 0 0 30px;
    color: #707070;
    font-size: 16px;
    line-height: 1.7;
}


/* Buttons */

.liteit-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.liteit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 19px;
    border-radius: 13px;
    font-size: 13px;
    font-weight: 850;
    transition:
        transform .3s cubic-bezier(.2,.8,.2,1),
        box-shadow .3s ease,
        background .3s ease;
}

.liteit-btn:hover {
    transform: translateY(-3px);
}

.liteit-btn-primary {
    color: #fff;
    background: #111;
    box-shadow: 0 12px 30px #0002;
}

.liteit-btn-primary:hover {
    box-shadow: 0 18px 40px #0003;
}

.liteit-btn-secondary {
    border: 1px solid #e1e1e6;
    color: #111;
    background: #fff;
}

.liteit-btn-secondary:hover {
    border-color: #bbb;
    box-shadow: 0 10px 25px #0000000d;
}

.liteit-btn-light {
    color: #111;
    background: #fff;
}

.liteit-powered {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: auto;
    color: #aaa;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
}

.liteit-powered strong {
    color: #222;
}


/* Preview */

.liteit-preview {
    position: relative;
    overflow: hidden;
    padding: 30px;
    background:
        radial-gradient(circle at 50% 20%,#fb148a35,transparent 45%),
        linear-gradient(145deg,#111328,#080912);
}

.liteit-preview:before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -250px;
    bottom: -250px;
    border-radius: 50%;
    background: radial-gradient(circle,#ed219850,transparent 65%);
}

.liteit-preview-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #777b9a;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
}

.liteit-status {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #82dfad;
}

.liteit-status i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #49d487;
    box-shadow: 0 0 0 5px #49d48718;
}


/* Browser */

.liteit-browser {
    position: absolute;
    z-index: 2;
    left: 8%;
    right: -8%;
    top: 105px;
    bottom: 35px;
    overflow: hidden;
    border: 1px solid #ffffff18;
    border-radius: 22px;
    background: #f8f8fb;
    box-shadow: 0 40px 80px #0007;
    transform: rotate(-2deg);
    transition: .6s cubic-bezier(.2,.8,.2,1);
}

.liteit-product:hover .liteit-browser {
    transform: rotate(0deg) translateY(-6px);
}

.liteit-browser-bar {
    display: flex;
    gap: 5px;
    padding: 14px 17px;
    background: #fff;
    border-bottom: 1px solid #e8e8ed;
}

.liteit-browser-bar i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d7d8df;
}

.liteit-dashboard {
    padding: 25px;
}

.liteit-dash-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.liteit-dash-head small,
.liteit-stats small {
    display: block;
    color: #999baa;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .1em;
}

.liteit-dash-head strong {
    display: block;
    margin-top: 4px;
    color: #15162b;
    font-size: 18px;
    letter-spacing: -.04em;
}

.liteit-avatar {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: linear-gradient(135deg,#2f8fe8,#fb148a);
    font-size: 12px;
    font-weight: 900;
}

.liteit-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 25px;
}

.liteit-stats > div {
    padding: 15px;
    border: 1px solid #e9e9ef;
    border-radius: 13px;
    background: #fff;
}

.liteit-stats strong {
    display: block;
    margin-top: 6px;
    color: #15162b;
    font-size: 22px;
    letter-spacing: -.05em;
}

.liteit-stats em {
    color: #28a862;
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
}

.liteit-chart {
    margin-top: 10px;
    padding: 18px;
    border: 1px solid #e9e9ef;
    border-radius: 14px;
    background: #fff;
}

.liteit-chart-head {
    display: flex;
    justify-content: space-between;
    color: #888b9b;
    font-size: 8px;
    font-weight: 900;
}

.liteit-chart-head b {
    color: #aaa;
    font-weight: 700;
}

.liteit-bars {
    height: 130px;
    display: flex;
    align-items: end;
    gap: 7px;
    margin-top: 15px;
}

.liteit-bars i {
    flex: 1;
    border-radius: 5px 5px 2px 2px;
    background: linear-gradient(to top, #2b85f8, #56a0ff);
    opacity: .85;
}


/* Floating notification */

.liteit-notification {
    position: absolute;
    z-index: 5;
    right: 30px;
    bottom: 45px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 15px;
    border: 1px solid #ffffff20;
    border-radius: 14px;
    color: white;
    background: #17192cdd;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px #0005;
    animation: liteitFloat 4s ease-in-out infinite;
}

.liteit-notification-icon {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: white;
    background: #27ae60;
    font-size: 12px;
    font-weight: 900;
}

.liteit-notification strong {
    display: block;
    font-size: 11px;
}

.liteit-notification span {
    display: block;
    margin-top: 2px;
    color: #8e91aa;
    font-size: 12px;
}

@keyframes liteitFloat {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}


/* Features */

.liteit-features-head {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr .7fr;
    gap: 80px;
    align-items: end;
    margin: 115px 0 35px;
}

.liteit-features-head h3 {
    max-width: 700px;
    margin: 10px 0 0;
    font-size: clamp(35px,4vw,54px);
    line-height: 1;
    letter-spacing: -.06em;
}

.liteit-features-head p {
    margin: 0;
    color: #707070;
    font-size: 16px;
}

.liteit-feature {
    display: flex;
    gap: 17px;
    min-height: 185px;
    padding: 25px;
    border: 1px solid #e4e4e8;
    border-radius: 20px;
    background: #fff;
    transition: .35s cubic-bezier(.2,.8,.2,1);
}

.liteit-feature:hover {
    transform: translateY(-7px);
    border-color: #d4d0ee;
    box-shadow: 0 25px 60px #0000000d;
}

.liteit-feature-icon {
    flex: 0 0 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: #4f9afa;
    background: #dbebff;
    font-size: 14px;
    font-weight: 900;
}

.liteit-feature h4 {
    margin: 0 0 7px;
    color: #151515;
    font-size: 17px;
    letter-spacing: -.025em;
}

.liteit-feature p {
    margin: 0;
    color: #777;
    font-size: 13px;
    line-height: 1.65;
}


/* Steps */

.liteit-steps {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;
    margin-top: 115px;
    padding: 70px;
    border-radius: 30px;
    color: white;
    background: #111328;
    box-shadow: 0 30px 80px #0002;
}

.liteit-steps-intro h3 {
    max-width: 420px;
    margin: 12px 0 18px;
    font-size: clamp(38px,4vw,58px);
    line-height: .95;
    letter-spacing: -.065em;
}

.liteit-steps-intro h3 span {
    color: #8dafff;
}

.liteit-steps-intro p {
    max-width: 370px;
    color: #9da1bd;
}

.liteit-step-list {
    display: grid;
}

.liteit-step {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 15px;
    padding: 23px 0;
    border-bottom: 1px solid #ffffff12;
}

.liteit-step:last-child {
    border-bottom: 0;
}

.liteit-step > span {
    color: #fb148a;
    font-size: 12px;
    font-weight: 900;
}

.liteit-step h4 {
    margin: 0 0 6px;
    font-size: 18px;
}

.liteit-step p {
    max-width: 500px;
    margin: 0;
    color: #9296b0;
    font-size: 13px;
    line-height: 1.6;
}


/* CTA */

.liteit-cta {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-top: 90px;
    padding: 55px 60px;
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(circle at 80% 20%,#fb148a55,transparent 35%),
        #111;
    color: white;
}

.liteit-cta:after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    right: -200px;
    bottom: -300px;
    border-radius: 50%;
    background: radial-gradient(circle,#ed219860,transparent 65%);
}

.liteit-cta > * {
    position: relative;
    z-index: 2;
}

.liteit-cta h3 {
    margin: 12px 0;
    font-size: clamp(38px,4vw,56px);
    line-height: .95;
    letter-spacing: -.06em;
}

.liteit-cta h3 span {
    color: #8dafff;
}

.liteit-cta p {
    margin: 0;
    color: #999db4;
}


/* Responsive */
@media (min-width: 900px) {
.liteit-feature-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
}
}
@media (max-width: 900px) {

    .liteit-header,
    .liteit-product,
    .liteit-features-head,
    .liteit-steps {
        grid-template-columns: 1fr;
    }

    .liteit-header {
        gap: 25px;
    }

    .liteit-product-main {
        min-height: 550px;
    }

    .liteit-preview {
        min-height: 560px;
    }

    .liteit-feature-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .liteit-steps {
        gap: 40px;
        padding: 45px;
    }
}

@media (max-width: 560px) {

    .liteit-section {
        padding: 80px 0;
    }

    .liteit-header h2 {
        font-size: 45px;
    }

    .liteit-product {
        border-radius: 24px;
    }

    .liteit-product-main {
        padding: 28px;
        min-height: 600px;
    }

    .liteit-content {
        padding: 55px 0;
    }

    .liteit-content h3 {
        font-size: 43px;
    }

    .liteit-preview {
        min-height: 470px;
        padding: 20px;
    }

    .liteit-browser {
        left: 4%;
        right: -18%;
        top: 85px;
    }

    .liteit-dashboard {
        padding: 17px;
    }

    .liteit-notification {
        right: 18px;
        bottom: 25px;
    }

    .liteit-features-head {
        margin-top: 80px;
    }

    .liteit-steps {
        margin-top: 80px;
        padding: 30px;
        border-radius: 22px;
    }

    .liteit-cta {
        display: block;
        margin-top: 70px;
        padding: 38px 30px;
    }

    .liteit-cta .liteit-btn {
        margin-top: 25px;
    }

}


/* =========================================
   SITE FOOTER
========================================= */

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 90px 0 30px;
    background: #121212;
    color: #fff;
}


/* subtle background glow */

.site-footer::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    right: -350px;
    top: -400px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(115,88,223,.14),
        transparent 68%
    );
    pointer-events: none;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}


/* =========================================
   MAIN
========================================= */

.site-footer-main {
    display: grid;
    grid-template-columns: 1.7fr repeat(4, 1fr);
    gap: 60px;
    padding-bottom: 75px;
}


/* =========================================
   BRAND
========================================= */

.site-footer-brand {
    max-width: 360px;
}

.site-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.site-footer-logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.site-footer-logo span {
    font-size: 27px;
    font-weight: 600;
    letter-spacing: -.05em;
}

.site-footer-brand p {
    max-width: 330px;
    margin: 22px 0 25px;
    color: #858585;
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================
   SOCIALS
========================================= */

.site-footer-socials {
    display: flex;
    gap: 8px;
}

.site-footer-socials a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #aaa;
    font-size: 11px;
    font-weight: 800;
    transition:
        color .25s ease,
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.site-footer-socials a:hover {
    color: #fff;
    transform: translateY(-3px);
}

.site-footer-socials a:not(.trustpilot){
    background: #ffffff05;
    border: 1px solid #ffffff18;
    border-radius: 11px;
}

.site-footer-socials a:not(.trustpilot):hover{
    border-color: #fb148a;
    background: #fb148a;
}


/* =========================================
   COLUMNS
========================================= */

.site-footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-footer-column h4 {
    margin: 5px 0 22px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.site-footer-column > a,
.site-footer-column > span {
    margin-bottom: 12px;
    color: #777;
    font-size: 13px;
    line-height: 1.5;
    transition:
        color .25s ease,
        transform .25s ease;
}

.site-footer-column > a:hover {
    color: #fff;
    transform: translateX(3px);
}


/* =========================================
   CONTACT
========================================= */

.site-footer-contact > a:first-of-type {
    color: #fff;
}

.site-footer-contact > a:first-of-type:hover {
    color: #9b89ff;
}

.site-footer-contact > span {
    color: #777;
}


/* CTA */

.site-footer-cta {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    margin-bottom: 0 !important;
    padding: 11px 14px;
    border: 1px solid #ffffff18;
    border-radius: 10px;
    color: #fff !important;
    background: #ffffff08;
    font-weight: 700;
}

.site-footer-cta span {
    transition: transform .25s ease;
}

.site-footer-cta:hover {
    border-color: #fb148a;
    background: #fb148a;
    transform: translateY(-2px) !important;
}

.site-footer-cta:hover span {
    transform: translate(2px, -2px);
}


/* =========================================
   BOTTOM
========================================= */

.site-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 24px;
    border-top: 1px solid #ffffff0d;
    color: #555;
    font-size: 11px;
}

.site-footer-legal {
    display: flex;
    gap: 22px;
}

.site-footer-legal a {
    color: #555;
    transition: color .25s ease;
}

.site-footer-legal a:hover {
    color: #fff;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .site-footer-main {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 45px;
    }

    .site-footer-brand {
        grid-column: 1 / -1;
        max-width: 500px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 560px) {

    .site-footer {
        padding: 70px 0 25px;
    }

    .site-footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 45px 25px;
        padding-bottom: 55px;
    }

    .site-footer-brand {
        grid-column: 1 / -1;
    }

    .site-footer-column h4 {
        margin-bottom: 17px;
    }

    .site-footer-column > a,
    .site-footer-column > span {
        font-size: 12px;
    }

    .site-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .site-footer-legal {
        gap: 18px;
    }

}
