/* Public Creative Creators / Daqiq page */

:root {
    --cc-blue: #0757b8;
    --cc-blue-deep: #073f8c;
    --cc-navy: #07172f;
    --cc-red: #e52331;
    --cc-gold: #f4b719;
    --cc-green: #19945b;
    --cc-ink: #182033;
    --cc-muted: #687387;
    --cc-line: #e4e9f1;
    --cc-page: #f3f6fb;
    --cc-white: #fff;
    --cc-radius: 24px;
    --cc-shadow: 0 16px 40px rgba(27, 43, 73, .08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--cc-page);
}

body.cc-public-page {
    min-height: 100vh;
    margin: 0;
    padding:
        max(14px, env(safe-area-inset-top))
        max(11px, env(safe-area-inset-right))
        max(20px, env(safe-area-inset-bottom))
        max(11px, env(safe-area-inset-left));
    color: var(--cc-ink);
    font-family: Vazirmatn, Tahoma, Arial, sans-serif;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(7, 87, 184, .11),
            transparent 25%
        ),
        linear-gradient(180deg, #eef4fc, var(--cc-page) 30%);
}

a {
    -webkit-tap-highlight-color: transparent;
}

.cc-page {
    width: min(100%, 1080px);
    margin: 0 auto;
}

.cc-hero,
.cc-section,
.cc-contact,
.cc-footer {
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: var(--cc-radius);
    box-shadow: var(--cc-shadow);
}

.cc-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 16px;
    color: var(--cc-white);
    background:
        radial-gradient(
            circle at 8% 6%,
            rgba(229, 35, 49, .58),
            transparent 28%
        ),
        linear-gradient(145deg, var(--cc-blue), var(--cc-blue-deep));
}

.cc-hero__shape {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}

.cc-hero__shape--red {
    top: -90px;
    left: -60px;
    width: 190px;
    height: 190px;
    background: rgba(229, 35, 49, .25);
}

.cc-hero__shape--gold {
    right: -70px;
    bottom: -90px;
    width: 190px;
    height: 190px;
    background: rgba(244, 183, 25, .29);
}

.cc-back {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, .23);
    border-radius: 11px;
    color: rgba(255, 255, 255, .92);
    font-size: 10px;
    font-weight: 850;
    text-decoration: none;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
}

.cc-hero__main {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 16px;
}

.cc-hero__logo {
    flex: 0 0 76px;
    width: 76px;
    height: 76px;
    padding: 4px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, .5);
    border-radius: 23px;
    background: rgba(255, 255, 255, .1);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .17);
}

.cc-hero__logo img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    object-fit: cover;
}

.cc-hero__identity {
    min-width: 0;
}

.cc-hero__identity > span {
    display: inline-flex;
    margin-bottom: 3px;
    padding: 3px 8px;
    border: 1px solid rgba(255, 255, 255, .23);
    border-radius: 999px;
    color: rgba(255, 255, 255, .82);
    font-size: 8.5px;
    font-weight: 850;
    background: rgba(255, 255, 255, .07);
}

.cc-hero__identity h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(25px, 8vw, 40px);
    font-weight: 950;
    line-height: 1.1;
}

.cc-hero__identity p {
    margin: 3px 0 0;
    color: var(--cc-gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .2px;
}

.cc-hero__message {
    margin-top: 18px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .17);
    border-right: 4px solid var(--cc-gold);
    border-radius: 16px;
    background: rgba(3, 22, 58, .2);
}

.cc-hero__message h2 {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 950;
    line-height: 1.75;
}

.cc-hero__message p {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 10px;
    line-height: 1.75;
}

.cc-hero__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.cc-action {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 13px;
    font-size: 11px;
    font-weight: 900;
    text-decoration: none;
    transition: transform .18s ease;
}

.cc-action:active {
    transform: scale(.98);
}

.cc-action--light {
    color: var(--cc-blue-deep);
    background: #fff;
}

.cc-action--whatsapp {
    color: #fff;
    background: #15975b;
}

.cc-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 12px 0;
}

.cc-highlights article {
    display: flex;
    min-width: 0;
    min-height: 84px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 10px 5px;
    border: 1px solid var(--cc-line);
    border-radius: 17px;
    text-align: center;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 9px 24px rgba(27, 43, 73, .05);
}

.cc-highlights i {
    color: var(--cc-blue);
    font-size: 16px;
}

.cc-highlights article:nth-child(2) i {
    color: var(--cc-red);
}

.cc-highlights article:nth-child(3) i {
    color: #a97800;
}

.cc-highlights strong {
    color: var(--cc-ink);
    font-size: 10px;
    font-weight: 950;
}

.cc-highlights span {
    color: var(--cc-muted);
    font-size: 8.5px;
}

.cc-section {
    margin-bottom: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, .94);
}

.cc-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.cc-heading__icon {
    display: inline-flex;
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 17px;
}

.cc-heading__icon--blue {
    color: var(--cc-blue);
    background: rgba(7, 87, 184, .09);
}

