/* ========== FONTS ========== */

@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap");

.rajdhani-light {
    font-family: "Rajdhani", sans-serif;
    font-weight: 300;
    font-style: normal;
}
/* ========== TOKENS ========== */
:root {
    --ltk-rajdhani-font: "Rajdhani";

    --ltk-font-size-62px: clamp(2.2rem, 4.2vw, 3.4rem);
    --ltk-font-size-48px: clamp(1.875rem, 2.7vw, 3rem);
    --ltk-font-size-30px: clamp(1.45rem, 2.3vw, 1.875rem);
    --ltk-font-size-24px: clamp(1.15rem, 1.6vw, 1.5rem);
    --ltk-font-size-20px: clamp(1.05rem, 1.5vw, 1.25rem);
    --ltk-font-size-18px: clamp(0.95rem, 1.4vw, 1.07rem);
    --ltk-font-size-16px: 0.95rem;

    --bg: #0f0f14;
    --bg-2: #14141c;
    --surface: #1a1a22;
    --border: rgba(255, 255, 255, 0.06);
    --border-strong: rgba(255, 255, 255, 0.12);
    --text: #d9d9d9;
    --muted: #8c8c95;
    --accent: #f7d14e;
    --accent-soft: rgba(247, 209, 78, 0.15);
    --blue: #0c5cff;
    --blue-hi: #4a90ff;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* ========== BASE ========== */
.ltk-page {
    color: var(--text);
    background-color: var(--bg);
    font-family: "Inter", system-ui, sans-serif;
    font-size: var(--ltk-font-size-16px);
    background-image:
        radial-gradient(
            1200px 600px at 20% -10%,
            rgba(247, 209, 78, 0.06),
            transparent 60%
        ),
        radial-gradient(
            900px 500px at 100% 10%,
            rgba(47, 123, 255, 0.07),
            transparent 60%
        ),
        linear-gradient(180deg, #0c0c11 0%, #0f0f14 100%);
    background-attachment: fixed;
    min-height: 100vh;
}
.ltk-page::before {
    /* content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    z-index: 0; */
}
main,
section,
nav,
footer {
    position: relative;
    z-index: 1;
}

h1 {
    color: #d1d5db;
    font-size: var(--ltk-font-size-62px);
    font-weight: 700;
    letter-spacing: -3px;
    line-height: 1.2;
    /* font-family: var(--ltk-rajdhani-font), serif; */
    /* text-transform: uppercase; */
}

.ltk-page h2 {
    font-size: var(--ltk-font-size-48px);
    font-weight: 700;
    color: rgba(245, 158, 11, 1);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    line-height: 1.1;
    font-family: var(--ltk-rajdhani-font), serif;
}
.ltk-page .white-text {
    color: rgba(232, 232, 236, 1) !important;
}
.ltk-page h3,
.ltk-page .feature-h3 {
    font-family: var(--ltk-rajdhani-font), serif;
    font-size: var(--ltk-font-size-30px);
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: 0.005em;
}
.ltk-page h4 {
    font-size: var(--ltk-font-size-24px);
    color: rgba(245, 158, 11, 1);
    font-family: var(--ltk-rajdhani-font), serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-weight: 600;
}
.ltk-page h6 {
    font-family: var(--ltk-rajdhani-font), serif;
    font-weight: 600;
}
.ltk-page p {
    font-size: var(--ltk-font-size-20px);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.55;
}
.ltk-page .ltk-white-sub {
    font-family: "Inter", system-ui, sans-serif;
    color: #585866;
    font-size: var(--ltk-font-size-20px);
}
.opacity-8 {
    opacity: 0.8;
}
strong {
    color: rgba(255, 255, 255, 0.6) !important;
}

.hero-text {
    /* background: linear-gradient(50.19deg, #e77e00 3.79%, #ffaa43 96.21%); */
    background: linear-gradient(90deg, #f49f03 0%, #fa5702 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* ========== BUTTONS ========== */
.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.3rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: var(--ltk-font-size-18px);
    font-family: var(--ltk-rajdhani-font), serif;
    text-decoration: none;
    border: 1px solid transparent;
    transition:
        transform 0.15s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
    white-space: nowrap;
}
.btn-primary-cta {
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--blue);
    color: #fff;
    box-shadow: 0 8px 24px -10px rgba(47, 123, 255, 0.6);
}
.btn-primary-cta:hover {
    background: #0c5cff;
    color: #fff;
    transform: translateY(-1px);
}
.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: var(--border-strong);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}
/* .btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
  padding: 0.45rem 1rem;
} */
/* .btn-outline:hover { background: var(--blue); color: #fff; border-color: var(--blue); } */

/* ========== HERO ========== */
.ltk-hero-section {
    /* padding-top: 3rem; */
    background-image: url(../assets/images/l2k/ltk-hero-bg.webp);
    background-size: cover;
}
.ltk-hero-logo img {
    width: clamp(130px, 18vw, 250px);
}
.ltk-hero-badge {
    font-family: var(--ltk-rajdhani-font), serif;
    letter-spacing: 2.2px;
    font-size: var(--ltk-font-size-20px);
    color: #f59e0b;
}
.ltk-line {
    content: "";
    /* position: absolute; */
    width: 30px;
    height: 1px;
    /* left: -38px;
    top: 50%;
    transform: translateY(-50%); */
    background-color: #f59e0b;
}
.hero-visual {
    position: relative;
    rotate: -1.4deg;
    /* border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #181822, #0e0e15);
  border: 1px solid var(--border);
  aspect-ratio: 16 / 10;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.7), 0 0 0 1px var(--border); */
}
.hero-img {
    filter: drop-shadow(0px 7px 18px rgba(245, 158, 11, 0.25));
    /* box-shadow: ; */
}
.hero-visual::after {
    content: "";
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 18rem;
    top: -23%;
    left: -30%;
    z-index: -1;
    background: radial-gradient(
        70% 81% at 50% 50%,
        #e7b13e73 0%,
        #00000000 65%
    );
}
.hero-visual::before {
    content: "";
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 18rem;
    bottom: -23%;
    right: -23%;
    z-index: -1;
    background: radial-gradient(
        70% 81% at 50% 50%,
        #f156038f 0%,
        #00000000 65%
    );
}
.hero-img,
.demo-img,
.feature-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.hero-play {
    position: absolute;
    inset: 0;
    top: 50%;
    left: 50%;
    /* transform: translate(-50%, -50%); */
    width: clamp(46px, 5.1vw, 76px);
    height: clamp(46px, 5.1vw, 76px);
    border-radius: 50%;
    border: none;
    background: var(--blue);
    color: #fff;
    font-size: clamp(1rem, 2vw, 1.4rem);
    cursor: pointer;

    box-shadow: 0 0 12px #2f7bff;
    transition: transform 0.2s ease;
}
/* .hero-play:hover { transform: scale(1.06); } */
/* .hero-play-lg { width: 96px; height: 96px; font-size: 1.7rem; } */

.compat-list {
    color: var(--muted);
    font-size: 0.85rem;
}
.compat-list li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.compat-list .compat-tag {
    background-color: #ffffff08;
    border: 1px solid #ffffff0f;
    padding: 8px 12px;
    line-height: 1;
    border-radius: 4px;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}
.compat-list i {
    color: #e7b13e;
}

/* ========== STICKY BUY ========== */

/* ========== DEMO BLOCK ========== */
.hear-it-section {
    background-image: url(../assets/images/l2k/heart-it-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    /* padding: 5rem 0; */
    position: relative;
}
.hear-it-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5rem;
    background-image: linear-gradient(0deg, #00000091, #2f2f2f00);
}
.demo-visual {
    position: relative;
    width: min(900px, 100%);

    margin: auto;
    /* border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #161620, #0c0c12);
  border: 1px solid var(--border);
  aspect-ratio: 16 / 8;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.7); */
}
.demo-cap {
    font-family: var(--ltk-rajdhani-font), serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #fff;
}
/* ========== LEARN LINK ========== */
.loop-section {
    background-image: url(../assets/images/l2k/loop-bg.webp);
    background-size: cover;
    background-position: center;
}
.loop-section p {
    font-size: var(--ltk-font-size-20px);
}
.loop-section strong {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* ========== LEARN LINK ========== */
/* .learn-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
}
.learn-link:hover {
    color: #fff;
} */

/* ========== FEATURE IMG ========== */
.features-section {
    background-image: url(../assets/images/l2k/featured-bg-svg.webp);
    background-size: contain;
    box-shadow: 0px -20px 31.7px 0px #00000026 inset;
}
.features-section p {
    font-size: var(--ltk-font-size-20px);
}
.features-section .ltk-hero-badge {
    font-size: var(--ltk-font-size-20px);
    letter-spacing: 1px;
}
.features-section .feature-img {
    text-align: center;
    padding: 3rem 5rem;
    /* background-image: url(../assets/images/l2k/f01-start-bg.webp); */
    /* background-image: url(../assets/images/l2k/feature-img-bg.webp); */
    background-size: cover;
    background-position: center;
}
.feature-one .feature-img {
    background-image: url(../assets/images/l2k/f01-start-bg.webp);
    background-size: cover;
    background-position: center;
}
.feature-img img {
    width: 100%;
    margin: auto;
    /* rotate: -1.52deg; */
    /* filter: drop-shadow(-8px -20px 32px #d9a62a0a); */
}

.feature-one {
}
.feature-two .feature-img {
    background-image: unset;
    position: relative;
}

.feature-two .feature-img::after {
    content: "";
    position: absolute;
    width: 53%;
    height: 10rem;
    top: 4%;
    left: -11%;
    background: radial-gradient(
        52% 67% at 50% 50%,
        #e7b13e2e 0%,
        #00000000 65%
    );
}
.feature-two .feature-img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 18rem;
    bottom: 0%;
    right: -14%;
    z-index: -1;
    background: radial-gradient(
        52% 67% at 50% 50%,
        #e7b13e21 0%,
        #00000000 65%
    );
}
.feature-three .feature-img img {
    /* rotate: 1.52deg; */
    /* filter: drop-shadow(-8px -12px 22px #0b0b0899)
        drop-shadow(8px 20px 32px #0b0b08c3); */
}

/* ========== FEATURE CARDS ========== */
.feature-card {
    background: #ffffff06;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}
.feature-card {
    background: radial-gradient(25% 70% at 0% 0%, #e7b13e14 0%, #fae6bc08 70%);
}
.feature-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-strong);
}
.fc-icon {
    width: 43px;
    height: 43px;
    /* border-radius: 8px;
    background: var(--accent-soft);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem; */
}
.fc-icon img {
    width: 100%;
    height: 100%;
}
.feature-card p {
    letter-spacing: -0.6px;
    font-size: var(--ltk-font-size-20px);
    /* color: var(--muted); */
}
.feature-line {
    height: 1px;
    width: 50%;
    background: linear-gradient(
        90deg,
        rgba(231, 177, 62, 0.19) 0%,
        rgba(0, 0, 0, 0) 70%
    );
}
/* producer-section */
.producer-section {
    background: #0f0f14;
    box-shadow: 0px -12px 9.7px 0px rgba(0, 0, 0, 0.25) inset;
}

/* ========== TESTIMONIAL ========== */
.testi-container {
    background-image: url("../assets/images/l2k/testimonials-bg.webp");
    background-size: contain;
    background-position: center;
}
.testi-container {
    width: min(1200px, 90%);
    margin: auto;
}
.atlas-testi-box {
    background: #1818185d;
    border-radius: 1rem;
    border: 2px solid #ffffff14;
    gap: 2rem;
    overflow: hidden;
    align-items: center;
    width: min(1000px, 100%);
    margin: auto;

    background: radial-gradient(
        29% 82% at 40% 72%,
        rgb(231 177 62 / 23%) 2%,
        rgba(0, 0, 0, 0) 90%
    );
}

.atlas-testi-box img {
    width: min(300px, 40%);
}
.atlas-testi-box p {
    color: #a3a3a3;
    font-size: var(--ltk-font-size-18px);
}
.atlas-testi-box h4 {
    color: #ffd829 !important;
    font-size: var(--ltk-font-size-24px);
    margin-bottom: 0;
}
.tlk-arrow-box {
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}
.tlk-arrow-next:after,
.tlk-arrow-prev:after {
    font-size: 20px;
    color: #a3a3a3;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: 150ms linear all;
}

.tlk-arrow-next:after {
    content: "\f105";
}
.tlk-arrow-prev:after {
    content: "\f053";
}
.tlk-arrow-prev {
    /* left: -20px; */
}
.tlk-arrow-next {
    /* right: -20px; */
}
.tlk-arrow-prev,
.tlk-arrow-next {
    height: fit-content;
    padding: 14px 24px;
    /* border-radius: 50%; */
    border: 2px solid #ffffff14;
    background: #15171c;
    color: rgba(96, 96, 112, 1);
    transition: 150ms linear all;
    border-radius: 8px;
}
.tlk-arrow-prev:hover,
.tlk-arrow-next:hover {
    background-color: #33343894 !important;
}
.tlk-arrow-prev:hover::after,
.tlk-arrow-next:hover::after {
    color: #ffffffe7;
}

.swiper-pagination {
    bottom: -40px !important;
}

.swiper-pagination-bullet {
    width: 0px;
    height: 0px;
    padding: 4px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.685) !important;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    padding: 4px 14px;
    background: rgba(245, 158, 11, 1) !important;
}

/* ========== PRICING ========== */
.intro-offer-section {
    background-image: url(../assets/images/l2k/cta-bg.webp);
    background-size: cover;
    background-position: center;
}
.intro-offer-section p {
    font-size: var(--ltk-font-size-20px);
}
.intro-img {
    position: relative;
}
.intro-img img {
    rotate: -1.5deg;
    filter: drop-shadow(0px 7px 18px rgba(245, 159, 11, 0.112));
}
.intro-img::after {
    content: "";
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 18rem;
    top: -25%;
    left: 0%;
    z-index: -1;
    background: radial-gradient(
        86% 88% at 50% 50%,
        #efab1b14 0%,
        #00000000 60%
    );
}
/* .intro-img::before {
    content: "";
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 18rem;
    bottom: -19%;
    right: -20%;
    z-index: -1;
    background: radial-gradient(
        85% 72% at 50% 50%,
        #efab1b26 0%,
        #00000000 60%
    );
} */
.intro-card {
    border-radius: 1rem;
    font-family: var(--ltk-rajdhani-font), serif;
    border: 1px solid rgba(231, 177, 62, 0.18);
    background-color: rgba(12, 12, 18, 0.95);
    padding: 1.75rem 2rem 2rem 2rem;
    width: min(390px, 100%);
    box-shadow: 0px 4px 10px 8px #0000004a;
}
.intro-card .ltk-hero-badge {
    font-size: var(--ltk-font-size-20px);
    color: #f59e0b;
}

.intro-price {
    font-size: calc(var(--ltk-font-size-62px) - 10px);
    font-weight: 700;
}
span.offer-badge {
    background-color: #f59e0b;
    padding: 6px 8px 4px 12px;
    border-radius: 4px;
    color: #000;
    font-weight: 700;
    display: block;
    line-height: 1;
}
.disount-price {
    font-family: var(--ltk-rajdhani-font), serif;
    font-size: var(--ltk-font-size-20px);
}
/* ========== COMPAT ========== */
.compat-section {
    background-color: rgba(11, 11, 15, 1);
}
.system-box {
    border: 1px solid rgba(26, 26, 34, 1);
    border-radius: 10px;
}
.system-box h2 {
    font-size: var(--ltk-font-size-20px);
    border-bottom: 1px solid rgba(26, 26, 34, 1);
    letter-spacing: 2.34px;
}
.compat-card {
    flex: 1;
    padding: 1.5rem;
    border-right: 1px solid rgba(26, 26, 34, 1);
}
.system-box .compat-card:last-child {
    border-right: unset;
    border-bottom: unset;
}
.compat-card h6 {
    letter-spacing: 1.5px;
    font-weight: 700;
    text-transform: uppercase;
}

.compat-card ul li {
    padding: 4px 0;
    color: var(--muted);
}
.compat-card ul {
    list-style: none;
}

.compat-card ul li::before {
    content: "›";
    color: #d9a62a70;
    font-size: 18px;
    margin-right: 10px;
}

/* ========== FAQ ========== */
#faq {
    background-color: rgba(5, 5, 8, 1);
}

