@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&display=swap');


:root {

    --bg: #080b0d;
    --bg-soft: #0e1316;

    --card: #11181c;
    --card-hover: #151f24;

    --text: #f4f7f8;
    --muted: #9aa6ac;

    --border: rgba(255,255,255,0.09);

    --eczico-green: #4dbd45;
    --eczico-cyan: #14cddf;

    --worthit: #8567ff;
    --worthit-light: #a891ff;
    --worthit-dark: #5a3fe8;

    --max-width: 1180px;
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    margin: 0;

    background:
        radial-gradient(
            circle at 75% 0%,
            rgba(20,205,223,0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 20% 20%,
            rgba(77,189,69,0.05),
            transparent 25%
        ),
        var(--bg);

    color: var(--text);

    font-family:
        'Nunito',
        Arial,
        Helvetica,
        sans-serif;

    line-height: 1.6;
}


a {
    color: inherit;
    text-decoration: none;
}


img {
    display: block;
    max-width: 100%;
}


.container {

    width: min(92%, var(--max-width));

    margin: 0 auto;
}



/* HEADER */


header {

    position: sticky;

    top: 0;

    z-index: 100;

    background:
        rgba(8,11,13,0.88);

    backdrop-filter:
        blur(18px);

    border-bottom:
        1px solid var(--border);
}


.nav {

    height: 74px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.brand {

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 1.35rem;

    font-weight: 900;
}


.brand img {

    width: 46px;

    height: 46px;

    object-fit: contain;
}


.nav-links {

    display: flex;

    gap: 28px;

    color: var(--muted);

    font-weight: 700;
}


.nav-links a {

    transition: 0.2s ease;
}


.nav-links a:hover {

    color: var(--text);
}



/* GLOBAL */


section {
    padding: 72px 0;
}


.eyebrow {

    color: var(--eczico-green);

    text-transform: uppercase;

    letter-spacing: 0.18em;

    font-size: 0.78rem;

    font-weight: 900;
}


.section-title {

    font-size:
        clamp(2rem, 4.6vw, 3.2rem);

    margin:
        0 0 12px;

    line-height: 1.08;

    font-weight: 900;
}


.section-copy {

    color: var(--muted);

    max-width: 650px;

    margin-bottom: 40px;
}


.gradient-text {

    background:
        linear-gradient(
            90deg,
            var(--eczico-green),
            var(--eczico-cyan)
        );

    -webkit-background-clip: text;

    color: transparent;
}



/* BUTTONS */


.buttons {

    margin-top: 30px;

    display: flex;

    gap: 16px;

    flex-wrap: wrap;
}


.button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 14px 24px;

    min-height: 52px;

    border-radius: 15px;

    font-weight: 900;

    border:
        1px solid transparent;

    transition:
        0.2s ease;
}


.button:hover {

    transform:
        translateY(-2px);
}


.button-primary {

    color: #05100d;

    background:
        linear-gradient(
            90deg,
            var(--eczico-green),
            var(--eczico-cyan)
        );
}


.button-secondary {

    border-color:
        var(--border);

    background:
        rgba(255,255,255,0.03);
}


.button-worthit {

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--worthit),
            var(--worthit-dark)
        );

    box-shadow:
        0 12px 40px
        rgba(133,103,255,0.18);
}


.disabled-button {

    cursor: default;

    opacity: 0.92;
}


.disabled-button:hover {

    transform: none;
}



/* HOMEPAGE HERO */


.hero {

    min-height: 520px;

    display: grid;

    grid-template-columns:
        1.1fr 0.9fr;

    align-items: center;

    gap: 50px;

    padding:
        70px 0 75px;
}


.hero h1 {

    font-size:
        clamp(3rem, 5.6vw, 5.2rem);

    line-height: 1.02;

    margin:
        16px 0 22px;

    max-width: 720px;

    font-weight: 900;
}


.hero p {

    color: var(--muted);

    font-size: 1.12rem;

    max-width: 650px;

    margin: 0;
}


.hero-logo {

    display: flex;

    justify-content: center;

    align-items: center;
}


.hero-logo img {

    width:
        min(330px, 80%);

    filter:
        drop-shadow(
            0 0 40px
            rgba(20,205,223,0.16)
        );
}



/* HOMEPAGE APPS */


.apps-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 24px;
}


.app-card {

    min-height: 410px;

    border:
        1px solid var(--border);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.04),
            rgba(255,255,255,0.015)
        );

    border-radius: 28px;

    padding: 32px;

    position: relative;

    overflow: hidden;

    transition:
        0.25s ease;
}


.app-card:hover {

    transform:
        translateY(-4px);

    background:
        var(--card-hover);
}


.app-card-worthit::after {

    content: "";

    position: absolute;

    width: 280px;

    height: 280px;

    right: -90px;

    bottom: -90px;

    background:
        rgba(133,103,255,0.20);

    filter:
        blur(60px);

    border-radius: 50%;

    pointer-events: none;
}


.app-card-clock::after {

    content: "";

    position: absolute;

    width: 260px;

    height: 260px;

    right: -100px;

    bottom: -100px;

    background:
        rgba(20,205,223,0.08);

    filter:
        blur(70px);

    border-radius: 50%;

    pointer-events: none;
}


