/* =========================================================
   CLEVER MEDIA
   GLOBAL DESIGN SYSTEM
   ========================================================= */


/* =========================================================
   1. CSS VARIABLES
   ========================================================= */

:root {

    /* Colors */
    --color-bg: #080808;
    --color-bg-soft: #0d0d0d;
    --color-card: #121212;
    --color-card-hover: #171717;

    --color-text: #f5f5f2;
    --color-text-soft: #b2b2ad;
    --color-text-muted: #777772;

    --color-yellow: #ffd600;
    --color-yellow-dark: #e6bf00;

    --color-border: #292929;
    --color-border-light: #353535;


    /* Typography */
    --font-main: Arial, Helvetica, sans-serif;


    /* Layout */
    --container-width: 1280px;

    --section-padding-desktop: 140px;
    --section-padding-tablet: 100px;
    --section-padding-mobile: 70px;


    /* Border Radius */
    --radius-small: 0px;
    --radius-medium: 2px;


    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.35s ease;
    --transition-slow: 0.6s ease;
}


/* =========================================================
   2. RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}


body {
    background: var(--color-bg);
    color: var(--color-text);

    font-family: var(--font-main);

    font-size: 16px;
    line-height: 1.6;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


img {
    display: block;
    max-width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea,
select {
    font: inherit;
}


button {
    border: none;
    cursor: pointer;
}


/* =========================================================
   3. GLOBAL CONTAINER
   ========================================================= */

.container {
    width: min(
        calc(100% - 80px),
        var(--container-width)
    );

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   4. MAIN
   ========================================================= */

main {
    width: 100%;
}


/* =========================================================
   5. SECTION
   ========================================================= */

.section {
    position: relative;

    padding-top: var(--section-padding-desktop);
    padding-bottom: var(--section-padding-desktop);
}


.section-border {
    border-top: 1px solid var(--color-border);
}


/* =========================================================
   6. SECTION LABEL
   ========================================================= */

.section-label {
    color: var(--color-yellow);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}


/* =========================================================
   7. HEADINGS
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    letter-spacing: -0.045em;
}


.display-heading {
    font-size: clamp(
        52px,
        6vw,
        92px
    );

    line-height: 0.98;

    max-width: 900px;
}


.section-heading {
    font-size: clamp(
        42px,
        5vw,
        72px
    );

    line-height: 1.02;

    max-width: 900px;
}


.medium-heading {
    font-size: clamp(
        30px,
        3vw,
        48px
    );

    line-height: 1.05;
}


/* =========================================================
   8. BODY TEXT
   ========================================================= */

.body-text {
    color: var(--color-text-soft);

    font-size: 16px;
    line-height: 1.65;

    max-width: 650px;
}


.small-text {
    color: var(--color-text-muted);

    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   9. YELLOW HIGHLIGHT
   ========================================================= */

.text-yellow {
    color: var(--color-yellow);
}


.text-highlight {
    position: relative;

    display: inline-block;
}


.text-highlight::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -5px;

    height: 7px;

    background: var(--color-yellow);

    z-index: -1;
}


/* =========================================================
   10. BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 25px;

    min-height: 56px;

    padding: 0 24px;

    background: var(--color-yellow);
    color: #050505;

    font-size: 14px;
    font-weight: 600;

    border: 1px solid var(--color-yellow);

    transition:
        background var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast);
}


.btn:hover {
    background: transparent;
    color: var(--color-yellow);

    transform: translateY(-2px);
}


.btn-arrow {
    font-size: 18px;

    line-height: 1;

    transition: transform var(--transition-normal);
}


.btn:hover .btn-arrow {
    transform: translate(3px, -3px);
}


/* =========================================================
   11. OUTLINE BUTTON
   ========================================================= */

.btn-outline {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 20px;

    min-height: 56px;

    padding: 0 24px;

    background: transparent;

    color: var(--color-text);

    border: 1px solid var(--color-border-light);

    transition:
        border-color var(--transition-fast),
        color var(--transition-fast);
}


.btn-outline:hover {
    border-color: var(--color-yellow);

    color: var(--color-yellow);
}


/* =========================================================
   12. DIVIDER
   ========================================================= */

.divider {
    width: 100%;

    height: 1px;

    background: var(--color-border);
}


/* =========================================================
   13. CARD
   ========================================================= */

.card {
    background: var(--color-card);

    border: 1px solid var(--color-border);

    transition:
        background var(--transition-normal),
        border-color var(--transition-normal),
        transform var(--transition-normal);
}


.card:hover {
    background: var(--color-card-hover);

    border-color: var(--color-border-light);

    transform: translateY(-3px);
}


/* =========================================================
   14. ARROW LINK
   ========================================================= */

.arrow-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--color-text-soft);

    transition: color var(--transition-fast);
}


.arrow-link span {
    transition: transform var(--transition-normal);
}


.arrow-link:hover {
    color: var(--color-yellow);
}


.arrow-link:hover span {
    transform: translate(4px, -4px);
}


/* =========================================================
   15. SCROLL REVEAL
   ========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}


.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   16. SELECTION
   ========================================================= */

::selection {
    background: var(--color-yellow);

    color: #000;
}


/* =========================================================
   17. SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
    width: 8px;
}


::-webkit-scrollbar-track {
    background: var(--color-bg);
}


::-webkit-scrollbar-thumb {
    background: #303030;
}


::-webkit-scrollbar-thumb:hover {
    background: var(--color-yellow);
}


/* =========================================================
   18. RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .container {
        width: min(
            calc(100% - 50px),
            var(--container-width)
        );
    }


    .section {
        padding-top: var(--section-padding-tablet);
        padding-bottom: var(--section-padding-tablet);
    }


    .display-heading {
        font-size: clamp(
            48px,
            7vw,
            72px
        );
    }

}


/* =========================================================
   19. RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .container {
        width: calc(100% - 40px);
    }


    .section {
        padding-top: var(--section-padding-mobile);
        padding-bottom: var(--section-padding-mobile);
    }


    .display-heading {
        font-size: clamp(
            42px,
            12vw,
            60px
        );

        line-height: 1;
    }


    .section-heading {
        font-size: clamp(
            36px,
            10vw,
            52px
        );
    }


    .body-text {
        font-size: 15px;
    }


    .btn,
    .btn-outline {
        width: 100%;
    }

}


/* =========================================================
   20. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

}
/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */

.site-header {
    position: sticky;

    top: 0;

    z-index: 1000;

    width: 100%;

    background: rgba(8, 8, 8, 0.94);

    border-bottom: 1px solid var(--color-border);

    backdrop-filter: blur(12px);
}


.nav-container {
    width: min(
        calc(100% - 80px),
        var(--container-width)
    );

    min-height: 82px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}


/* =========================================================
   LOGO
   ========================================================= */

.site-logo {
    display: inline-flex;

    align-items: center;

    transition: opacity var(--transition-fast);
}


.site-logo__img {
    display: block;

    height: 34px;

    width: auto;
}


.site-logo:hover {
    opacity: 0.75;
}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.desktop-nav {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 38px;

    margin-left: auto;
}


.nav-link {
    position: relative;

    color: var(--color-text-soft);

    font-size: 14px;

    transition:
        color var(--transition-fast);
}


.nav-link::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 1px;

    background: var(--color-yellow);

    transition: width var(--transition-normal);
}


.nav-link:hover {
    color: var(--color-text);
}


.nav-link:hover::after {
    width: 100%;
}


/* =========================================================
   HEADER CTA
   ========================================================= */