/* ========== IMG MISSING FALLBACK ========== */
.img-missing,
img.img-missing {
    background:
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.02) 0 10px,
            rgba(255, 255, 255, 0.04) 10px 20px
        ),
        linear-gradient(135deg, #181822, #0e0e15);
    display: block;
    position: relative;
}
img.img-missing {
    min-height: 220px;
}
img.img-missing::after,
.img-missing::after {
    content: "image placeholder";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Section */
.faq-section {
    background: #020308;
}

/* .faq-title{
    color:#e7e9ef;
    font-size:clamp(2rem,4vw,3.5rem);
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
    margin-bottom:0;
} */

/* Accordion */
.faq-accordion {
    max-width: 820px;
    margin-inline: auto;
}

.faq-accordion .accordion-item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #1a1d24;
}

.faq-accordion .accordion-button {
    position: relative;
    background: transparent;
    color: rgba(152, 152, 168, 1);
    box-shadow: none;
    padding: 1.5rem 3rem 1.5rem 0;
    font-size: 1.05rem;
    font-weight: 600;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: transparent;
    color: #fff;
}

/* Remove Bootstrap arrow */
.faq-accordion .accordion-button::after {
    display: none;
}

/* Custom icon */
.faq-accordion .accordion-button::before {
    content: "\2b";
    font-family: "Font Awesome 6 Free";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    border: 1px solid rgba(179, 175, 166, 0.35);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* color:#d9a62a; */
    font-size: 14px;
    line-height: 1;
    transition: 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::before {
    color: #d9a62a;
    border: 1px solid rgba(217, 166, 42, 0.35);
    transform: translateY(-50%) rotate(45deg);
}

/* Body */
.faq-accordion .accordion-body {
    color: #6f7485;
    font-size: 0.95rem;
    line-height: 1.9;
    padding: 0 3rem 1.5rem 0;
}

/* Hover */
.faq-accordion .accordion-button:hover {
    color: #fff;
}

/* Mobile */

/* Teaser */

#teaser-section {
    position: relative;
    background-color: #3f3f3f !important;
    height: clamp(95px, 29vw, 31vw) !important;
}