.app-card-coming {

    opacity: 0.82;
}


.app-card-coming:hover {

    transform: none;
}


.app-icon {

    width: 80px;

    height: 80px;

    border-radius: 22px;

    margin-bottom: 24px;
}


.clock-placeholder {

    width: 80px;

    height: 80px;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            #152a31,
            #0e171b
        );

    border:
        1px solid
        rgba(20,205,223,0.25);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 2rem;

    margin-bottom: 24px;
}


.app-card h3 {

    font-size: 2rem;

    margin:
        0 0 10px;

    font-weight: 900;
}


.app-card p {

    color: var(--muted);

    max-width: 450px;
}


.status {

    display: inline-block;

    margin-bottom: 20px;

    padding:
        7px 12px;

    border-radius: 999px;

    background:
        rgba(255,255,255,0.06);

    color: var(--muted);

    font-size: 0.84rem;

    font-weight: 800;
}


.link {

    display: inline-block;

    margin-top: 8px;

    font-weight: 900;

    color:
        var(--eczico-cyan);

    position: relative;

    z-index: 2;
}


.coming-text {

    display: inline-block;

    margin-top: 12px;

    color: #7f8b91;

    font-size: 0.92rem;

    font-weight: 800;
}



/* HOMEPAGE BENEFITS */


.benefits-section {
    padding-top: 36px;
}


.info-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}


.info-card {

    background:
        var(--card);

    border:
        1px solid var(--border);

    border-radius: 22px;

    padding: 28px;
}


.info-icon {

    width: 44px;

    height: 44px;

    border-radius: 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(77,189,69,0.15),
            rgba(20,205,223,0.12)
        );

    color:
        var(--eczico-cyan);

    border:
        1px solid
        rgba(20,205,223,0.15);

    font-size: 1.25rem;

    font-weight: 900;
}


.info-card h3 {

    margin:
        0 0 12px;

    font-weight: 900;
}


.info-card p {

    color: var(--muted);

    margin: 0;
}



/* HOMEPAGE CONTACT */


.contact-cta {
    padding-top: 30px;
}


.contact-box {

    border:
        1px solid var(--border);

    border-radius: 28px;

    padding: 36px;

    background:
        linear-gradient(
            135deg,
            rgba(77,189,69,0.05),
            rgba(20,205,223,0.05)
        );

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 40px;
}


.contact-box h2 {

    margin:
        8px 0;

    font-size:
        clamp(1.8rem, 4vw, 2.7rem);

    font-weight: 900;
}


.contact-box p {

    color: var(--muted);

    margin: 0;

    max-width: 650px;
}



/* ============================= */
/* WORTHIT */
/* ============================= */


.worthit-hero {

    position: relative;

    overflow: hidden;

    padding:
        90px 0;
}


.worthit-hero::before {

    content: "";

    position: absolute;

    width: 600px;

    height: 600px;

    right: -220px;

    top: -180px;

    border-radius: 50%;

    background:
        rgba(133,103,255,0.14);

    filter:
        blur(100px);

    pointer-events: none;
}


.worthit-hero-grid {

    display: grid;

    grid-template-columns:
        1fr 0.75fr;

    gap: 80px;

    align-items: center;
}


.worthit-brand-row {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 30px;
}


.worthit-small-logo {

    width: 74px;

    height: 74px;

    border-radius: 20px;
}


.worthit-label {

    color:
        var(--worthit-light);

    text-transform: uppercase;

    letter-spacing: 0.13em;

    font-size: 0.72rem;

    font-weight: 900;
}


.worthit-brand-name {

    font-size: 1.6rem;

    font-weight: 900;
}


.worthit-hero h1 {

    font-size:
        clamp(3rem, 5.8vw, 5.6rem);

    line-height: 1.01;

    margin:
        0 0 24px;

    max-width: 780px;

    font-weight: 900;
}


.worthit-gradient {

    background:
        linear-gradient(
            90deg,
            var(--worthit-light),
            var(--worthit)
        );

    -webkit-background-clip: text;

    color: transparent;
}


.worthit-lead {

    color: var(--muted);

    font-size: 1.18rem;

    max-width: 650px;
}


.worthit-points {

    display: flex;

    flex-direction: column;

    gap: 10px;

    margin-top: 28px;
}


.worthit-point {

    display: flex;

    gap: 12px;

    align-items: center;

    font-weight: 700;
}


.worthit-point span {

    width: 26px;

    height: 26px;

    border-radius: 50%;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(133,103,255,0.14);

    color:
        var(--worthit-light);

    font-weight: 900;
}



/* FEATURE PHONE */


.worthit-phone-feature {

    position: relative;

    display: flex;

    justify-content: center;
}


.phone-shell {

    width: 300px;

    border-radius: 36px;

    overflow: hidden;

    border:
        8px solid #15151b;

    box-shadow:
        0 35px 80px
        rgba(0,0,0,0.55);

    background: #111;
}


.phone-shell img {

    width: 100%;

    display: block;
}