.nav-cta {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    min-height: 46px;

    padding: 0 20px;

    background: var(--color-yellow);

    color: #050505;

    font-size: 13px;

    font-weight: 600;

    border: 1px solid var(--color-yellow);

    white-space: nowrap;

    transition:
        background var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast);
}


.nav-cta:hover {
    background: transparent;

    color: var(--color-yellow);

    transform: translateY(-2px);
}


.nav-cta-arrow {
    font-size: 17px;

    transition:
        transform var(--transition-normal);
}


.nav-cta:hover .nav-cta-arrow {
    transform: translate(3px, -3px);
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.mobile-menu-button {
    display: none;

    width: 44px;

    height: 44px;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 6px;

    background: transparent;

    border: 1px solid var(--color-border);

    color: var(--color-text);
}


.mobile-menu-button span {
    display: block;

    width: 19px;

    height: 1px;

    background: var(--color-text);

    transition:
        transform var(--transition-normal),
        opacity var(--transition-normal);
}


/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

.mobile-nav {
    display: none;

    flex-direction: column;

    border-top: 1px solid var(--color-border);

    background: var(--color-bg);
}


.mobile-nav-link {
    padding: 20px 20px;

    border-bottom: 1px solid var(--color-border);

    color: var(--color-text-soft);

    font-size: 17px;

    transition:
        color var(--transition-fast),
        padding-left var(--transition-fast);
}


.mobile-nav-link:hover {
    color: var(--color-yellow);

    padding-left: 26px;
}


.mobile-nav-cta {
    margin: 20px;

    min-height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--color-yellow);

    color: #050505;

    font-weight: 600;
}


/* =========================================================
   MOBILE MENU OPEN STATE
   ========================================================= */

.site-header.menu-open .mobile-nav {
    display: flex;
}


.site-header.menu-open .mobile-menu-button span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}


.site-header.menu-open .mobile-menu-button span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .nav-container {
        width: min(
            calc(100% - 50px),
            var(--container-width)
        );
    }


    .desktop-nav {
        gap: 25px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .nav-container {
        width: calc(100% - 40px);

        min-height: 72px;
    }


    .desktop-nav,
    .nav-cta {
        display: none;
    }


    .mobile-menu-button {
        display: flex;
    }


    .site-logo__img {
        height: 28px;
    }

}
/* =========================================================
   ACTIVE NAVIGATION
   ========================================================= */

.nav-link.active {
    color: var(--color-yellow);
}


.nav-link.active::after {
    width: 100%;
}

/* =========================================================
   HERO — SCREENSHOT 1 RECREATION
   ========================================================= */

.hero {
    position: relative;

    width: 100%;

    height: calc(100vh - 71px);

    min-height: 690px;

    overflow: hidden;

    background: #080808;
}


/* =========================================================
   PROPERTY IMAGE
   ========================================================= */

.hero-image {
    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;

    left: 42%;

    overflow: hidden;

    z-index: 1;
}


.hero-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center center;

    filter: brightness(0.66);

    transform: scale(1.01);
}


/* Hero slider cross-fade — added for the admin "Hero Slider" tab.
   With a single image this simply keeps it fully visible. */
.hero-image img {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.1s ease;
}

.hero-image img.is-active {
    opacity: 1;
}


/* =========================================================
   BLACK LEFT AREA
   ========================================================= */

.hero-left-panel {
    position: absolute;

    top: 0;
    bottom: 0;
    left: 0;

    width: 42%;

    background: #080808;

    z-index: 2;
}


/* =========================================================
   HEADLINE
   ========================================================= */

.hero-headline {
    position: absolute;

    top: 50%;

    left: 43px;

    width: 560px;

    z-index: 5;

    transform: translateY(-50%);
}


.hero-headline h1 {
    margin: 0;

    padding: 0;

    color: #f3f3ef;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: clamp(
        64px,
        7.25vw,
        82px
    );

    font-weight: 400;

    line-height: 0.955;

    letter-spacing: -0.065em;
}


.hero-headline h1 span {
    display: block;

    white-space: nowrap;
}


.hero-headline h1 b {
    font-weight: 400;
}


/* =========================================================
   YELLOW DEMAND UNDERLINE
   ========================================================= */

.hero-headline strong {
    position: relative;

    display: inline-block;

    font-weight: 400;

    z-index: 1;
}