#teaser-video {
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: -1;
    opacity: 0.5;
}

#watch-teaser-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: calc(var(--title-f-size) * 0.8);
    border: var(--border-thickness) solid #fff;
    border-radius: 50px;
    padding: calc(var(--title-f-size) * 2) calc(var(--title-f-size) * 2.4);
    box-shadow: 0 4px 4px 0 rgb(31 31 31 / 0.25);
    z-index: 1;
}

#watch-teaser-btn > p {
    color: #f8f3ff;
    text-align: center;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
}

#teaser-video-popup {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(0 0 0 / 0.8);
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

#teaser-video-popup > iframe {
    aspect-ratio: 16/9;
    border: 7px solid #fff;
    width: 80vw;
}

#close-popup {
    position: absolute;
    top: 5vh;
    right: 5vw;
    cursor: pointer;
}

.popup-disable {
    display: none;
    visibility: hidden;
}

.popup-enable {
    display: block;
    visibility: visible;
}
.ltk-divider {
    position: relative;
    width: 40px;
    height: 2px;
    background: #d9a62a;
}

.ltk-divider::before {
    content: "";
    position: absolute;
    right: -18px;
    top: 50%;
    width: 10px;
    height: 10px;
    background: #d9a62a;
    border-radius: 50%;
    transform: translateY(-50%);
}