.result-floating-card {

    position: absolute;

    left: -35px;

    bottom: 70px;

    width: 210px;

    padding: 18px;

    background:
        rgba(30,28,40,0.94);

    border:
        1px solid
        rgba(133,103,255,0.3);

    backdrop-filter:
        blur(14px);

    border-radius: 20px;

    box-shadow:
        0 20px 45px
        rgba(0,0,0,0.35);
}


.result-floating-card span {

    display: block;

    color:
        var(--worthit-light);

    font-size: 0.67rem;

    font-weight: 900;
}


.result-floating-card strong {

    display: block;

    font-size: 2.4rem;

    line-height: 1.1;

    margin:
        6px 0;
}


.result-floating-card small {

    color: var(--muted);

    font-weight: 700;
}



/* WORTHIT FEATURES */


.worthit-section {

    background:
        rgba(255,255,255,0.01);

    border-top:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);
}


.worthit-eyebrow {

    color:
        var(--worthit-light);

    text-transform: uppercase;

    letter-spacing: 0.16em;

    font-weight: 900;

    font-size: 0.75rem;

    margin-bottom: 10px;
}


.worthit-features {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}


.worthit-feature {

    padding: 28px;

    border-radius: 22px;

    background:
        rgba(255,255,255,0.025);

    border:
        1px solid var(--border);
}


.worthit-feature-number {

    color:
        var(--worthit);

    font-size: 0.85rem;

    font-weight: 900;

    margin-bottom: 20px;
}


.worthit-feature h3 {

    font-size: 1.35rem;

    margin:
        0 0 10px;
}


.worthit-feature p {

    color:
        var(--muted);

    margin: 0;
}



/* RESULT SECTION */


.worthit-result-grid {

    display: grid;

    grid-template-columns:
        1fr 0.8fr;

    gap: 70px;

    align-items: center;
}


.worthit-result-demo {

    padding: 34px;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            #24222e,
            #1d1c27
        );

    border:
        1px solid
        rgba(133,103,255,0.22);

    box-shadow:
        0 30px 80px
        rgba(0,0,0,0.3);
}


.demo-label {

    color:
        var(--worthit-light);

    font-size: 0.75rem;

    font-weight: 900;

    letter-spacing: 0.05em;
}


.demo-big-number {

    font-size:
        clamp(3.4rem, 7vw, 5rem);

    font-weight: 900;

    line-height: 1;

    margin-top: 16px;
}


.demo-sub {

    font-size: 1.45rem;

    font-weight: 800;

    color: #d0cbd8;

    margin-top: 8px;
}


.demo-divider {

    height: 1px;

    background:
        rgba(255,255,255,0.12);

    margin:
        24px 0;
}


.worthit-result-demo p {

    color:
        #cbc7d0;
}


.demo-real-cost {

    margin-top: 26px;

    color:
        var(--worthit-light);

    font-size: 0.75rem;

    font-weight: 900;
}


.demo-cost-text {

    display: block;

    margin-top: 6px;

    font-size: 1.4rem;

    line-height: 1.2;
}



/* SCREENSHOTS */


.worthit-screens-section {

    background:
        rgba(255,255,255,0.012);

    border-top:
        1px solid var(--border);
}


.screens-scroll {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

    margin-top: 40px;
}


.screen-card {

    min-width: 0;
}


.screen-label {

    margin-bottom: 14px;

    font-weight: 900;

    color:
        var(--worthit-light);
}


.screen-phone {

    overflow: hidden;

    border-radius: 28px;

    border:
        6px solid #17171d;

    background: #101014;

    box-shadow:
        0 18px 45px
        rgba(0,0,0,0.3);
}


.screen-phone img {

    width: 100%;

    display: block;
}



/* PRIVACY */


.worthit-privacy-box {

    max-width: 900px;

    margin: 0 auto;

    padding: 38px;

    border-radius: 28px;

    border:
        1px solid
        rgba(133,103,255,0.20);

    background:
        linear-gradient(
            135deg,
            rgba(133,103,255,0.08),
            rgba(133,103,255,0.02)
        );

    display: grid;

    grid-template-columns:
        auto 1fr;

    gap: 26px;
}


.privacy-symbol {

    width: 58px;

    height: 58px;

    border-radius: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(133,103,255,0.14);

    color:
        var(--worthit-light);

    font-size: 1.7rem;
}


.privacy-content h2 {

    margin:
        5px 0 10px;

    font-size:
        clamp(1.8rem, 4vw, 2.6rem);
}


.privacy-content p {

    color:
        var(--muted);

    max-width: 700px;
}


.worthit-text-link {

    color:
        var(--worthit-light);

    font-weight: 900;
}



/* FINAL CTA */


.worthit-final-cta {

    padding-top: 30px;
}


.worthit-final-box {

    text-align: center;

    max-width: 760px;

    margin: 0 auto;

    padding:
        50px 30px;

    border-radius: 30px;

    border:
        1px solid var(--border);

    background:
        radial-gradient(
            circle at center top,
            rgba(133,103,255,0.12),
            transparent 65%
        );
}


.worthit-final-box img {

    width: 90px;

    height: 90px;

    margin:
        0 auto 24px;

    border-radius: 24px;
}