.hero-headline strong::after {
    content: "";

    position: absolute;

    left: -1px;
    right: -1px;

    bottom: 2px;

    height: 7px;

    background: #ffd500;

    z-index: -1;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.hero-description {
    position: absolute;

    left: 43px;

    bottom: 20px;

    width: 400px;

    z-index: 6;
}


.hero-description p {
    margin: 0;

    padding-top: 23px;

    border-top:
        1px solid rgba(
            255,
            255,
            255,
            0.14
        );

    color: #898984;

    font-size: 14px;

    line-height: 1.55;

    font-weight: 400;
}


/* =========================================================
   HORIZONTAL LINE
   ========================================================= */

.hero-line {
    position: absolute;

    left: 43px;

    right: 20px;

    bottom: 1px;

    height: 1px;

    background:
        rgba(
            255,
            255,
            255,
            0.14
        );

    z-index: 4;
}


/* =========================================================
   CTA
   ========================================================= */

.hero-cta {
    position: absolute;

    left: 43.75%;

    bottom: 21px;

    width: 223px;

    height: 56px;

    padding: 0 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    z-index: 8;

    background: #ffd500;

    border: 1px solid #ffd500;

    color: #080808;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}


.hero-cta:hover {
    background: #080808;

    color: #ffd500;
}


.hero-cta-arrow {
    font-size: 18px;

    line-height: 1;
}


/* =========================================================
   FOLLOW DEMAND SYSTEM
   ========================================================= */

.hero-follow {
    position: absolute;

    right: 43px;

    bottom: 21px;

    height: 56px;

    display: flex;

    align-items: center;

    gap: 10px;

    z-index: 8;

    color: #858580;

    font-size: 11px;

    text-decoration: none;
}


.hero-follow-button {
    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid rgba(
            255,
            255,
            255,
            0.13
        );

    color: #ffd500;

    font-size: 18px;

    transition:
        border-color 0.25s ease,
        background 0.25s ease;
}


.hero-follow:hover {
    color: #f3f3ef;
}


.hero-follow:hover .hero-follow-button {
    border-color: #ffd500;

    background:
        rgba(
            255,
            213,
            0,
            0.05
        );
}


/* =========================================================
   COUNTER
   ========================================================= */

.hero-counter {
    position: absolute;

    right: 0;

    bottom: 0;

    width: 44px;

    height: 44px;

    z-index: 20;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 2px;

    background: #f3f3ef;

    color: #111;

    border-radius: 50% 0 0 0;

    font-size: 11px;
}


.hero-counter span:first-child {
    font-weight: 700;
}


.hero-counter span:last-child {
    opacity: 0.55;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .hero-headline {
        left: 35px;

        width: 560px;
    }


    .hero-headline h1 {
        font-size: 65px;
    }


    .hero-description {
        left: 35px;

        width: 380px;
    }


    .hero-line {
        left: 50px;

        right: 50px;
    }


    .hero-follow {
        right: 35px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .hero {
        height: auto;

        min-height: 0;

        overflow: hidden;
    }


    .hero-image {
        position: relative;

        left: auto;
        right: auto;
        top: auto;
        bottom: auto;

        width: 100%;

        height: 390px;
    }


    .hero-left-panel {
        display: none;
    }


    .hero-headline {
        position: relative;

        top: auto;
        left: auto;

        width: auto;

        margin: 0;

        padding:
            50px 20px 35px;

        transform: none;

        background: #080808;
    }


    .hero-headline h1 {
        font-size: 48px;

        line-height: 0.97;

        letter-spacing: -0.06em;
    }


    .hero-headline h1 span {
        white-space: normal;
    }


    .hero-description {
        position: relative;

        left: auto;
        bottom: auto;

        width: auto;

        margin: 0;

        padding:
            0 20px 25px;

        background: #080808;
    }


    .hero-description p {
        padding-top: 22px;

        font-size: 13px;
    }


    .hero-line {
        position: relative;

        left: auto;
        right: auto;
        bottom: auto;

        width:
            calc(100% - 50px);

        margin:
            0 40px;
    }


    .hero-cta {
        position: relative;

        left: auto;
        bottom: auto;

        width:
            calc(100% - 40px);

        margin:
            25px 20px 0;
    }


    .hero-follow {
        position: relative;

        right: auto;
        bottom: auto;

        width:
            calc(100% - 40px);

        margin:
            20px 20px 25px;

        justify-content: flex-end;
    }


    .hero-counter {
        right: 0;

        top: 346px;

        bottom: auto;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .hero-image {
        height: 330px;
    }


    .hero-counter {
        top: 286px;
    }


    .hero-headline {
        padding-top: 42px;
    }


    .hero-headline h1 {
        font-size: 43px;
    }

}
/* =========================================================
   CLEVER MEDIA — DEMAND SYSTEM
   STEP 7
   ========================================================= */

#system.clever-system {
    width: 100%;
    margin: 0;
    padding: 104px 43px 112px;

    background: #080808;
    color: #f2f2ef;

    box-sizing: border-box;

    overflow: hidden;
}


#system.clever-system *,
#system.clever-system *::before,
#system.clever-system *::after {
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.clever-system__container {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;
}


/* =========================================================
   INTRO
   ========================================================= */

.clever-system__intro {
    display: grid;

    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    column-gap: 90px;

    align-items: start;

    margin-bottom: 88px;
}


/* =========================================================
   TITLE
   ========================================================= */

.clever-system__title h2 {
    margin: 0;
    padding: 0;

    color: #f3f3ef;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 58px;

    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -3.2px;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.clever-system__description {
    display: flex;

    justify-content: flex-start;

    padding-top: 8px;
}


.clever-system__description p {
    width: 390px;

    margin: 0;
    padding: 0;

    color: #858580;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.55;
}


/* =========================================================
   SIX COLUMN GRID
   ========================================================= */

.clever-system__grid {
    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    width: 100%;

    border-top:
        1px solid rgba(255,255,255,0.14);

    border-left:
        1px solid rgba(255,255,255,0.14);
}


/* =========================================================
   CARD
   ========================================================= */

.clever-system__card {
    position: relative;

    height: 222px;

    padding: 20px 18px 22px;

    background: #080808;

    border-right:
        1px solid rgba(255,255,255,0.14);

    border-bottom:
        1px solid rgba(255,255,255,0.14);

    transition:
        background 0.25s ease;
}


.clever-system__card:hover {
    background: #0d0d0d;
}


/* =========================================================
   TOP NUMBER + ARROW
   ========================================================= */

.clever-system__top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    width: 100%;
}


.clever-system__top > span:first-child {
    color: #858580;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;

    line-height: 1;
}


.clever-system__arrow {
    color: #ffd500;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 22px;

    font-weight: 400;

    line-height: 1;

    transition:
        transform 0.25s ease;
}


.clever-system__card:hover .clever-system__arrow {
    transform: translateX(4px);
}


/* =========================================================
   CARD CONTENT
   ========================================================= */

.clever-system__content {
    position: absolute;

    left: 18px;
    right: 18px;

    bottom: 22px;
}


.clever-system__content h3 {
    margin: 0 0 28px;
    padding: 0;

    color: #f1f1ee;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 20px;

    font-weight: 400;

    line-height: 1.1;

    letter-spacing: -0.5px;
}


/* =========================================================
   CARD DIVIDER
   ========================================================= */

.clever-system__divider {
    width: 100%;

    height: 1px;

    margin-bottom: 27px;

    background:
        rgba(255,255,255,0.28);
}


/* =========================================================
   CARD DESCRIPTION
   ========================================================= */

.clever-system__content p {
    max-width: 175px;

    margin: 0;
    padding: 0;

    color: #858580;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;

    font-weight: 400;

    line-height: 1.55;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    #system.clever-system {
        padding:
            85px 30px 90px;
    }


    .clever-system__intro {
        column-gap: 50px;

        margin-bottom: 65px;
    }


    .clever-system__title h2 {
        font-size: 50px;

        letter-spacing: -2.5px;
    }


    .clever-system__grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }


    .clever-system__card {
        height: 220px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    #system.clever-system {
        padding:
            70px 20px 75px;
    }


    .clever-system__intro {
        display: block;

        margin-bottom: 50px;
    }


    .clever-system__title h2 {
        font-size: 46px;

        letter-spacing: -2.4px;
    }


    .clever-system__description {
        padding-top: 28px;
    }


    .clever-system__description p {
        width: 100%;

        max-width: 400px;

        font-size: 13px;
    }


    .clever-system__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .clever-system__card {
        height: 220px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .clever-system__title h2 {
        font-size: 42px;

        letter-spacing: -2px;
    }


    .clever-system__grid {
        grid-template-columns: 1fr;
    }


    .clever-system__card {
        height: 205px;
    }

}
/* =========================================================
   CLEVER MEDIA — SERVICES
   STEP 8
   ========================================================= */

#services.clever-services {
    width: 100%;

    margin: 0;
    padding: 105px 43px 115px;

    background: #080808;

    color: #f3f3ef;

    box-sizing: border-box;

    overflow: hidden;
}


#services.clever-services *,
#services.clever-services *::before,
#services.clever-services *::after {
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.clever-services__container {
    width: 100%;

    max-width: 1400px;

    margin: 0 auto;
}


/* =========================================================
   INTRO
   ========================================================= */

.clever-services__intro {
    display: grid;

    grid-template-columns:
        280px minmax(0, 1fr);

    column-gap: 52px;

    align-items: start;

    margin-bottom: 82px;
}


/* =========================================================
   LABEL
   ========================================================= */

.clever-services__label {
    padding-top: 6px;

    color: #ffd500;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 11px;

    font-weight: 600;

    line-height: 1.2;

    letter-spacing: 1.8px;
}


/* =========================================================
   MAIN HEADING
   ========================================================= */

.clever-services__heading h2 {
    margin: 0;
    padding: 0;

    color: #f3f3ef;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 52px;

    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -2.8px;
}


/* =========================================================
   SERVICE ROW
   ========================================================= */

.clever-service {
    position: relative;

    display: grid;

    grid-template-columns:
        90px
        minmax(340px, 1fr)
        minmax(390px, 1.15fr)
        45px;

    column-gap: 0;

    align-items: start;

    width: 100%;

    min-height: 160px;

    padding:
        31px 0 30px;

    border-top:
        1px solid rgba(
            255,
            255,
            255,
            0.14
        );

    color: inherit;

    text-decoration: none;

    transition:
        background 0.25s ease;
}


/* Last row border */

.clever-service:last-child {
    border-bottom:
        1px solid rgba(
            255,
            255,
            255,
            0.14
        );
}


/* =========================================================
   NUMBER
   ========================================================= */

.clever-service__number {
    padding-top: 4px;

    color: #858580;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 11px;

    line-height: 1;
}


/* =========================================================
   SERVICE NAME
   ========================================================= */

.clever-service__name {
    padding-right: 40px;
}


.clever-service__name h3 {
    margin: 0 0 7px;
    padding: 0;

    color: #f3f3ef;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 25px;

    font-weight: 400;

    line-height: 1.1;

    letter-spacing: -0.8px;
}


.clever-service__name span {
    display: block;

    color: #ffd500;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 12px;

    line-height: 1.4;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.clever-service__description {
    padding:
        1px 45px 0 0;
}


.clever-service__description p {
    max-width: 490px;

    margin: 0 0 18px;

    color: #858580;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 13px;

    font-weight: 400;

    line-height: 1.55;
}


.clever-service__description small {
    display: block;

    color: #666661;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 9px;

    font-weight: 600;

    line-height: 1.4;

    letter-spacing: 1.4px;
}


/* =========================================================
   ARROW
   ========================================================= */

.clever-service__arrow {
    display: flex;

    align-items: flex-start;

    justify-content: flex-end;

    padding-top: 2px;

    color: #858580;

    font-size: 21px;

    line-height: 1;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.clever-service:hover .clever-service__arrow {
    color: #ffd500;

    transform:
        translate(3px, -3px);
}


/* =========================================================
   HOVER
   ========================================================= */

.clever-service:hover {
    background:
        rgba(
            255,
            255,
            255,
            0.012
        );
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    #services.clever-services {
        padding:
            85px 30px 90px;
    }


    .clever-services__intro {
        grid-template-columns:
            220px minmax(0, 1fr);

        column-gap: 35px;

        margin-bottom: 65px;
    }


    .clever-services__heading h2 {
        font-size: 46px;

        letter-spacing: -2.4px;
    }


    .clever-service {
        grid-template-columns:
            55px
            minmax(260px, 1fr)
            minmax(300px, 1fr)
            35px;
    }


    .clever-service__name h3 {
        font-size: 21px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    #services.clever-services {
        padding:
            70px 20px 75px;
    }


    .clever-services__intro {
        display: block;

        margin-bottom: 55px;
    }


    .clever-services__label {
        margin-bottom: 24px;
    }


    .clever-services__heading h2 {
        font-size: 43px;

        line-height: 1;

        letter-spacing: -2.2px;
    }


    .clever-service {
        display: block;

        min-height: 0;

        padding:
            25px 35px 27px 0;
    }


    .clever-service__number {
        margin-bottom: 20px;
    }


    .clever-service__name {
        padding-right: 0;

        margin-bottom: 24px;
    }


    .clever-service__name h3 {
        font-size: 21px;

        letter-spacing: -0.5px;
    }


    .clever-service__description {
        padding: 0;
    }


    .clever-service__description p {
        max-width: 500px;

        font-size: 13px;
    }


    .clever-service__arrow {
        position: absolute;

        top: 27px;

        right: 0;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .clever-services__heading h2 {
        font-size: 39px;
    }


    .clever-service__name h3 {
        font-size: 20px;
    }

}
/* =========================================================
   CLEVER MEDIA — THE REAL GAP
   STEP 9
   ========================================================= */

#gap.clever-gap {
    width: 100%;

    margin: 0;
    padding: 125px 43px 135px;

    background: #080808;

    color: #f3f3ef;

    box-sizing: border-box;

    overflow: hidden;
}


#gap.clever-gap *,
#gap.clever-gap *::before,
#gap.clever-gap *::after {
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.clever-gap__container {
    width: 100%;

    max-width: 1400px;

    margin: 0 auto;
}


/* =========================================================
   MAIN GRID
   ========================================================= */

.clever-gap__grid {
    display: grid;

    grid-template-columns:
        280px minmax(0, 1fr);

    column-gap: 52px;

    align-items: start;
}


/* =========================================================
   LEFT LABEL
   ========================================================= */

.clever-gap__label {
    padding-top: 8px;
}


.clever-gap__label span {
    display: block;

    color: #ffd500;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 11px;

    font-weight: 600;

    line-height: 1.2;

    letter-spacing: 1.8px;
}


/* =========================================================
   RIGHT CONTENT
   ========================================================= */

.clever-gap__content {
    max-width: 780px;
}


/* =========================================================
   HEADING
   ========================================================= */

.clever-gap__content h2 {
    margin: 0;
    padding: 0;

    color: #f3f3ef;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 53px;

    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -2.8px;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.clever-gap__content p {
    max-width: 650px;

    margin: 38px 0 0;
    padding: 0;

    color: #858580;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.6;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    #gap.clever-gap {
        padding:
            100px 30px 110px;
    }


    .clever-gap__grid {
        grid-template-columns:
            220px minmax(0, 1fr);

        column-gap: 35px;
    }


    .clever-gap__content h2 {
        font-size: 47px;

        letter-spacing: -2.4px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    #gap.clever-gap {
        padding:
            80px 20px 90px;
    }


    .clever-gap__grid {
        display: block;
    }


    .clever-gap__label {
        padding-top: 0;

        margin-bottom: 28px;
    }


    .clever-gap__content {
        max-width: 100%;
    }


    .clever-gap__content h2 {
        font-size: 43px;

        line-height: 1;

        letter-spacing: -2.2px;
    }


    .clever-gap__content p {
        max-width: 600px;

        margin-top: 30px;

        font-size: 13px;

        line-height: 1.6;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .clever-gap__content h2 {
        font-size: 38px;

        letter-spacing: -2px;
    }

}
/* =========================================================
   CLEVER MEDIA — PACKAGES
   STEP 10
   ========================================================= */

#packages.clever-packages {
    width: 100%;

    margin: 0;
    padding: 105px 43px 120px;

    background: #080808;

    color: #f3f3ef;

    box-sizing: border-box;

    overflow: hidden;
}


#packages.clever-packages *,
#packages.clever-packages *::before,
#packages.clever-packages *::after {
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.clever-packages__container {
    width: 100%;

    max-width: 1400px;

    margin: 0 auto;
}


/* =========================================================
   INTRO
   ========================================================= */

.clever-packages__intro {
    display: grid;

    grid-template-columns:
        280px minmax(0, 1fr);

    column-gap: 52px;

    align-items: start;

    margin-bottom: 70px;
}


/* =========================================================
   LABEL
   ========================================================= */

.clever-packages__label {
    padding-top: 8px;

    color: #ffd500;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 11px;

    font-weight: 600;

    line-height: 1.2;

    letter-spacing: 1.8px;
}


/* =========================================================
   INTRO CONTENT
   ========================================================= */

.clever-packages__intro-content {
    max-width: 760px;
}


.clever-packages__intro-content h2 {
    margin: 0;
    padding: 0;

    color: #f3f3ef;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 53px;

    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -2.8px;
}


.clever-packages__intro-content p {
    max-width: 590px;

    margin: 30px 0 0;

    color: #858580;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.55;
}


/* =========================================================
   PACKAGE GRID
   ========================================================= */

.clever-packages__grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;

    width: 100%;
}


/* =========================================================
   PACKAGE CARD
   ========================================================= */

.clever-package {
    position: relative;

    display: flex;

    flex-direction: column;

    min-height: 555px;

    padding: 36px 35px 32px;

    background: #151515;

    border:
        1px solid rgba(
            255,
            255,
            255,
            0.13
        );

    transition:
        background 0.25s ease,
        border-color 0.25s ease;
}


.clever-package:hover {
    background: #181818;

    border-color:
        rgba(
            255,
            213,
            0,
            0.30
        );
}


/* =========================================================
   CARD TOP
   ========================================================= */

.clever-package__top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 54px;
}