.cc-heading__icon--red {
    color: var(--cc-red);
    background: rgba(229, 35, 49, .09);
}

.cc-heading__icon--gold {
    color: #a97800;
    background: rgba(244, 183, 25, .16);
}

.cc-heading div > span,
.cc-contact__intro > span,
.cc-story > span {
    display: block;
    margin-bottom: 1px;
    color: var(--cc-blue);
    font-size: 8.5px;
    font-weight: 900;
}

.cc-heading h2,
.cc-contact__intro h2,
.cc-story h2 {
    margin: 0;
    color: var(--cc-ink);
    font-size: 15px;
    font-weight: 950;
}

.cc-about-grid {
    display: grid;
    gap: 10px;
}

.cc-about-copy p {
    margin: 0;
    color: #4f5a6d;
    font-size: 11px;
    line-height: 1.95;
    text-align: justify;
}

.cc-about-copy p + p {
    margin-top: 7px;
}

.cc-quote {
    position: relative;
    overflow: hidden;
    padding: 15px;
    border: 1px solid rgba(7, 87, 184, .14);
    border-radius: 17px;
    color: var(--cc-blue-deep);
    background:
        linear-gradient(
            145deg,
            rgba(7, 87, 184, .075),
            rgba(244, 183, 25, .08)
        );
}

.cc-quote i {
    position: absolute;
    left: 11px;
    bottom: -3px;
    color: rgba(7, 87, 184, .09);
    font-size: 46px;
}

.cc-quote strong {
    position: relative;
    display: block;
    font-size: 12px;
    line-height: 1.9;
}