.worthit-final-box h2 {

    font-size:
        clamp(2rem, 4vw, 3rem);

    margin:
        0 auto 12px;

    line-height: 1.1;
}


.worthit-final-box p {

    color:
        var(--muted);

    max-width: 520px;

    margin:
        0 auto 28px;
}



/* FOOTER */


footer {

    border-top:
        1px solid var(--border);

    padding:
        34px 0;

    margin-top: 40px;

    color:
        var(--muted);
}


.footer-inner {

    display: flex;

    justify-content:
        space-between;

    gap: 24px;

    flex-wrap: wrap;
}


.footer-links {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;
}


.footer-links a:hover {

    color: var(--text);
}



/* TABLET */


@media (max-width: 950px) {

    .worthit-hero-grid {

        grid-template-columns:
            1fr 0.7fr;

        gap: 40px;
    }


    .screens-scroll {

        grid-template-columns:
            repeat(2, 1fr);
    }

}



/* MOBILE */


@media (max-width: 820px) {

    .nav-links {
        display: none;
    }


    .hero {

        grid-template-columns: 1fr;

        min-height: auto;

        padding-top: 45px;
    }


    .hero-logo {

        order: -1;
    }


    .hero-logo img {

        width:
            min(240px, 65%);
    }


    .apps-grid,
    .info-grid,
    .worthit-features,
    .worthit-result-grid {

        grid-template-columns: 1fr;
    }


    .contact-box {

        flex-direction: column;

        align-items: flex-start;
    }


    .worthit-hero-grid {

        grid-template-columns: 1fr;
    }


    .worthit-phone-feature {

        margin-top: 30px;
    }


    .result-floating-card {

        left: 5%;
    }


    .worthit-privacy-box {

        grid-template-columns: 1fr;
    }

}



/* SMALL MOBILE */


@media (max-width: 560px) {

    section {

        padding:
            56px 0;
    }


    .hero h1 {

        font-size: 3rem;
    }


    .worthit-hero {

        padding:
            55px 0;
    }


    .worthit-hero h1 {

        font-size:
            3.25rem;
    }


    .worthit-brand-row {

        margin-bottom: 22px;
    }


    .worthit-small-logo {

        width: 62px;

        height: 62px;
    }


    .phone-shell {

        width: 270px;
    }


    .result-floating-card {

        width: 185px;

        bottom: 55px;
    }


    .screens-scroll {

        display: flex;

        overflow-x: auto;

        gap: 16px;

        padding-bottom: 18px;

        scroll-snap-type:
            x mandatory;
    }


    .screen-card {

        min-width: 78vw;

        scroll-snap-align: start;
    }


    .worthit-feature {

        padding: 24px;
    }


    .worthit-result-demo {

        padding: 26px;
    }


    .worthit-privacy-box {

        padding: 28px;
    }


    .app-card {

        min-height: auto;
    }


    .contact-box {

        padding: 26px;
    }

}
/* ============================= */
/* CLOCKINCASH COMING SOON */
/* ============================= */

.clock-coming-page {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 74px);
    display: flex;
    align-items: center;
    padding: 90px 0;
}

.clock-coming-glow {
    position: absolute;
    width: 620px;
    height: 620px;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(20,205,223,0.10),
            rgba(77,189,69,0.04),
            transparent 70%
        );
    filter: blur(30px);
    pointer-events: none;
}

.clock-coming-wrap {
    position: relative;
    z-index: 2;
}

.clock-coming-card {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;

    padding: 60px 50px;

    border-radius: 30px;

    border:
        1px solid var(--border);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.035),
            rgba(255,255,255,0.012)
        );

    box-shadow:
        0 30px 90px
        rgba(0,0,0,0.28);
}

.clock-coming-icon {
    width: 96px;
    height: 96px;

    margin:
        0 auto 28px;

    border-radius: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 2.6rem;

    background:
        linear-gradient(
            135deg,
            rgba(77,189,69,0.14),
            rgba(20,205,223,0.16)
        );

    border:
        1px solid
        rgba(20,205,223,0.24);

    color:
        var(--eczico-cyan);
}

.clock-coming-card h1 {
    font-size:
        clamp(3rem, 7vw, 5rem);

    line-height: 1;

    margin:
        12px 0 20px;

    font-weight: 900;
}

.clock-coming-lead {
    font-size: 1.35rem;
    font-weight: 800;

    margin:
        0 auto 18px;

    max-width: 560px;
}

.clock-coming-copy {
    color: var(--muted);

    max-width: 640px;

    margin:
        0 auto 30px;
}

.clock-coming-points {
    display: grid;
    gap: 12px;

    max-width: 430px;

    margin:
        0 auto 30px;

    text-align: left;
}

.clock-coming-points div {
    display: flex;
    align-items: center;

    gap: 12px;

    font-weight: 700;
}

.clock-coming-points span {
    width: 26px;
    height: 26px;

    border-radius: 50%;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    background:
        rgba(20,205,223,0.10);

    color:
        var(--eczico-cyan);

    font-weight: 900;
}