.clever-package__number {
    color: #ffd500;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 11px;

    font-weight: 600;

    line-height: 1.2;
}


.clever-package__type {
    color: #777772;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 9px;

    font-weight: 600;

    line-height: 1.2;

    letter-spacing: 1.7px;
}


/* =========================================================
   CARD MAIN
   ========================================================= */

.clever-package__main h3 {
    margin: 0;

    color: #f3f3ef;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 31px;

    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -1.3px;
}


.clever-package__main p {
    max-width: 470px;

    margin: 25px 0 0;

    color: #858580;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 13px;

    font-weight: 400;

    line-height: 1.6;
}


/* =========================================================
   DIVIDER
   ========================================================= */

.clever-package__divider {
    width: 100%;

    height: 1px;

    margin:
        34px 0 28px;

    background:
        rgba(
            255,
            255,
            255,
            0.14
        );
}


/* =========================================================
   FEATURES
   ========================================================= */

.clever-package__features {
    display: flex;

    flex-direction: column;

    gap: 16px;

    margin: 0;
    padding: 0;

    list-style: none;
}


.clever-package__features li {
    display: flex;

    align-items: flex-start;

    gap: 11px;

    color: #b1b1ab;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 12px;

    line-height: 1.4;
}


.clever-package__features .check {
    flex-shrink: 0;

    color: #ffd500;

    font-size: 14px;

    line-height: 1;
}


