/* ==========================================================================
   FISSION MONSTER CUSTOM CSS - FULLY RESPONSIVE MASTER FILE
   ========================================================================== */
/* --------------------------------------------------------------------------
   6. FM HEADER — ADAPTIVE COLOR + SHRINK + ROUNDED PILL
   -------------------------------------------------------------------------- */
.fm-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 38px 10px;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-28px);
    transition:
        opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
        padding 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.fm-header.header-loaded {
    opacity: 1;
    transform: translateY(0);
}

.fm-header-inner {
    display: flex;
    width: 100%;
    align-items: center;
    padding-left: 420px;
    pointer-events: none;
    position: relative;
    border-radius: 0;
    background: transparent;
    border: 1px solid transparent;
    transition:
        background 0.45s cubic-bezier(0.25, 1, 0.5, 1),
        border-color 0.45s cubic-bezier(0.25, 1, 0.5, 1),
        border-radius 0.45s cubic-bezier(0.25, 1, 0.5, 1),
        padding 0.45s cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 0.45s cubic-bezier(0.25, 1, 0.5, 1),
        backdrop-filter 0.45s ease,
        -webkit-backdrop-filter 0.45s ease;
}

.header-actions {
    margin-left: auto;
}

/* Scrolled: shrink into a pill */
.fm-header.scrolled .fm-header-inner {
    border-radius: 50px;
    background: rgba(12, 12, 12, 0.82);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow:
        0 4px 32px rgba(0, 0, 0, 0.55),
        0 1px 0 rgba(255, 255, 255, 0.05) inset;
    padding: 10px 22px 10px 22px;
}

/* .fm-header.scrolled {
    padding: 16px 20px 16px 16px;
    padding-left: calc(50vw - 580px);
} */

.fm-scroll-line {
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );
    border-radius: 1px;
    transition:
        width 0.1s linear,
        opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
}

.fm-header.scrolled .fm-scroll-line {
    opacity: 1;
}

/* Light Theme Overrides */
.fm-header.theme-light .fm-header-inner {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.fm-header.scrolled.theme-light .fm-header-inner {
    background: rgba(12, 12, 12, 0.82);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow:
        0 4px 32px rgba(0, 0, 0, 0.55),
        0 1px 0 rgba(255, 255, 255, 0.05) inset;
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.fm-header.theme-light .fm-scroll-line {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 0, 0, 0.3),
        transparent
    );
    color: white !important;
}

/* Nav Links */
.fm-nav {
    display: flex;
    width: 100%;
    gap: 40px;
    align-items: center;
    pointer-events: auto;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.fm-nav a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-family: "SF Mono", monospace, sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    position: relative;
    opacity: 0;
    transform: translateY(-8px);
    animation: fm-link-drop 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-play-state: paused;
    transition: color 0.3s ease;
}

.fm-header.header-loaded .fm-nav a:nth-child(1) {
    animation-delay: 0.15s;
    animation-play-state: running;
}

.fm-header.header-loaded .fm-nav a:nth-child(2) {
    animation-delay: 0.25s;
    animation-play-state: running;
}

.fm-header.header-loaded .fm-nav a:nth-child(3) {
    animation-delay: 0.35s;
    animation-play-state: running;
}

.fm-header.header-loaded .fm-nav a:nth-child(4) {
    animation-delay: 0.45s;
    animation-play-state: running;
}

.fm-header.header-loaded .fm-nav a:nth-child(5) {
    animation-delay: 0.55s;
    animation-play-state: running;
}

.fm-header.header-loaded .fm-nav a:nth-child(6) {
    animation-delay: 0.65s;
    animation-play-state: running;
}

.fm-header.header-loaded .fm-nav a:nth-child(7) {
    animation-delay: 0.75s;
    animation-play-state: running;
}

@keyframes fm-link-drop {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fm-nav a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 1px;
    background: #287dc2;
    transform: translateX(-50%);
    transition: width 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.fm-nav a:hover {
    color: #fff;
}

.fm-nav a:hover::after {
    width: 100%;
}

.fm-nav a.fm-active {
    color: #fff;
}

.fm-nav a.fm-active::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #287dc2;
}