.ltk-divider::after {
    content: "";
    position: absolute;
    right: -36px;
    top: 50%;
    width: 6px;
    height: 2px;
    background: rgba(217, 166, 42, 0.35);
    transform: translateY(-50%);
}

/* ========== RESPONSIVE TWEAKS ========== */
@media (max-width: 1200px) {
    .container {
        width: 90% !important;
        max-width: unset;
    }
    .tlk-arrow-box {
        width: 300px;
        top: unset;
        bottom: -35px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 100;
    }
    .atlas-testi-box {
        /* padding: 0 2rem 0 2rem; */
    }
    .testi-container {
        padding-bottom: 4rem !important;
    }
    .tlk-arrow-prev,
    .tlk-arrow-next {
        padding: 10px 20px;
    }
}

@media (max-width: 992px) {
    .features-section .feature-img {
        text-align: center;
        padding: 2rem 0rem;
    }
}

@media (max-width: 768px) {
    .container {
        width: 95% !important;
    }
    img {
        rotate: unset !important;
    }
    /* .faq-title{
        letter-spacing:.08em;
        font-size:2rem;
    } */

    .faq-accordion .accordion-button {
        font-size: 0.95rem;
        padding-right: 2.5rem;
    }

    .faq-accordion .accordion-body {
        padding-right: 2.5rem;
    }

    .features-section .feature-img {
        padding: 0;
    }
    .intro-card {
        margin: auto;
    }
    .ltk-divider {
        width: 25px;
    }
    .ltk-divider::before {
        right: -14px;
        width: 7px;
        height: 7px;
    }
    .ltk-divider::after {
        right: -26px;
    }
    .atlas-testi-box {
        flex-direction: column;
        padding: 1rem;
        gap: 1.25rem;
        width: 360px;
    }
    .compat-card {
        border-right: unset;
        border-bottom: 1px solid rgba(26, 26, 34, 1);
    }
}