/* =========================================================
   BUTTON
   ========================================================= */

.clever-package__button {
    display: flex;

    align-items: center;

    justify-content: space-between;

    width: 100%;

    margin-top: auto;
    padding-top: 32px;

    color: #f3f3ef;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 12px;

    font-weight: 500;

    text-decoration: none;

    border-top:
        1px solid rgba(
            255,
            255,
            255,
            0.12
        );

    transition:
        color 0.25s ease;
}


.clever-package__button span {
    color: #ffd500;

    font-size: 20px;

    line-height: 1;

    transition:
        transform 0.25s ease;
}


.clever-package__button:hover {
    color: #ffd500;
}


.clever-package__button:hover span {
    transform:
        translate(3px, -3px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    #packages.clever-packages {
        padding:
            85px 30px 95px;
    }


    .clever-packages__intro {
        grid-template-columns:
            220px minmax(0, 1fr);

        column-gap: 35px;

        margin-bottom: 60px;
    }


    .clever-packages__intro-content h2 {
        font-size: 47px;

        letter-spacing: -2.4px;
    }


    .clever-package {
        min-height: 530px;

        padding:
            30px 28px;
    }


    .clever-package__main h3 {
        font-size: 27px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    #packages.clever-packages {
        padding:
            75px 20px 80px;
    }


    .clever-packages__intro {
        display: block;

        margin-bottom: 50px;
    }


    .clever-packages__label {
        padding-top: 0;

        margin-bottom: 25px;
    }


    .clever-packages__intro-content {
        max-width: 100%;
    }


    .clever-packages__intro-content h2 {
        font-size: 43px;

        line-height: 1;

        letter-spacing: -2.2px;
    }


    .clever-packages__intro-content p {
        margin-top: 25px;

        font-size: 13px;
    }


    .clever-packages__grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .clever-package {
        min-height: 0;

        padding:
            30px 25px;
    }


    .clever-package__top {
        margin-bottom: 45px;
    }


    .clever-package__main h3 {
        font-size: 27px;
    }


    .clever-package__button {
        margin-top: 40px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .clever-packages__intro-content h2 {
        font-size: 39px;

        letter-spacing: -2px;
    }


    .clever-package__main h3 {
        font-size: 25px;
    }

}
/* =========================================================
   CLEVER MEDIA — FOUNDER
   STEP 11
   ========================================================= */

#founder.clever-founder {
    width: 100%;

    margin: 0;
    padding: 110px 43px 80px;

    background: #080808;

    color: #f3f3ef;

    box-sizing: border-box;

    overflow: hidden;
}


#founder.clever-founder *,
#founder.clever-founder *::before,
#founder.clever-founder *::after {
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.clever-founder__container {
    width: 100%;

    max-width: 1400px;

    margin: 0 auto;
}


/* =========================================================
   INTRO
   ========================================================= */

.clever-founder__intro {
    display: grid;

    grid-template-columns:
        280px minmax(0, 1fr);

    column-gap: 52px;

    align-items: start;

    margin-bottom: 85px;
}


/* =========================================================
   LABEL
   ========================================================= */

.clever-founder__label {
    padding-top: 8px;

    color: #ffd500;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 11px;

    font-weight: 600;

    line-height: 1.2;

    letter-spacing: 1.8px;
}


/* =========================================================
   INTRO HEADING
   ========================================================= */

.clever-founder__intro-content {
    max-width: 800px;
}


.clever-founder__intro-content h2 {
    margin: 0;
    padding: 0;

    color: #f3f3ef;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 53px;

    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -2.8px;
}


.clever-founder__intro-content p {
    max-width: 590px;

    margin: 32px 0 0;

    color: #858580;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.6;
}


/* =========================================================
   MAIN FOUNDER AREA
   ========================================================= */

.clever-founder__main {
    display: grid;

    grid-template-columns:
        minmax(350px, 0.85fr)
        minmax(450px, 1.15fr);

    gap: 70px;

    align-items: stretch;
}


/* =========================================================
   IMAGE AREA
   ========================================================= */

.clever-founder__image {
    min-height: 520px;

    background: #151515;

    border:
        1px solid rgba(
            255,
            255,
            255,
            0.13
        );

    overflow: hidden;
}


.clever-founder__image-placeholder {
    display: flex;

    align-items: flex-end;

    width: 100%;
    height: 100%;

    min-height: 520px;

    padding: 25px;

    background:
        linear-gradient(
            135deg,
            #181818 0%,
            #0e0e0e 100%
        );
}


.clever-founder__image-placeholder span {
    color: #555550;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1.8px;
}


/* =========================================================
   DETAILS
   ========================================================= */

.clever-founder__details {
    display: flex;

    flex-direction: column;

    min-height: 520px;
}


/* =========================================================
   FOUNDER NAME
   ========================================================= */

.clever-founder__small-label {
    display: block;

    margin-bottom: 14px;

    color: #777772;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 1.6px;
}


.clever-founder__name h3 {
    margin: 0;

    color: #f3f3ef;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 38px;

    font-weight: 400;

    line-height: 1;

    letter-spacing: -1.8px;
}


.clever-founder__name p {
    margin: 10px 0 0;

    color: #ffd500;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 12px;

    line-height: 1.4;
}


/* =========================================================
   BIO
   ========================================================= */

.clever-founder__bio {
    max-width: 560px;

    margin-top: 55px;
}


.clever-founder__bio p {
    margin: 0 0 22px;

    color: #858580;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.65;
}


.clever-founder__bio p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   QUOTE
   ========================================================= */

.clever-founder__quote {
    margin-top: auto;

    padding-top: 45px;

    border-top:
        1px solid rgba(
            255,
            255,
            255,
            0.14
        );
}


.clever-founder__quote-mark {
    display: block;

    margin-bottom: 8px;

    color: #ffd500;

    font-family:
        Georgia,
        serif;

    font-size: 40px;

    line-height: 0.7;
}