.clock-coming-status {
    max-width: 560px;

    margin:
        0 auto 28px;

    padding: 16px 18px;

    border-radius: 16px;

    color: var(--muted);

    background:
        rgba(255,255,255,0.025);

    border:
        1px solid var(--border);
}

@media (max-width: 560px) {

    .clock-coming-page {
        padding: 55px 0;
    }

    .clock-coming-card {
        padding: 38px 24px;
    }

    .clock-coming-icon {
        width: 82px;
        height: 82px;

        font-size: 2.2rem;
    }

    .clock-coming-card h1 {
        font-size: 3rem;
    }
}
/* ============================= */
/* CONTACT */
/* ============================= */

.contact-page {
    padding: 90px 0;
}

.contact-page-head {
    max-width: 720px;
    margin-bottom: 48px;
}

.contact-page-head h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    margin: 14px 0 18px;
    font-weight: 900;
}

.contact-page-head p {
    color: var(--muted);
    font-size: 1.15rem;
    max-width: 620px;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 24px;
    align-items: stretch;
}

.contact-company-card {
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 36px;

    background:
        linear-gradient(
            145deg,
            rgba(77,189,69,0.05),
            rgba(20,205,223,0.035)
        );
}

.contact-company-logo {
    width: 90px;
    height: 90px;
    margin-bottom: 26px;
}

.contact-company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-company-card h2 {
    font-size: 2rem;
    margin: 0 0 10px;
}

.contact-company-name {
    color: var(--text);
    font-weight: 800;
}

.contact-address {
    margin-top: 24px;
    color: var(--muted);
    line-height: 1.8;
}

.contact-options {
    display: grid;
    gap: 16px;
}

.contact-option-card {
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 24px;

    background:
        rgba(255,255,255,0.025);

    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;

    align-items: center;

    transition: 0.2s ease;
}

.contact-option-card:hover {
    transform: translateY(-2px);
    background: var(--card-hover);
}

.contact-option-icon {
    width: 52px;
    height: 52px;

    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            rgba(77,189,69,0.12),
            rgba(20,205,223,0.14)
        );

    color: var(--eczico-cyan);

    font-size: 1.35rem;
    font-weight: 900;

    border:
        1px solid rgba(20,205,223,0.16);
}

.contact-option-card span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-option-card strong {
    display: block;
    margin-top: 4px;
    font-size: 1.22rem;
}

.contact-option-card small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
}

.company-data-card {
    margin-top: 24px;

    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 32px;

    background:
        rgba(255,255,255,0.02);

    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: center;
}

.company-data-card h2 {
    margin: 6px 0 0;
    font-size: 1.5rem;
}

.company-data-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.company-data-grid div {
    min-width: 130px;
}

.company-data-grid span {
    display: block;
    color: var(--muted);
    font-size: 0.8rem;
    margin-bottom: 4px;
}

.company-data-grid strong {
    font-size: 1rem;
}

@media (max-width: 820px) {

    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .company-data-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .company-data-grid {
        width: 100%;
    }
}

@media (max-width: 560px) {

    .contact-page {
        padding: 55px 0;
    }

    .contact-page-head h1 {
        font-size: 3rem;
    }

    .contact-company-card {
        padding: 26px;
    }

    .contact-option-card {
        padding: 20px;
    }

    .contact-option-card strong {
        font-size: 1.05rem;
    }

    .company-data-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
/* ============================= */
/* PRIVACY CENTER */
/* ============================= */

.nav-active {
    color: var(--text) !important;
}


.privacy-center-hero {
    position: relative;
    overflow: hidden;

    padding:
        95px 0 80px;
}


.privacy-center-hero-grid {
    display: grid;

    grid-template-columns:
        1.1fr 0.9fr;

    align-items: center;

    gap: 60px;

    position: relative;

    z-index: 2;
}


.privacy-center-hero h1 {
    font-size:
        clamp(3.2rem, 6vw, 5.6rem);

    line-height: 1.02;

    margin:
        14px 0 22px;

    font-weight: 900;

    max-width: 760px;
}


.privacy-center-hero p {
    color: var(--muted);

    font-size: 1.16rem;

    max-width: 660px;

    margin: 0;
}


.privacy-center-symbol {
    display: flex;

    align-items: center;

    justify-content: center;
}


.privacy-symbol-ring {
    width: 250px;

    height: 250px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    background:
        linear-gradient(
            135deg,
            rgba(77,189,69,0.10),
            rgba(20,205,223,0.12)
        );

    border:
        1px solid
        rgba(20,205,223,0.18);

    box-shadow:
        0 25px 80px
        rgba(0,0,0,0.3);
}


.privacy-symbol-ring::before {
    content: "";

    position: absolute;

    inset: 20px;

    border-radius: 50%;

    border:
        1px solid
        rgba(77,189,69,0.20);
}


.privacy-symbol-inner {
    width: 105px;

    height: 105px;

    border-radius: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 3rem;

    color:
        var(--eczico-cyan);

    background:
        rgba(8,11,13,0.65);

    border:
        1px solid
        rgba(20,205,223,0.22);

    backdrop-filter:
        blur(12px);
}


.privacy-center-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(110px);

    pointer-events: none;
}