@media (max-width: 576px) {
    .ltk-hero-section .hero-btn {
        width: 250px;
        flex: 1;
    }
    .float-buy-div .yellow_sal {
    font-size: 12px;
}
.feature-two .feature-img::after {
    width: 60%;
    height: 10rem;
    top: 11%;
    left: -15%;
    z-index: 0;
    background: radial-gradient(52% 67% at 50% 50%, #e7b13e2e 0%, #00000000 65%);
}
}

/*  */
/* .float-buy-div h3 {
    margin-bottom: 0.5rem;
    color: #000000;
} */
.float-buy-div {
    background: rgba(245, 158, 11, 1);
    position: sticky;
    top: 0;
    z-index: 20;
    /* height: 65px; */
    /* margin-top: -65px; */
}
.float-buy-div h3 {
    color: #2f2f2f;
    font-size: var(--ltk-font-size-24px);
    letter-spacing: 3px;
}
.float-buy-div .yellow_sal {
    font-weight: 700;
    color: #2f2f2fb8;
}
.timer-line {
    height: 32px;
    width: 1.4px;
    background-color: #2f2f2f38;
}

.float-buy-div .sale_timer {
    font-size: var(--ltk-font-size-18px);
    font-weight: 700;
}
.float-buy-div .fw-semibold {
    font-family: "inter";
}
.float-buy-div span {
    font-family: var(--ltk-rajdhani-font), serif;
    font-size: 0.9rem;
    line-height: 1em;
    /* font-family: Inter, sans-serif; */
    /* font-size: calc(var(--ltk-font-size-24px) + 4px); */
    /* font-weight: 700; */
    font-weight: 400;
    color: #2f2f2f;
}

.product-price {
    font-size: var(--ltk-font-size-30px) !important;
    font-weight: 700 !important;
}
.product-slash-price {
    font-size: var(--ltk-font-size-20px);
    color: #404040;
    font-weight: 500;
}
@media (max-width: 768px) {
      .ltk-hero-badge{
        letter-spacing: 1.5px;
                text-wrap-style: pretty;
    }
    .feature-img,
    .hero-visual {
        width: min(450px, 90%);
        margin: auto;
    }
  
    .hero-visual::after {
        width: 60%;
        height: 9rem;
        top: -26%;
        left: -16%;
        background: radial-gradient(
            70% 81% at 50% 50%,
            #e7b13e21 0%,
            #00000000 65%
        );
    }
    .hero-visual::before {
        
        width: 85%;
        height: 11rem;
        bottom: -33%;
        right: -19%;
   
        background: radial-gradient(
            70% 81% at 50% 50%,
            #f1560338 0%,
            #00000000 65%
        );
    }
    .loop-section{
        background-image: unset;
    }
}