/* Light theme Nav Links overrides */
.fm-header.theme-light .fm-nav a {
    color: rgba(255, 255, 255, 0.6);
}

.fm-header.theme-light .fm-nav a:hover {
    color: #080808;
}

.fm-header.theme-light .fm-nav a::after {
    background: #080808;
}

.fm-header.theme-light .fm-nav a.fm-active {
    color: #080808;
}

.fm-header.theme-light .fm-nav a.fm-active::before {
    background: #080808;
}

/* Book Now Button */
.fm-nav a.fm-contact-btn {
    position: relative;
    /* overflow: hidden; */
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 11px 26px;
    border-radius: 30px;
    color: #ffffff;
    margin-left: 0;
    transition:
        color 0.32s ease,
        border-color 0.32s ease,
        box-shadow 0.35s ease,
        background 0.32s ease,
        transform 0.18s ease;
}

.fm-nav a.fm-contact-btn .btn-fill {
    position: absolute;
    inset: 0;
    background: #ffffff;
    border-radius: 30px;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.38s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 0;
    /* CHANGE THIS FROM 1111 TO 0 */
}

.fm-nav a.fm-contact-btn .btn-label {
    position: relative;
    z-index: 2;
    /* CHANGE THIS FROM 1 TO 2 */
    transition: color 0.32s ease;
    /* Optional: Ensure pointer events don't get trapped */
    pointer-events: none;
}

.fm-nav a.fm-contact-btn:hover .btn-fill {
    transform: scaleX(1);
    transform-origin: left center;
}

.fm-nav a.fm-contact-btn:hover .btn-label {
    color: #080808;
}

.fm-contact-btn:hover {
    color: #000000 !important;
}

.fm-nav a.fm-contact-btn:hover {
    border-color: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
    color: #000000 !important;
}

.fm-nav a.fm-contact-btn:active {
    transform: scale(0.97);
}

.fm-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(40, 125, 194, 0.3);
    transform: scale(0);
    animation: fm-ripple 0.6s ease-out forwards;
    pointer-events: none;
    z-index: 0;
}

@keyframes fm-ripple {
    to {
        transform: scale(5);
        opacity: 0;
    }
}

.fm-header.theme-light .fm-nav a.fm-contact-btn {
    border-color: rgba(255, 255, 255, 0.7);
    color: #ffffff;
}

.fm-header.theme-light .fm-nav a.fm-contact-btn .btn-fill {
    background: #ffffff !important;
    color: #000000 !important;
}

.fm-header.theme-light .fm-nav a.fm-contact-btn:hover .btn-label {
    color: #000000 !important;
    border-color: white !important;
}

.fm-header.theme-light .fm-nav a.fm-contact-btn:hover {
    border-color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
}

/* Hides the header when it reaches the footer */
.fm-header.fm-hide-in-footer {
    transform: translateY(-150%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Hamburger */
.fm-hamburger {
    display: none;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 10px 12px;
    z-index: 10000;
    pointer-events: auto;
    transition:
        border-color 0.3s ease,
        background 0.3s ease;
}

.fm-hamburger:hover {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.05);
}

.fm-hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #fff;
    border-radius: 2px;
    transition:
        transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.25s ease,
        background 0.3s ease,
        width 0.3s ease;
}

.fm-hamburger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
    background: #287dc2;
}

.fm-hamburger.open span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.fm-hamburger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
    background: #287dc2;
}

.fm-header.theme-light .fm-hamburger {
    border-color: rgba(8, 8, 8, 0.25);
}

.fm-header.theme-light .fm-hamburger span {
    background: #080808;
}

.fm-header.theme-light .fm-hamburger:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* --------------------------------------------------------------------------
   2. HEADER & LOGOS
   -------------------------------------------------------------------------- */
.custom-logo {
    max-height: 35px;
    width: auto;
    display: block;
    position: relative;
    z-index: 50;
}