.cc-services {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.cc-services article {
    min-width: 0;
    padding: 13px 11px;
    border: 1px solid var(--cc-line);
    border-radius: 16px;
    background: #f8faff;
}

.cc-services article > span {
    display: inline-flex;
    width: 37px;
    height: 37px;
    align-items: center;
    justify-content: center;
    margin-bottom: 9px;
    border-radius: 12px;
    color: var(--cc-blue);
    font-size: 15px;
    background: rgba(7, 87, 184, .09);
}

.cc-services article:nth-child(2) > span {
    color: var(--cc-red);
    background: rgba(229, 35, 49, .08);
}

.cc-services article:nth-child(3) > span {
    color: #9e7100;
    background: rgba(244, 183, 25, .14);
}

.cc-services article:nth-child(4) > span {
    color: var(--cc-green);
    background: rgba(25, 148, 91, .09);
}

.cc-services h3 {
    margin: 0;
    color: var(--cc-ink);
    font-size: 11px;
    font-weight: 950;
}

.cc-services p {
    margin: 4px 0 0;
    color: var(--cc-muted);
    font-size: 9px;
    line-height: 1.7;
}

.cc-process {
    display: grid;
    gap: 8px;
}

.cc-process article {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 11px;
    border: 1px solid var(--cc-line);
    border-radius: 15px;
    background: #fbfcfe;
}

.cc-process article > span {
    display: inline-flex;
    flex: 0 0 33px;
    width: 33px;
    height: 33px;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: #fff;
    font-size: 12px;
    font-weight: 950;
    background: var(--cc-blue);
}

.cc-process article:nth-child(2) > span {
    background: var(--cc-red);
}

.cc-process article:nth-child(3) > span {
    color: #5f4300;
    background: var(--cc-gold);
}

.cc-process article:nth-child(4) > span {
    background: var(--cc-green);
}

.cc-process h3 {
    margin: 0;
    color: var(--cc-ink);
    font-size: 11px;
    font-weight: 950;
}

.cc-process p {
    margin: 3px 0 0;
    color: var(--cc-muted);
    font-size: 9px;
    line-height: 1.7;
}

.cc-featured {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    padding: 13px;
    overflow: hidden;
    border: 1px solid rgba(7, 87, 184, .2);
    border-radius: 18px;
    background:
        linear-gradient(
            145deg,
            rgba(7, 87, 184, .08),
            rgba(229, 35, 49, .035)
        );
}

.cc-featured > i {
    position: absolute;
    top: 11px;
    left: 11px;
    color: var(--cc-gold);
    font-size: 13px;
}

.cc-featured__logo {
    flex: 0 0 62px;
    width: 62px;
    height: 62px;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 9px 20px rgba(7, 87, 184, .17);
}

.cc-featured__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cc-featured__content {
    min-width: 0;
}

.cc-featured__content > span {
    display: block;
    color: var(--cc-red);
    font-size: 8px;
    font-weight: 900;
}

.cc-featured h3 {
    margin: 1px 0 0;
    color: var(--cc-blue-deep);
    font-size: 17px;
    font-weight: 950;
}

.cc-featured p {
    margin: 4px 0 0;
    color: var(--cc-muted);
    font-size: 9px;
    line-height: 1.75;
}

.cc-projects {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.cc-projects article {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 8px;
    padding: 10px;
    border: 1px solid var(--cc-line);
    border-radius: 14px;
    color: #39445a;
    font-size: 9.5px;
    font-weight: 850;
    background: #fbfcfe;
}

.cc-projects i {
    color: var(--cc-blue);
}

.cc-projects article:nth-child(2n) i {
    color: var(--cc-red);
}

.cc-projects-note {
    margin: 9px 0 0;
    color: var(--cc-muted);
    font-size: 9px;
    text-align: center;
}

.cc-split-section {
    display: grid;
    gap: 14px;
}

.cc-values {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.cc-values span {
    display: inline-flex;
    padding: 7px 10px;
    border: 1px solid var(--cc-line);
    border-radius: 999px;
    color: #4b5669;
    font-size: 9px;
    font-weight: 850;
    background: #f8faff;
}

.cc-story {
    padding: 15px;
    border: 1px solid rgba(244, 183, 25, .32);
    border-radius: 18px;
    background:
        linear-gradient(
            145deg,
            rgba(244, 183, 25, .13),
            rgba(229, 35, 49, .04)
        );
}

.cc-story > span {
    color: #a47100;
}

.cc-story p {
    margin: 7px 0 0;
    color: #5a6070;
    font-size: 10px;
    line-height: 1.9;
}

.cc-contact {
    margin-bottom: 12px;
    padding: 16px;
    color: #fff;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(229, 35, 49, .36),
            transparent 29%
        ),
        linear-gradient(145deg, var(--cc-navy), #0a244e);
}

.cc-contact__intro > span {
    color: var(--cc-gold);
}

.cc-contact__intro h2 {
    color: #fff;
    font-size: 17px;
}

.cc-contact__intro p {
    margin: 6px 0 14px;
    color: rgba(255, 255, 255, .65);
    font-size: 9px;
    line-height: 1.8;
}

.cc-contact__links {
    display: grid;
    gap: 7px;
}

.cc-contact__links a {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 9px;
    padding: 9px 10px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 13px;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, .065);
}

.cc-contact__links a > span {
    display: inline-flex;
    flex: 0 0 35px;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: #fff;
    background: rgba(7, 87, 184, .55);
}

.cc-contact__links .cc-contact__whatsapp {
    background: rgba(21, 151, 91, .75);
}

.cc-contact__links a > div {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
}

.cc-contact__links small {
    color: rgba(255, 255, 255, .52);
    font-size: 8px;
}

.cc-contact__links strong {
    overflow: hidden;
    color: #fff;
    font-size: 9.5px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cc-contact__links a > i {
    color: rgba(255, 255, 255, .46);
    font-size: 9px;
}

.cc-address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 10px;
    padding: 11px;
    border: 1px solid rgba(244, 183, 25, .23);
    border-radius: 14px;
    background: rgba(244, 183, 25, .08);
}

.cc-address i {
    margin-top: 3px;
    color: var(--cc-gold);
}

.cc-address p {
    margin: 0;
    color: rgba(255, 255, 255, .7);
    font-size: 9px;
    line-height: 1.8;
}

.cc-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 14px;
    text-align: center;
    background: rgba(255, 255, 255, .92);
}

.cc-footer > div {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #5d6778;
    font-size: 9px;
}

.cc-footer i,
.cc-footer strong {
    color: var(--cc-blue);
}

.cc-footer small {
    color: #9aa3b2;
    font-size: 8px;
}

@media (min-width: 620px) {
    .cc-hero {
        padding: 24px;
    }

    .cc-hero__main {
        margin-top: 20px;
    }

    .cc-hero__message {
        max-width: 690px;
    }

    .cc-highlights {
        gap: 12px;
    }

    .cc-section,
    .cc-contact {
        padding: 22px;
    }

    .cc-about-grid {
        grid-template-columns: minmax(0, 1.25fr) minmax(250px, .75fr);
        align-items: stretch;
    }

    .cc-process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cc-projects {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .cc-split-section {
        grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr);
        align-items: start;
    }

    .cc-contact {
        display: grid;
        grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr);
        gap: 20px;
    }

    .cc-address {
        grid-column: 1 / -1;
    }
}

@media (min-width: 850px) {
    .cc-hero__actions {
        width: 340px;
    }

    .cc-services {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .cc-contact__links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 350px) {
    .cc-hero__logo {
        flex-basis: 64px;
        width: 64px;
        height: 64px;
        border-radius: 19px;
    }

    .cc-hero__logo img {
        border-radius: 14px;
    }

    .cc-hero__identity h1 {
        font-size: 23px;
    }

    .cc-highlights strong {
        font-size: 9px;
    }

    .cc-highlights span {
        font-size: 7.5px;
    }

    .cc-services,
    .cc-projects {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .cc-action {
        transition: none;
    }
}

@media print {
    body.cc-public-page {
        padding: 0;
        background: #fff;
    }

    .cc-back,
    .cc-hero__actions {
        display: none !important;
    }

    .cc-hero,
    .cc-section,
    .cc-contact,
    .cc-footer {
        box-shadow: none;
    }
}