.clever-founder__quote blockquote {
    max-width: 570px;

    margin: 0;

    color: #f3f3ef;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 24px;

    font-weight: 400;

    line-height: 1.2;

    letter-spacing: -0.7px;
}


/* =========================================================
   BOTTOM LINE
   ========================================================= */

.clever-founder__bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 80px;

    padding-top: 20px;

    border-top:
        1px solid rgba(
            255,
            255,
            255,
            0.14
        );
}


.clever-founder__bottom span:first-child {
    color: #f3f3ef;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1.5px;
}


.clever-founder__bottom span:last-child {
    color: #666661;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 1.4px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    #founder.clever-founder {
        padding:
            90px 30px 70px;
    }


    .clever-founder__intro {
        grid-template-columns:
            220px minmax(0, 1fr);

        column-gap: 35px;

        margin-bottom: 65px;
    }


    .clever-founder__intro-content h2 {
        font-size: 47px;

        letter-spacing: -2.4px;
    }


    .clever-founder__main {
        grid-template-columns:
            minmax(280px, 0.8fr)
            minmax(350px, 1.2fr);

        gap: 45px;
    }


    .clever-founder__image,
    .clever-founder__image-placeholder {
        min-height: 450px;
    }


    .clever-founder__details {
        min-height: 450px;
    }


    .clever-founder__name h3 {
        font-size: 32px;
    }


    .clever-founder__quote blockquote {
        font-size: 21px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    #founder.clever-founder {
        padding:
            75px 20px 60px;
    }


    .clever-founder__intro {
        display: block;

        margin-bottom: 50px;
    }


    .clever-founder__label {
        padding-top: 0;

        margin-bottom: 25px;
    }


    .clever-founder__intro-content h2 {
        font-size: 43px;

        line-height: 1;

        letter-spacing: -2.2px;
    }


    .clever-founder__intro-content p {
        margin-top: 25px;

        font-size: 13px;
    }


    .clever-founder__main {
        display: block;
    }


    .clever-founder__image {
        min-height: 420px;

        margin-bottom: 40px;
    }


    .clever-founder__image-placeholder {
        min-height: 420px;
    }


    .clever-founder__details {
        min-height: 0;
    }


    .clever-founder__bio {
        margin-top: 40px;
    }


    .clever-founder__bio p {
        font-size: 13px;
    }


    .clever-founder__quote {
        margin-top: 45px;

        padding-top: 35px;
    }


    .clever-founder__quote blockquote {
        font-size: 21px;
    }


    .clever-founder__bottom {
        display: block;

        margin-top: 60px;
    }


    .clever-founder__bottom span {
        display: block;
    }


    .clever-founder__bottom span:last-child {
        margin-top: 15px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .clever-founder__intro-content h2 {
        font-size: 39px;

        letter-spacing: -2px;
    }


    .clever-founder__name h3 {
        font-size: 30px;
    }


    .clever-founder__quote blockquote {
        font-size: 20px;
    }

}
/* =========================================================
   CLEVER MEDIA — FOOTER
   STEP 12
   ========================================================= */

.clever-footer {
    width: 100%;

    margin: 0;
    padding: 75px 43px 25px;

    background: #080808;

    color: #f3f3ef;

    box-sizing: border-box;
}


.clever-footer *,
.clever-footer *::before,
.clever-footer *::after {
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.clever-footer__container {
    width: 100%;

    max-width: 1400px;

    margin: 0 auto;
}


/* =========================================================
   TOP
   ========================================================= */

.clever-footer__top {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    gap: 70px;

    padding-bottom: 75px;
}


/* =========================================================
   BRAND
   ========================================================= */

.clever-footer__logo {
    display: inline-block;

    text-decoration: none;
}


.clever-footer__logo-img {
    display: block;

    height: 32px;

    width: auto;
}


.clever-footer__brand p {
    margin: 20px 0 0;

    color: #777772;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================================
   NAVIGATION / CONTACT
   ========================================================= */

.clever-footer__nav,
.clever-footer__contact {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


.clever-footer__nav span,
.clever-footer__contact span {
    margin-bottom: 22px;

    color: #ffd500;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.6px;
}


.clever-footer__nav a,
.clever-footer__contact a {
    margin-bottom: 11px;

    color: #858580;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 12px;

    text-decoration: none;

    transition:
        color 0.2s ease;
}


.clever-footer__nav a:hover,
.clever-footer__contact a:hover {
    color: #ffd500;
}


/* =========================================================
   BOTTOM
   ========================================================= */

.clever-footer__bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-top: 20px;

    border-top:
        1px solid rgba(
            255,
            255,
            255,
            0.13
        );
}


.clever-footer__bottom span,
.clever-footer__bottom a {
    color: #555550;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 1.3px;

    text-decoration: none;
}


.clever-footer__bottom a {
    transition:
        color 0.2s ease;
}


.clever-footer__bottom a:hover {
    color: #ffd500;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .clever-footer {
        padding:
            65px 30px 25px;
    }


    .clever-footer__top {
        gap: 40px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .clever-footer {
        padding:
            60px 20px 25px;
    }


    .clever-footer__top {
        grid-template-columns: 1fr;

        gap: 45px;

        padding-bottom: 55px;
    }


    .clever-footer__bottom {
        display: block;
    }


    .clever-footer__bottom span,
    .clever-footer__bottom a {
        display: block;
    }


    .clever-footer__bottom span:nth-child(2) {
        margin-top: 14px;
    }


    .clever-footer__bottom a {
        margin-top: 14px;
    }

}
/* =========================================
   CLEVER CONTACT SECTION
   ========================================= */

.clever-contact {
    position: relative;
    width: 100%;
    padding: 140px 0;
    background: #111111;
    color: #ffffff;
    overflow: hidden;
}

.clever-contact__container {
    width: min(1200px, calc(100% - 80px));
    margin: 0 auto;
}

/* Small Section Label */
.clever-contact__label {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 55px;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: #999999;
}

.clever-contact__label::before {
    content: "";
    width: 32px;
    height: 1px;
    background: #666666;
}

/* Main Content */
.clever-contact__content {
    max-width: 850px;
}

.clever-contact__content h2 {
    margin: 0 0 30px;

    font-size: clamp(48px, 7vw, 96px);
    line-height: 0.95;
    font-weight: 500;
    letter-spacing: -3px;

    color: #ffffff;
}

.clever-contact__content p {
    max-width: 600px;

    margin: 0 0 45px;

    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;

    color: #a5a5a5;
}

/* CTA Button */
.clever-contact__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 35px;

    min-width: 230px;
    padding: 18px 24px;

    background: #ffffff;
    color: #111111;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;

    border: 1px solid #ffffff;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.clever-contact__button span {
    font-size: 20px;
    line-height: 1;

    transition: transform 0.3s ease;
}

/* Hover Effect */
.clever-contact__button:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-3px);
}