/* --------------------------------------------------------------------------
   1. UTILITY CLASSES & GENERAL TWEAKS
   -------------------------------------------------------------------------- */
.top-padding {
    padding-top: 0 !important;
    margin-top: -102px;
}

.zero-bottom-margin {
    margin-bottom: 0;
}

.project-goals {
    margin-bottom: 40px;
}

.hidden_input_custom {
    display: none;
}

.video_border video {
    display: block;
}

.project-details .details img {
    margin-bottom: 40px;
}

.inner-section .title.smaller-font-size {
    font-size: 55px;
}

.pre-title__label {
    overflow: visible;
}

.ar-div-block {
    width: 80px;
    height: 65px;
}

/* Form Error Messages */
.custom-error-message {
    position: absolute;
    font-size: 10px;
    color: #ff0060;
    right: 0;
    top: 5px;
    font-family: roboto_condensedbold, sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   3. CLIENT LOGO GRID
   -------------------------------------------------------------------------- */
.grid-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    justify-items: center;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.client-logo {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.client-logo-img {
    width: 100%;
    height: 100%;
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    display: block;
    margin: auto;
}

.grid-list__i .ico {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --------------------------------------------------------------------------
   4. FM CANVAS
   -------------------------------------------------------------------------- */
#fmc-wrap {
    position: relative;
    width: 100%;
    height: 620px;
    background: #080808;
    overflow: hidden;
    cursor: none;
}

#fmc-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

#fmc-cursor {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition:
        width 0.15s,
        height 0.15s,
        border-color 0.15s;
    z-index: 10;
}

#fmc-cursor-ring {
    position: absolute;
    width: 36px;
    height: 36px;
    border: 0.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition:
        width 0.3s,
        height 0.3s;
    z-index: 10;
}

#fmc-ui {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.fmc-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 0.5px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-family: "SF Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
}

.fmc-btn:hover,
.fmc-btn.fmc-btn--active {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

#fmc-hint {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: "SF Mono", monospace;
    font-size: 9px;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    line-height: 2;
    text-align: right;
    z-index: 20;
}

#fmc-label {
    position: absolute;
    top: 20px;
    left: 24px;
    font-family: Georgia, serif;
    font-size: 11px;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.18);
    text-transform: uppercase;
    z-index: 20;
}

/* ==========================================================================
   8. GLOBAL RESPONSIVE MEDIA QUERIES (CONSOLIDATED)
   ========================================================================== */