.privacy-center-glow-one {
    width: 520px;

    height: 520px;

    right: -150px;

    top: -180px;

    background:
        rgba(20,205,223,0.09);
}


.privacy-center-glow-two {
    width: 380px;

    height: 380px;

    left: -160px;

    bottom: -100px;

    background:
        rgba(77,189,69,0.07);
}



/* PRIVACY APPS */


.privacy-apps-section {
    border-top:
        1px solid var(--border);

    background:
        rgba(255,255,255,0.008);
}


.privacy-apps-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 24px;

    margin-top: 40px;
}


.privacy-app-card {
    min-height: 410px;

    padding: 32px;

    border-radius: 28px;

    border:
        1px solid var(--border);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.04),
            rgba(255,255,255,0.015)
        );

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    position: relative;

    overflow: hidden;

    transition:
        0.25s ease;
}


.privacy-app-card-worthit {
    cursor: pointer;
}


.privacy-app-card-worthit:hover {
    transform:
        translateY(-4px);

    background:
        var(--card-hover);
}


.privacy-app-card-worthit::after {
    content: "";

    position: absolute;

    width: 290px;

    height: 290px;

    right: -100px;

    bottom: -100px;

    border-radius: 50%;

    background:
        rgba(133,103,255,0.18);

    filter:
        blur(70px);

    pointer-events: none;
}


.privacy-app-card-clock::after {
    content: "";

    position: absolute;

    width: 280px;

    height: 280px;

    right: -100px;

    bottom: -100px;

    border-radius: 50%;

    background:
        rgba(20,205,223,0.07);

    filter:
        blur(80px);

    pointer-events: none;
}


.privacy-app-card-disabled {
    opacity: 0.72;
}


.privacy-app-top {
    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 20px;

    position: relative;

    z-index: 2;
}


.privacy-app-logo {
    width: 78px;

    height: 78px;

    border-radius: 22px;
}


.privacy-clock-icon {
    width: 78px;

    height: 78px;

    border-radius: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 2rem;

    color:
        var(--eczico-cyan);

    background:
        linear-gradient(
            135deg,
            rgba(77,189,69,0.10),
            rgba(20,205,223,0.12)
        );

    border:
        1px solid
        rgba(20,205,223,0.20);
}


.privacy-status {
    padding:
        7px 12px;

    border-radius: 999px;

    font-size: 0.78rem;

    font-weight: 800;

    white-space: nowrap;
}


.privacy-status-live {
    color:
        #b8f1ba;

    background:
        rgba(77,189,69,0.11);

    border:
        1px solid
        rgba(77,189,69,0.14);
}


.privacy-status-soon {
    color:
        var(--muted);

    background:
        rgba(255,255,255,0.04);

    border:
        1px solid
        var(--border);
}


.privacy-app-content {
    position: relative;

    z-index: 2;

    margin-top: 34px;
}


.privacy-app-platform {
    color:
        var(--muted);

    font-size: 0.78rem;

    text-transform: uppercase;

    letter-spacing: 0.09em;

    font-weight: 800;
}


.privacy-app-content h3 {
    font-size: 2rem;

    margin:
        8px 0 12px;

    font-weight: 900;
}


.privacy-app-content p {
    color:
        var(--muted);

    max-width: 460px;

    margin: 0;
}


.privacy-app-footer {
    margin-top: 35px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    position: relative;

    z-index: 2;

    border-top:
        1px solid var(--border);

    padding-top: 20px;
}


.privacy-app-footer span {
    color:
        var(--muted);

    font-size: 0.9rem;

    font-weight: 700;
}


.privacy-app-footer strong {
    color:
        var(--eczico-cyan);

    font-weight: 900;
}


.privacy-app-footer-muted {
    justify-content: flex-start;
}



/* PRIVACY VALUES */


.privacy-values-section {
    padding-top: 46px;
}


.privacy-values-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}


.privacy-value-card {
    padding: 28px;

    border-radius: 22px;

    border:
        1px solid var(--border);

    background:
        var(--card);
}


.privacy-value-icon {
    width: 46px;

    height: 46px;

    margin-bottom: 18px;

    border-radius: 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    color:
        var(--eczico-cyan);

    font-size: 1.3rem;

    background:
        linear-gradient(
            135deg,
            rgba(77,189,69,0.12),
            rgba(20,205,223,0.12)
        );

    border:
        1px solid
        rgba(20,205,223,0.15);
}


.privacy-value-card h3 {
    margin:
        0 0 10px;

    font-weight: 900;
}


.privacy-value-card p {
    margin: 0;

    color:
        var(--muted);
}



/* PRIVACY CONTACT */


.privacy-contact-section {
    padding-top: 26px;
}


.privacy-contact-box {
    padding: 36px;

    border-radius: 28px;

    border:
        1px solid var(--border);

    background:
        linear-gradient(
            135deg,
            rgba(77,189,69,0.05),
            rgba(20,205,223,0.05)
        );

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}


.privacy-contact-box h2 {
    margin:
        6px 0 8px;

    font-size:
        clamp(1.8rem, 4vw, 2.7rem);

    font-weight: 900;
}