.clever-contact__button:hover span {
    transform: translate(4px, -4px);
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 991px) {

    .clever-contact {
        padding: 110px 0;
    }

    .clever-contact__container {
        width: min(100% - 50px, 850px);
    }

    .clever-contact__label {
        margin-bottom: 40px;
    }

    .clever-contact__content h2 {
        font-size: clamp(50px, 9vw, 76px);
        letter-spacing: -2px;
    }

    .clever-contact__content p {
        font-size: 17px;
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

    .clever-contact {
        padding: 80px 0;
    }

    .clever-contact__container {
        width: calc(100% - 40px);
    }

    .clever-contact__label {
        margin-bottom: 30px;

        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .clever-contact__label::before {
        width: 22px;
    }

    .clever-contact__content h2 {
        margin-bottom: 25px;

        font-size: clamp(42px, 13vw, 60px);
        line-height: 0.98;
        letter-spacing: -1.5px;
    }

    .clever-contact__content p {
        margin-bottom: 35px;

        font-size: 16px;
        line-height: 1.6;
    }

    .clever-contact__button {
        width: 100%;
        min-width: 0;

        padding: 17px 20px;

        justify-content: space-between;
    }
}
/* cta.css */
* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f5f5;
    color: #050505;
}

.cta-section {
    width: 100%;
    min-height: 585px;
    background: #ffd600;
    display: flex;
    align-items: center;
    padding: 58px 4%;
}

.cta-container {
    width: min(1020px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
    gap: 58px;
    align-items: center;
}

.cta-copy h1 {
    margin: 0;
    color: #000;
    font-size: clamp(40px, 4.15vw, 54px);
    line-height: 0.98;
    letter-spacing: -2.5px;
    font-weight: 700;
}

.cta-copy p {
    max-width: 560px;
    margin: 28px 0 40px;
    font-size: 16px;
    line-height: 1.55;
    color: #4d4300;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #111;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding-bottom: 7px;
    border-bottom: 1px solid #111;
}

.email-link span {
    font-size: 19px;
    line-height: 1;
}

.form-card {
    border: 2px solid rgba(0, 0, 0, 0.12);
    padding: 28px 28px 27px;
    background: rgba(255, 214, 0, 0.32);
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.field {
    min-width: 0;
}

label {
    display: block;
    margin: 0 0 9px;
    font-size: 12px;
    font-weight: 600;
    color: #564900;
}

input,
textarea {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.17);
    border-radius: 0;
    outline: none;
    background: rgba(255, 214, 0, 0.35);
    color: #111;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

input {
    height: 48px;
    padding: 0 14px;
}

textarea {
    height: 96px;
    padding: 14px;
    resize: vertical;
    min-height: 80px;
}

input::placeholder,
textarea::placeholder {
    color: #5f5409;
    opacity: 1;
}

input:focus,
textarea:focus {
    border-color: #111;
    background: rgba(255, 214, 0, 0.55);
}

.project-field,
.field-row + .field {
    margin-top: 20px;
}

button {
    width: 100%;
    height: 49px;
    margin-top: 24px;
    padding: 0 16px;
    border: 0;
    border-radius: 0;
    background: #050505;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease;
}

button:hover {
    background: #222;
    transform: translateY(-1px);
}

button .arrow {
    font-size: 21px;
    font-weight: 400;
    line-height: 1;
}

.message {
    padding: 12px 14px;
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 1.4;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.message.success {
    background: rgba(255, 255, 255, 0.3);
}

.message.error {
    background: rgba(255, 80, 80, 0.18);
}

/* Tablet */
@media (max-width: 850px) {
    .cta-section {
        padding: 55px 6%;
    }

    .cta-container {
        grid-template-columns: 1fr;
        gap: 42px;
        max-width: 650px;
    }

    .cta-copy h1 {
        font-size: clamp(40px, 8vw, 52px);
    }
}

/* Mobile */
@media (max-width: 560px) {
    .cta-section {
        min-height: 100vh;
        padding: 42px 20px;
    }

    .cta-copy h1 {
        font-size: 39px;
        letter-spacing: -1.8px;
    }

    .cta-copy p {
        margin: 24px 0 30px;
        font-size: 14px;
    }

    .form-card {
        padding: 22px 18px 20px;
    }

    .field-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .project-field {
        margin-top: 18px;
    }
}
/* why.css */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    background: #080808;
    color: #f5f5f5;
    font-family: Arial, Helvetica, sans-serif;
}

.why-section {
    width: 100%;
    min-height: 100vh;
    background: #080808;
    overflow: hidden;
}

.why-main {
    width: 100%;
    min-height: 510px;
    display: grid;
    grid-template-columns: 50% 50%;
    border-top: 1px solid #242424;
    border-bottom: 1px solid #242424;
}

.why-intro {
    background: #ffd600;
    color: #070707;
    padding: 70px 6.3%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow {
    margin-bottom: 43px;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 2px;
    font-weight: 700;
}

.why-intro h1 {
    margin: 0;
    font-size: clamp(42px, 4.25vw, 57px);
    line-height: 0.98;
    letter-spacing: -2.8px;
    font-weight: 500;
}

.why-disciplines {
    background: #080808;
    padding: 56px 6.3% 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.discipline {
    padding: 0 0 29px;
}

.discipline + .discipline {
    padding-top: 30px;
}

.discipline:not(:last-child) {
    border-bottom: 1px solid #272727;
}

.discipline-label {
    margin-bottom: 9px;
    color: #8b8b8b;
    font-size: 12px;
    line-height: 1.2;
}

.discipline h2 {
    margin: 0;
    color: #f1f1f1;
    font-size: clamp(24px, 2.05vw, 30px);
    line-height: 1.08;
    letter-spacing: -0.8px;
    font-weight: 600;
}

.keywords {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(22px, 3vw, 40px);
    padding: 18px 30px;
    color: #8d8d8d;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
}

.keywords span {
    display: inline-block;
}

@media (max-width: 850px) {
    .why-main {
        grid-template-columns: 1fr;
    }

    .why-intro {
        min-height: 390px;
        padding: 55px 8%;
    }

    .why-disciplines {
        min-height: 420px;
        padding: 50px 8%;
    }

    .why-intro h1 {
        font-size: clamp(42px, 8vw, 58px);
    }

    .discipline h2 {
        font-size: 28px;
    }

    .keywords {
        flex-wrap: wrap;
        gap: 18px 28px;
        white-space: normal;
    }
}

@media (max-width: 560px) {
    .why-intro {
        min-height: 350px;
        padding: 45px 25px 50px;
    }

    .eyebrow {
        margin-bottom: 31px;
        font-size: 10px;
        letter-spacing: 1.7px;
    }

    .why-intro h1 {
        font-size: 42px;
        line-height: 0.98;
        letter-spacing: -2px;
    }

    .why-disciplines {
        min-height: auto;
        padding: 40px 25px;
    }

    .discipline {
        padding-bottom: 25px;
    }

    .discipline + .discipline {
        padding-top: 25px;
    }

    .discipline-label {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .discipline h2 {
        font-size: 24px;
        line-height: 1.08;
        letter-spacing: -0.5px;
    }

    .desktop-break {
        display: none;
    }

    .keywords {
        min-height: auto;
        padding: 25px 22px;
        justify-content: flex-start;
        gap: 14px 24px;
        font-size: 11px;
    }
}
*{box-sizing:border-box}html,body{margin:0;padding:0;width:100%}body{background:#080808;color:#f5f5f5;font-family:Arial,Helvetica,sans-serif}.founder-section{width:100%;min-height:665px;background:#080808;border-top:1px solid #242424;border-bottom:1px solid #242424;display:flex;align-items:center}.founder-container{width:100%;max-width:1120px;margin:0 auto;padding:72px 40px;display:grid;grid-template-columns:42% 58%;gap:42px;align-items:center}.founder-card{position:relative;height:486px;overflow:hidden;background:#151515;color:#eee;padding:31px 28px}.founder-card-top{position:relative;z-index:2;color:#999;font-size:12px;line-height:1.2}.founder-card-bottom{position:absolute;z-index:3;left:28px;bottom:39px}.founder-card-bottom h2{margin:0 0 9px;font-size:25px;line-height:1;letter-spacing:-.5px;font-weight:600}.founder-card-bottom p{margin:0;color:#999;font-size:12px}.founder-mark{position:absolute;right:-43px;bottom:-79px;color:#ffd600;font-size:230px;line-height:.9;font-weight:700}.founder-content{padding-bottom:4px}.eyebrow{margin-bottom:28px;color:#ffd600;font-size:12px;line-height:1;letter-spacing:2px;font-weight:700}.founder-content h1{margin:0;color:#f4f4f4;font-size:clamp(42px,4.15vw,58px);line-height:.98;letter-spacing:-2.8px;font-weight:500}.founder-description{max-width:580px;margin:32px 0 0;color:#999;font-size:15px;line-height:1.68}blockquote{margin:48px 0 0;display:flex;align-items:stretch;gap:20px}.quote-line{flex:0 0 3px;width:3px;min-height:72px;background:#ffd600}blockquote p{margin:0;color:#f0f0f0;font-size:24px;line-height:1.35;letter-spacing:-.5px;font-weight:600}@media(max-width:900px){.founder-container{grid-template-columns:1fr;max-width:700px;gap:50px;padding:60px 35px}.founder-card{height:430px}.founder-content h1{font-size:clamp(42px,7vw,56px)}}@media(max-width:560px){.founder-section{min-height:auto}.founder-container{padding:45px 22px 55px;gap:42px}.founder-card{height:390px;padding:25px 22px}.founder-card-bottom{left:22px;bottom:30px}.founder-card-bottom h2{font-size:22px}.founder-mark{right:-48px;bottom:-70px;font-size:200px}.eyebrow{margin-bottom:23px;font-size:10px;letter-spacing:1.7px}.founder-content h1{font-size:40px;line-height:1;letter-spacing:-2px}.founder-description{margin-top:25px;font-size:14px;line-height:1.6}blockquote{margin-top:35px;gap:15px}.quote-line{min-height:78px}blockquote p{font-size:20px;line-height:1.3}.desktop-break{display:none}}


/* =========================================================
   PORTFOLIO PAGE
   ========================================================= */

.clever-portfolio {
    padding-top: var(--section-padding-desktop);
    padding-bottom: var(--section-padding-desktop);
}

.clever-portfolio__intro {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 60px;
}

.clever-portfolio__intro h1 {
    font-size: clamp(38px, 4.4vw, 60px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--color-text);
    max-width: 720px;
}

.clever-portfolio__intro p {
    grid-column: 2;
    margin-top: 18px;
    color: var(--color-text-soft);
    font-size: 16px;
    line-height: 1.65;
    max-width: 560px;
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 46px;
}

.portfolio-filter {
    padding: 10px 20px;
    background: transparent;
    color: var(--color-text-soft);
    border: 1px solid var(--color-border-light);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        border-color var(--transition-fast),
        color var(--transition-fast),
        background var(--transition-fast);
}

.portfolio-filter:hover {
    color: var(--color-text);
    border-color: var(--color-border-light);
}

.portfolio-filter.active {
    background: var(--color-yellow);
    border-color: var(--color-yellow);
    color: #050505;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.portfolio-item {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.portfolio-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background:
        linear-gradient(
            135deg,
            var(--color-card) 0%,
            var(--color-bg-soft) 100%
        );
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.portfolio-thumb img,
.portfolio-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portfolio-thumb iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.portfolio-thumb-placeholder {
    color: var(--color-text-muted);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    padding: 0 20px;
}

.portfolio-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 214, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #050505;
    font-size: 18px;
    pointer-events: none;
}

.portfolio-body {
    padding: 22px 24px 26px;
}

.portfolio-tag {
    display: inline-block;
    color: var(--color-yellow);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.portfolio-item h3 {
    font-size: 19px;
    line-height: 1.3;
    color: var(--color-text);
    margin-bottom: 8px;
}

.portfolio-item p {
    color: var(--color-text-soft);
    font-size: 14px;
    line-height: 1.6;
}

.portfolio-item.is-hidden {
    display: none;
}

.portfolio-empty {
    padding: 60px 30px;
    text-align: center;
    border: 1px dashed var(--color-border-light);
    color: var(--color-text-soft);
    font-size: 15px;
}

.clever-portfolio__cta-note {
    margin-top: 70px;
    padding-top: 46px;
    border-top: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.clever-portfolio__cta-note p {
    color: var(--color-text-soft);
    font-size: 16px;
    max-width: 480px;
    margin: 0;
}


@media (max-width: 900px) {

    .clever-portfolio__intro {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .clever-portfolio__intro p {
        grid-column: 1;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 560px) {

    .clever-portfolio {
        padding-top: var(--section-padding-mobile);
        padding-bottom: var(--section-padding-mobile);
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .clever-portfolio__cta-note {
        flex-direction: column;
        align-items: flex-start;
    }

}

/* =========================================================
   FOUNDER PHOTO (admin "Founder Photo" tab)
   ========================================================= */

.founder-card-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.founder-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 8, 8, .25) 0%, rgba(8, 8, 8, .92) 100%);
    z-index: 1;
    pointer-events: none;
}

/* =========================================================
   BRAND LOGO — pure CSS, no image file.
   Always matches the site's actual colors exactly since it
   uses the same variables as everything else, and can never
   show a mismatched background box behind it.
   ========================================================= */

.brand-logo {
    display: inline-flex;
    align-items: baseline;
    text-decoration: none;
    line-height: 1;
    font-family: var(--font-main);
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 21px;
    color: var(--color-text);
    transition: opacity var(--transition-fast);
}

.brand-logo:hover {
    opacity: 0.75;
}

.brand-logo__word {
    color: var(--color-text);
    margin-right: 9px;
}

.brand-logo__word:last-child {
    margin-right: 0;
}

.brand-logo__glyph {
    position: relative;
    color: var(--color-yellow);
}

/* small bulb-base accent under the "C" */
.brand-logo__glyph--bulb::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    width: 9px;
    height: 3px;
    background: var(--color-yellow);
    border-radius: 1px;
}

/* small pen-nib accent under the "M" */
.brand-logo__glyph--pen::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -7px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 3.5px solid transparent;
    border-right: 3.5px solid transparent;
    border-top: 6px solid var(--color-yellow);
}

.clever-footer__logo .brand-logo {
    font-size: 19px;
}

/* =========================================================
   WHATSAPP FLOATING BUTTON
   ========================================================= */

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 900;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;
    border-radius: 50%;

    background: #25d366;
    color: #ffffff;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);

    animation: whatsapp-float-in 0.6s ease-out;
}

.whatsapp-float::before,
.whatsapp-float::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25d366;
    z-index: -1;
    animation: whatsapp-pulse 2.4s ease-out infinite;
}

.whatsapp-float::after {
    animation-delay: 1.2s;
}

.whatsapp-float svg {
    animation: whatsapp-wiggle 4.5s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.55;
    }
    100% {
        transform: scale(1.9);
        opacity: 0;
    }
}

@keyframes whatsapp-float-in {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes whatsapp-wiggle {
    0%, 88%, 100% {
        transform: rotate(0deg);
    }
    90% {
        transform: rotate(-12deg);
    }
    92% {
        transform: rotate(10deg);
    }
    94% {
        transform: rotate(-8deg);
    }
    96% {
        transform: rotate(4deg);
    }
    98% {
        transform: rotate(0deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-float,
    .whatsapp-float::before,
    .whatsapp-float::after,
    .whatsapp-float svg {
        animation: none;
    }
}

@media (max-width: 767px) {
    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }
}