/* --- LARGE SCREENS / TABLET LANDSCAPE (MAX: 1024px) --- */
@media (max-width: 1024px) {
    /* Footer */
    .f-top {
        grid-template-columns: 1fr;
    }

    .f-form-card {
        max-width: 560px;
    }

    /* Header */
    .fm-header {
        padding: 26px 24px;
        justify-content: flex-end;
    }

    .fm-header.scrolled {
        padding: 16px 24px;
    }

    .fm-header-inner {
        padding-left: 0;
    }

    .fm-header.scrolled .fm-header-inner {
        padding: 8px 16px;
        border-radius: 40px;
    }

    .fm-hamburger {
        display: flex;
    }

    /* Mobile Nav Overlay */
    .fm-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100vw;
        height: 100vh;
        background: rgba(8, 8, 8, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        transition: right 0.52s cubic-bezier(0.77, 0, 0.175, 1);
        animation: none !important;
        border-radius: 0 !important;
    }

    .fm-nav.open {
        right: 0;
    }

    .fm-nav a {
        font-size: 17px;
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        padding: 14px 40px;
        color: rgba(255, 255, 255, 0.7) !important;
    }

    .fm-nav.open a {
        animation: fm-mobile-in 0.45s both !important;
    }

    .fm-nav.open a:nth-child(1) {
        animation-delay: 0.07s !important;
    }

    .fm-nav.open a:nth-child(2) {
        animation-delay: 0.13s !important;
    }

    .fm-nav.open a:nth-child(3) {
        animation-delay: 0.19s !important;
    }

    .fm-nav.open a:nth-child(4) {
        animation-delay: 0.25s !important;
    }

    .fm-nav.open a:nth-child(5) {
        animation-delay: 0.31s !important;
    }

    .fm-nav.open a:nth-child(6) {
        animation-delay: 0.37s !important;
    }

    .fm-nav.open a:nth-child(7) {
        animation-delay: 0.43s !important;
    }

    @keyframes fm-mobile-in {
        from {
            opacity: 0;
            transform: translateX(28px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .fm-nav a.fm-contact-btn {
        margin-top: 14px;
        padding: 14px 44px;
        font-size: 14px;
    }
}

/* --- TABLET PORTRAIT / MOBILE LANDSCAPE (MAX: 991px) --- */
@media (max-width: 991px) {
    /* Scale down the massive typography */
    .world-best p {
        font-size: clamp(32px, 8vw, 60px) !important;
        line-height: 1.1;
    }

    .title,
    .inner-section .title.smaller-font-size {
        font-size: clamp(28px, 6vw, 45px) !important;
        line-height: 1.2;
    }

    /* Make the Canvas hero fit the screen better */
    #fmc-wrap {
        height: 100vh !important;
        min-height: 500px;
    }

    /* Stack the 01, 02, 03 business tasks */
    .business__tasks.animated-columns {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .animated-columns__i {
        width: 100% !important;
        float: none !important;
    }

    /* Effectiveness / Creativity Split Screen */
    .effectiveness-creativity {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .effectiveness,
    .creativity {
        width: 100% !important;
        min-height: 350px;
    }

    .shadows .shadow {
        display: none !important;
    }

    /* Make the grid list responsive */
    .grid-list {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 20px;
    }

    .grid-list__i {
        width: 100% !important;
        float: none !important;
    }
}

/* --- MOBILE PHONES (MAX: 767px) --- */
@media only screen and (max-device-width: 767px),
    screen and (max-width: 767px) {
    .top-padding {
        padding-top: 0 !important;
        margin-top: -75px;
    }

    .contacts__content .bottom-field .file-name {
        bottom: auto;
        left: 10px;
        right: auto;
    }

    .inner-section.hidden .title {
        opacity: 1 !important;
    }

    .project-case-page .project-results.hidden .results-l__i {
        opacity: 1;
        transform: none;
    }

    .project-results.hidden .controls {
        overflow: visible !important;
    }
}

/* --- SMALL MOBILE (MAX: 680px) --- */
@media (max-width: 680px) {
    .f-inner {
        padding: 0 20px;
    }

    .f-nav-grid {
        grid-template-columns: 1fr 1fr;
    }

    .f-email-link {
        font-size: 2rem;
    }

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

/* --- EXTRA SMALL MOBILE (MAX: 575px) --- */
@media (max-width: 575px) {
    /* Stack the awards list on mobile */
    .awards__list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .awards__list__i {
        width: 100% !important;
        float: none !important;
    }
}

/* --- TINY SCREENS (MAX: 460px) --- */
@media (max-width: 460px) {
    .f-nav-grid {
        grid-template-columns: 1fr;
    }

    .f-field-row {
        grid-template-columns: 1fr;
    }
}

.page-preloader {
    display: none !important;
}

/* --- INTERACTIVE TITLE STYLES --- */
.interactive-title {
    position: absolute !important;
    top: 50% !important;
    left: 5% !important;
    transform: translateY(-50%) !important;
    z-index: 10;
    pointer-events: none;
    /* Let the container ignore mouse */
}

.interactive-title .text-wrapper {
    pointer-events: auto;
    /* Enable hover on text */
    display: flex;
    flex-direction: column;
    gap: 0;
}

.interactive-title .title-line {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 7.8vw;
    /* Scales with screen size */
    font-weight: 900;
    line-height: 0.85;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    position: relative;
    cursor: none;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: inline-block;
    will-change: transform;
}

/* Simulated 3D / Glitch layers for hover */
.interactive-title .title-line::before,
.interactive-title .title-line::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* Cyan layer */
.interactive-title .title-line::before {
    color: rgba(62, 141, 245, 0.8);
    /* Fission Monster accent */
    z-index: -1;
}

/* Darker shadow/distortion layer */
.interactive-title .title-line::after {
    color: rgba(255, 255, 255, 0.3);
    z-index: -2;
    filter: blur(4px);
}

/* Hover behaviors */
.interactive-title .title-line:hover {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    /* Creates a hollow text effect */
}

.interactive-title .title-line:hover::before {
    opacity: 1;
    transform: translate(-8px, -4px);
    -webkit-text-stroke: 0px;
}

.interactive-title .title-line:hover::after {
    opacity: 1;
    transform: translate(8px, 4px);
    -webkit-text-stroke: 0px;
}

.interactive-title .world-best {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    pointer-events: auto;
}

.interactive-title .world-best-line {
    width: 60px;
    height: 1px;
    background-color: #ffffff;
}

.interactive-title .world-best p {
    font-family: "SF Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
}

/* --------------------------------------------------------------------------
   5. PREMIUM DARK FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
    color: white;
    padding: 0;
}

.inner-content-wrap {
    max-width: 1250px !important;
    margin: 0 auto;
}
.f-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0;
}

.f-top {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: start;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
}

.f-email-link {
    font-family: "DM Serif Display", serif;
    font-size: clamp(2rem, 4vw, 3.6rem);
    color: var(--text);
    text-decoration: none;
    display: block;
    line-height: 1.1;
    margin-bottom: 28px;
    transition: color 0.2s;
}

.f-email-link:hover {
    color: var(--accent);
}

.f-badges {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 44px;
    color: black !important;
}

.f-badge-clutch,
.f-badge-webflow {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 7px 14px;
}

.f-badge-clutch {
    gap: 8px;
}

.f-badge-clutch .stars {
    color: #e8443a;
    letter-spacing: -1px;
}

.f-badge-clutch .score {
    font-size: 0.75rem;
    color: var(--muted);
}

.f-badge-webflow {
    gap: 7px;
}

.f-badge-webflow .wf-dot {
    width: 18px;
    height: 18px;
    background: #146ef5;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.f-nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.f-nav-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 18px;
}

.f-nav-col ul {
    list-style: none;
}

.f-nav-col ul li {
    margin-bottom: 10px;
}

.f-nav-col ul li a {
    font-size: 0.92rem;
    color: var(--text);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}

.f-nav-col ul li a::before {
    content: "›";
    color: var(--muted);
    font-size: 1rem;
}

.f-nav-col ul li a:hover {
    color: var(--accent);
}

.f-form-card {
    background: rgb(32, 32, 32);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 32px 30px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.f-form-card p.intro {
    font-size: 0.93rem;
    line-height: 1.55;
    color: var(--text);
    margin-bottom: 24px;
}

.f-section-label,
.f-lang-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 10px;
    display: block;
}

.f-pills,
.f-lang-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 20px;
}

.f-pill,
.f-lang-pill {
    position: relative;
}

.f-pill input[type="radio"],
.f-pill input[type="checkbox"],
.f-lang-pill input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.f-pill label,
.f-lang-pill label {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid var(--border);
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.18s;
    white-space: nowrap;
}

.f-pill label {
    background: var(--pill-bg);
    color: var(--text);
}

.f-pill input:checked + label {
    background: var(--pill-active-bg);
    border-color: var(--pill-active-bg);
    color: var(--pill-active-text);
    font-weight: 600;
}

.f-pill label:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.f-lang-pill label {
    padding: 5px 18px;
    background: transparent;
    color: var(--muted);
}

.f-lang-pill input:checked + label {
    border-color: var(--text);
    color: var(--text);
    font-weight: 600;
}

.f-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.f-input,
.f-input-full {
    width: 100%;
    background: rgb(49, 49, 49);
    border: none;
    border-bottom: 1px solid var(--input-border);
    padding: 9px 5px;
    font-size: 0.9rem;
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
}

.f-input-full {
    margin-bottom: 14px;
}

.f-input::placeholder,
.f-input-full::placeholder {
    color: #bbb;
}

.f-input:focus,
.f-input-full:focus {
    border-bottom-color: var(--accent);
}

.f-agree {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 16px;
    margin-bottom: 18px;
}

.f-agree input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: var(--accent);
    margin-top: 2px;
    cursor: pointer;
}

.f-agree span {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.5;
}

.f-agree a {
    color: var(--text);
}

.f-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: black;
    border: none;
    padding: 13px 22px;
    font-size: 0.88rem;
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
    justify-content: center;
}

.f-submit:hover {
    background: none;
    color: white;
    border: 1px solid white;
}

.f-submit svg {
    width: 14px;
    height: 14px;
}

.f-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    border-top: 1px solid var(--border);
    margin-top: 0;
    flex-wrap: wrap;
    gap: 12px;
}

.f-copyright,
.f-address {
    font-size: 0.82rem;
    color: var(--muted);
}

.f-address {
    display: flex;
    align-items: center;
    gap: 8px;
}

.f-bottom-links {
    display: flex;
    gap: 24px;
}

.f-bottom-links a {
    font-size: 0.82rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.f-bottom-links a:hover {
    color: var(--text);
}

/* ==========================================================================
   SECTION 2: FEATURES VISIBILITY & OVERRIDES
   Forces the hidden template elements to show during native scroll
   ========================================================================== */

/* 1. Force the section to take full height and sit on top */
.screen-panel_features {
    position: relative !important;
    height: 100vh !important;
    background-color: #0d0d0d !important;
    z-index: 2 !important;
}

/* 2. Un-hide the content wrappers */
.screen-panel_features .screen-panel__bg,
.screen-panel_features .content-wrap,
.screen-panel_features .features-messages,
.screen-panel_features .features-messages ul,
.screen-panel_features .features-skip,
.screen-panel_features .features-pagination,
.screen-panel_features .features-pagination__nums ul li,
.screen-panel_features .rolling-block__content {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    /* Kills the legacy slide-up animation */
    pointer-events: auto !important;
}

/* 3. Center the Main Message Wrapper */
.screen-panel_features .content-wrap {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    left: 0 !important;
    top: 0 !important;
}

.screen-panel_features .features-messages {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 100% !important;
    text-align: center !important;
}

/* 4. Display the specific message ("We increase your online sales") */
.screen-panel_features .features-messages li {
    display: none !important;
    /* Hide all by default */
    position: relative !important;
}

/* Show only the 3rd item to match your screenshot */
.screen-panel_features .features-messages li:nth-child(3) {
    display: block !important;
}

/* Style the text to be huge and bold */
.screen-panel_features .features-messages p.rolling-block__content {
    font-family: "Helvetica Neue", Arial, sans-serif !important;
    font-size: 5vw !important;
    /* Scales with screen width */
    font-weight: 800 !important;
    line-height: 1.1 !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    margin: 0 !important;
}

/* 5. Pin Pagination to Bottom Left */
.screen-panel_features .features-pagination {
    position: absolute !important;
    bottom: 50px !important;
    left: 5% !important;
    top: auto !important;
    right: auto !important;
}

/* 6. Pin Skip Button to Bottom Right */
.screen-panel_features .features-skip {
    position: absolute !important;
    bottom: 50px !important;
    right: 5% !important;
    left: auto !important;
    top: auto !important;
    cursor: pointer !important;
}

.screen-panel_features .features-skip .label {
    font-family: "SF Mono", monospace, sans-serif !important;
    font-size: 12px !important;
    color: #fff !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
}

/* Marquee Container */
.fm-text-ticker {
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    padding: 20px 0;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
    position: relative;
    z-index: 10;
}

/* Moving Track */
.fm-ticker-track {
    display: flex;
    align-items: center;
    width: max-content;
    /* 30s is the speed. Lower number = faster */
    animation: fm-scroll-ticker 30s linear infinite;
}

/* Text Styling */
.fm-ticker-item {
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Pure CSS Pill Separator (Matches your image perfectly) */
.fm-ticker-separator {
    width: 8px;
    height: 18px;
    background: linear-gradient(to bottom, #d5dadd, #aab2ba);
    border-radius: 10px;
    margin: 0 45px;
    /* Spacing between words and pills */
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Seamless Loop Animation */
@keyframes fm-scroll-ticker {
    0% {
        transform: translateX(0);
    }

    /* Scrolls exactly half its width, then instantly resets to 0 */
    100% {
        transform: translateX(-50%);
    }
}

/* Section Base */
.fm-reviews-section {
    padding: 8rem 5%;
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        sans-serif;
    overflow: hidden;
    position: relative;
}

.fm-reviews-section .fm-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Left-Aligned Header Layout */
.fm-reviews-header-wrapper {
    text-align: left;
    margin-bottom: 4rem;
    max-width: 800px;
    padding-left: 30px;
}

.fm-side-heading {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-bottom: 1.5rem;
}

.fm-side-line {
    height: 2px;
    width: 50px;
    background: #111;
}

.fm-side-label {
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        sans-serif !important;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

/* Perfect Alignment Fixes (65px indent) */
.fm-reviews-section .fm-heading {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #111;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    text-align: left;
    margin-left: 65px; /* Aligns exactly with the side label */
}

.fm-reviews-section .fm-subheading {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 0 0 65px; /* Aligns exactly with the side label */
    line-height: 1.6;
    text-align: left;
}

/* Grid Layout */
.fm-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-left: 65px; /* Aligns exactly with the headings above */
}

/* Professional Card Styling */
.fm-review-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    padding: 2.2rem !important;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    text-align: left !important;
    transition:
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.fm-review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.08);
}

/* Animated Quote Watermark */
.fm-quote-watermark {
    position: absolute;
    top: -10px;
    right: 15px;
    font-size: 160px;
    color: rgba(0, 0, 0, 0.025);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    animation: fm-float 6s ease-in-out infinite;
}

@keyframes fm-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Header: Stars & Badges */
.fm-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

/* Shimmering Stars */
.fm-stars {
    background: linear-gradient(90deg, #ffb800 0%, #ffe38f 50%, #ffb800 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 1.2rem;
    letter-spacing: 2px;
    animation: fm-shine 3s linear infinite;
}

@keyframes fm-shine {
    to {
        background-position: 200% center;
    }
}

/* Platform Badges */
.fm-platform-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.fm-platform-badge.google {
    background: #e8f0fe;
    color: #1a73e8;
}
.fm-platform-badge.clutch {
    background: #feebeb;
    color: #e93323;
}
.fm-platform-badge.trustpilot {
    background: #e5f6ed;
    color: #00b67a;
}

/* Tight Review Text */
.fm-review-text {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    color: #444;
    font-style: italic;
    margin-bottom: 1.5rem !important;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

/* Smart Reviewer Info */
.fm-reviewer {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    justify-content: flex-start !important;
    gap: 15px;
    border-top: 1px solid #f0f0f0;
    padding-top: 1.25rem;
    position: relative;
    z-index: 1;
}

.fm-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.fm-reviewer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
}

.fm-reviewer-info strong {
    color: #111;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
}

.fm-reviewer-info span {
    color: #888;
    font-size: 0.8rem;
}

/* === SCROLL REVEAL ANIMATIONS === */
.fm-animate-item {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.8s ease-out,
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
}

.fm-animate-item.fm-show {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE FIXES === */
@media (max-width: 768px) {
    .fm-reviews-section {
        padding: 5rem 5%;
    }

    /* Removes the 65px indent on mobile so text doesn't squish */
    .fm-reviews-section .fm-heading,
    .fm-reviews-section .fm-subheading,
    .fm-reviews-grid {
        margin-left: 0;
    }

    .fm-reviews-grid {
        grid-template-columns: 1fr; /* Single column */
        gap: 1.5rem;
    }

    .fm-review-card {
        padding: 1.8rem !important;
    }
}