.privacy-contact-box p {
    color:
        var(--muted);

    max-width: 650px;

    margin: 0;
}



/* TABLET */


@media (max-width: 900px) {

    .privacy-center-hero-grid {
        grid-template-columns:
            1fr 0.65fr;

        gap: 30px;
    }


    .privacy-symbol-ring {
        width: 200px;

        height: 200px;
    }

}



/* MOBILE */


@media (max-width: 820px) {

    .privacy-center-hero-grid {
        grid-template-columns: 1fr;
    }


    .privacy-center-symbol {
        order: -1;

        justify-content: flex-start;
    }


    .privacy-symbol-ring {
        width: 150px;

        height: 150px;
    }


    .privacy-symbol-inner {
        width: 72px;

        height: 72px;

        border-radius: 22px;

        font-size: 2rem;
    }


    .privacy-apps-grid,
    .privacy-values-grid {
        grid-template-columns: 1fr;
    }


    .privacy-contact-box {
        flex-direction: column;

        align-items: flex-start;
    }

}



/* SMALL MOBILE */


@media (max-width: 560px) {

    .privacy-center-hero {
        padding:
            55px 0;
    }


    .privacy-center-hero h1 {
        font-size:
            3.15rem;
    }


    .privacy-app-card {
        padding: 26px;

        min-height: 360px;
    }


    .privacy-app-top {
        flex-direction: column;
    }


    .privacy-status {
        align-self: flex-start;
    }


    .privacy-contact-box {
        padding: 26px;
    }

}
/* ====================================================== */
/* WORTHIT PRIVACY POLICY */
/* ====================================================== */

.worthit-privacy-page {
    position: relative;
}


/* HERO */

.worthit-privacy-hero {
    position: relative;
    overflow: hidden;

    padding:
        72px 0 64px;

    border-bottom:
        1px solid var(--border);
}


.worthit-privacy-hero-grid {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;
}


.worthit-privacy-app {
    display: flex;
    align-items: center;

    gap: 28px;
}


.worthit-privacy-logo {
    width: 110px;
    height: 110px;

    border-radius: 28px;

    box-shadow:
        0 18px 60px
        rgba(0,0,0,0.32);
}


.worthit-privacy-app h1 {
    margin:
        7px 0 10px;

    font-size:
        clamp(2.5rem, 5vw, 4.4rem);

    line-height: 1;

    font-weight: 900;
}


.worthit-privacy-app p {
    max-width: 650px;

    margin: 0;

    color: var(--muted);

    font-size: 1.05rem;
}


.worthit-privacy-update {
    flex: 0 0 auto;

    padding:
        18px 22px;

    border-radius: 18px;

    border:
        1px solid var(--border);

    background:
        rgba(255,255,255,0.025);
}


.worthit-privacy-update span {
    display: block;

    color: var(--muted);

    font-size: 0.76rem;

    text-transform: uppercase;

    letter-spacing: 0.08em;

    font-weight: 800;

    margin-bottom: 4px;
}


.worthit-privacy-update strong {
    display: block;

    font-size: 0.95rem;
}


.worthit-privacy-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    right: -140px;
    top: -250px;

    border-radius: 50%;

    background:
        rgba(133,103,255,0.13);

    filter:
        blur(100px);

    pointer-events: none;
}



/* DOCUMENT */

.worthit-privacy-document {
    padding:
        64px 0 100px;
}


.worthit-privacy-layout {
    display: grid;

    grid-template-columns:
        250px minmax(0, 820px);

    justify-content: center;

    gap: 70px;

    align-items: start;
}



/* SIDEBAR */

.worthit-privacy-sidebar {
    position: relative;
}


.worthit-privacy-sidebar-inner {
    position: sticky;

    top: 100px;
}


.worthit-sidebar-label {
    display: block;

    color: var(--muted);

    font-size: 0.76rem;

    text-transform: uppercase;

    letter-spacing: 0.1em;

    font-weight: 900;

    margin-bottom: 14px;
}


.worthit-privacy-toc {
    display: flex;

    flex-direction: column;

    gap: 3px;
}


.worthit-privacy-toc a {
    display: block;

    padding:
        8px 11px;

    border-radius: 9px;

    color: var(--muted);

    font-size: 0.88rem;

    font-weight: 700;

    transition:
        0.18s ease;
}


.worthit-privacy-toc a:hover {
    color: var(--text);

    background:
        rgba(255,255,255,0.04);

    transform:
        translateX(3px);
}


.worthit-privacy-back {
    display: inline-block;

    margin-top: 25px;

    color:
        var(--eczico-cyan);

    font-size: 0.85rem;

    font-weight: 800;
}



/* POLICY CONTENT */

.worthit-privacy-content {
    min-width: 0;
}


.privacy-policy-section {
    position: relative;

    scroll-margin-top: 100px;

    padding:
        0 0 50px;

    margin:
        0 0 50px;

    border-bottom:
        1px solid var(--border);
}


.privacy-policy-section:last-child {
    border-bottom: 0;

    margin-bottom: 0;

    padding-bottom: 0;
}


.privacy-policy-number {
    color:
        var(--eczico-green);

    font-size: 0.78rem;

    font-weight: 900;

    letter-spacing: 0.1em;

    margin-bottom: 8px;
}


.privacy-policy-section h2 {
    margin:
        0 0 22px;

    font-size:
        clamp(1.65rem, 3vw, 2.15rem);

    font-weight: 900;
}


.privacy-policy-section p {
    color: var(--muted);

    line-height: 1.85;

    margin:
        0 0 18px;

    font-size: 1rem;
}


.privacy-policy-section p:last-child {
    margin-bottom: 0;
}


.privacy-policy-section a {
    color:
        var(--eczico-cyan);

    font-weight: 800;
}



/* COMPANY */

.privacy-company-box {
    margin:
        24px 0;

    padding: 28px;

    border-radius: 22px;

    border:
        1px solid var(--border);

    background:
        linear-gradient(
            135deg,
            rgba(77,189,69,0.045),
            rgba(20,205,223,0.035)
        );
}


.privacy-company-box > strong {
    display: block;

    font-size: 1.15rem;

    margin-bottom: 10px;
}


.privacy-company-box p {
    margin:
        0 0 22px;
}


.privacy-company-data {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;
}


.privacy-company-data div {
    padding: 13px 15px;

    border-radius: 13px;

    background:
        rgba(255,255,255,0.025);

    border:
        1px solid var(--border);
}


.privacy-company-data span {
    display: block;

    color: var(--muted);

    font-size: 0.72rem;

    margin-bottom: 3px;
}


.privacy-company-data strong {
    font-size: 0.88rem;
}



/* HIGHLIGHT */

.privacy-highlight {
    display: grid;

    grid-template-columns:
        auto 1fr;

    gap: 16px;

    align-items: flex-start;

    margin-top: 24px;

    padding: 22px;

    border-radius: 18px;

    border:
        1px solid
        rgba(77,189,69,0.16);

    background:
        linear-gradient(
            135deg,
            rgba(77,189,69,0.065),
            rgba(20,205,223,0.025)
        );
}


.privacy-highlight-icon {
    width: 32px;
    height: 32px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        rgba(77,189,69,0.12);

    color:
        var(--eczico-green);

    font-weight: 900;
}


.privacy-highlight p {
    margin: 2px 0 0;
}



/* GOOGLE SERVICES */

.privacy-services {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;

    margin:
        22px 0;
}


.privacy-services div {
    padding:
        15px 16px;

    border-radius: 14px;

    border:
        1px solid var(--border);

    background:
        rgba(255,255,255,0.025);

    font-size: 0.88rem;

    font-weight: 800;

    text-align: center;
}



/* CONTACT */

.privacy-contact-cards {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;
}


.privacy-contact-card {
    padding: 22px;

    border-radius: 18px;

    border:
        1px solid var(--border);

    background:
        rgba(255,255,255,0.025);

    transition:
        0.2s ease;
}


.privacy-contact-card:hover {
    transform:
        translateY(-2px);

    background:
        var(--card-hover);
}


.privacy-contact-card span {
    display: block;

    color: var(--muted);

    font-size: 0.78rem;

    margin-bottom: 5px;
}


.privacy-contact-card strong {
    color:
        var(--eczico-cyan);

    font-size: 1rem;
}



/* TABLET */

@media (max-width: 950px) {

    .worthit-privacy-layout {
        grid-template-columns:
            210px minmax(0, 1fr);

        gap: 40px;
    }


    .worthit-privacy-hero-grid {
        align-items: flex-start;
    }

}



/* MOBILE */

@media (max-width: 760px) {

    .worthit-privacy-hero {
        padding:
            52px 0;
    }


    .worthit-privacy-hero-grid {
        flex-direction: column;

        gap: 28px;
    }


    .worthit-privacy-app {
        align-items: flex-start;
    }


    .worthit-privacy-logo {
        width: 80px;
        height: 80px;

        border-radius: 21px;
    }


    .worthit-privacy-update {
        width: 100%;
    }


    .worthit-privacy-layout {
        display: block;
    }


    .worthit-privacy-sidebar {
        margin-bottom: 48px;
    }


    .worthit-privacy-sidebar-inner {
        position: static;
    }


    .worthit-privacy-toc {
        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 5px;
    }


    .worthit-privacy-toc a {
        background:
            rgba(255,255,255,0.025);

        border:
            1px solid var(--border);
    }


    .privacy-company-data,
    .privacy-services {
        grid-template-columns: 1fr;
    }

}



/* SMALL MOBILE */

@media (max-width: 520px) {

    .worthit-privacy-app {
        display: block;
    }


    .worthit-privacy-logo {
        margin-bottom: 22px;
    }


    .worthit-privacy-app h1 {
        font-size: 2.7rem;
    }


    .worthit-privacy-toc {
        grid-template-columns: 1fr;
    }


    .privacy-policy-section {
        padding-bottom: 38px;

        margin-bottom: 38px;
    }


    .privacy-company-box {
        padding: 21px;
    }


    .privacy-contact-cards {
        grid-template-columns: 1fr;
    }

}