/* =====================================================
   GO MEDIA CREATORS
===================================================== */

:root {

    --navy: #06142d;
    --deep-blue: #052237;
    --card: #0d1b31;

    --cyan: #00dcff;
    --yellow: #ffcd14;
    --orange: #ff4b19;

    --white: #f5f8fc;
    --muted: #aab7c9;

    --border: rgba(255,255,255,.09);

    --container: 1160px;

}


/* =====================================================
   RESET
===================================================== */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    background: var(--navy);

    color: var(--white);

    line-height: 1.6;

    overflow-x: hidden;

}


a {

    text-decoration: none;

    color: inherit;

}


.container {

    width:
        min(
            var(--container),
            calc(100% - 48px)
        );

    margin: auto;

}


/* =====================================================
   HEADER
===================================================== */

.header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(6,20,45,.94);

    backdrop-filter:
        blur(18px);

    border-bottom:
        1px solid var(--border);

}


.navbar {

    height: 72px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* =====================================================
   SMALL CLEAN COMPANY BRAND
===================================================== */

.brand {

    display: flex;

    align-items: center;

    gap: 8px;

    min-width: 170px;

}


/*
   SMALL LOGO
*/

.brand-logo {

    width: 26px;

    height: 26px;

    object-fit: contain;

    display: block;

    flex-shrink: 0;

}


/*
   COMPANY NAME
*/

.brand-name {

    display: flex;

    flex-direction: column;

    line-height: .95;

}


.brand-name span:first-child {

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .08em;

    white-space: nowrap;

}


.brand-name span:last-child {

    margin-top: 3px;

    font-size: 6px;

    font-weight: 700;

    letter-spacing: .24em;

    color: var(--cyan);

}


/* =====================================================
   NAVIGATION
===================================================== */

.navigation {

    display: flex;

    align-items: center;

    gap: 30px;

    color: var(--muted);

    font-size: 13px;

}


.navigation a {

    transition: .25s ease;

}


.navigation a:hover {

    color: var(--white);

}


.nav-button {

    padding: 8px 17px;

    border:
        1px solid var(--cyan);

    border-radius: 50px;

    color: var(--cyan) !important;

}


/* =====================================================
   HERO
===================================================== */

.hero {

    min-height:
        calc(100vh - 72px);

    display: flex;

    align-items: center;

    position: relative;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 78% 45%,
            rgba(0,220,255,.12),
            transparent 30%
        ),

        radial-gradient(
            circle at 90% 75%,
            rgba(130,60,255,.10),
            transparent 25%
        ),

        linear-gradient(
            135deg,
            var(--navy),
            var(--deep-blue)
        );

}


.hero::before {

    content: "";

    position: absolute;

    width: 700px;

    height: 700px;

    border:
        1px solid
        rgba(0,220,255,.07);

    border-radius: 50%;

    right: -350px;

    top: -280px;

}


.hero-container {

    display: grid;

    grid-template-columns:
        1.05fr .95fr;

    gap: 70px;

    align-items: center;

    padding: 100px 0;

}


/* =====================================================
   HERO CONTENT
===================================================== */

.eyebrow {

    color: var(--yellow);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .16em;

    margin-bottom: 18px;

}


.hero h1 {

    font-size:
        clamp(
            45px,
            6vw,
            76px
        );

    line-height: 1.02;

    letter-spacing: -.05em;

    max-width: 760px;

}


.hero h1 span {

    color: var(--cyan);

}


.hero-description {

    max-width: 680px;

    color: var(--muted);

    font-size: 17px;

    margin-top: 28px;

}


/* =====================================================
   BUTTONS
===================================================== */

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 34px;

}


.button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-height: 49px;

    padding: 0 22px;

    border-radius: 10px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .05em;

    text-transform: uppercase;

    transition: .25s ease;

}


.button:hover {

    transform:
        translateY(-3px);

}


.button-icon {

    width: 17px;

    height: 17px;

    object-fit: contain;

}


.primary-button {

    background: #2a50dc;

    border:
        1px solid var(--cyan);

    box-shadow:
        0 12px 30px
        rgba(0,220,255,.12);

}


.secondary-button {

    background:
        rgba(255,255,255,.025);

    border:
        1px solid var(--border);

    color: var(--muted);

}


/* =====================================================
   TAGLINE
===================================================== */

.hero-tagline {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 32px;

    color: var(--cyan);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .16em;

}


.hero-tagline b {

    color: var(--yellow);

}


/* =====================================================
   HERO LOGO
===================================================== */

.hero-visual {

    min-height: 470px;

    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    border:
        1px solid var(--border);

    border-radius: 30px;

    background:
        rgba(0,0,0,.12);

    overflow: hidden;

}


.glow {

    position: absolute;

    width: 350px;

    height: 350px;

    border-radius: 50%;

    background:

        radial-gradient(
            circle,
            rgba(0,220,255,.15),
            rgba(110,50,255,.08),
            transparent 68%
        );

    filter: blur(10px);

}


.hero-logo {

    position: relative;

    width: 330px;

    max-width: 78%;

    height: 270px;

    object-fit: contain;

    filter:
        drop-shadow(
            0 0 28px
            rgba(0,220,255,.18)
        );

}


.hero-visual h2 {

    position: relative;

    margin-top: 12px;

    font-size: 21px;

    letter-spacing: .08em;

    text-align: center;

}


.hero-visual p {

    position: relative;

    color: var(--cyan);

    font-size: 12px;

    letter-spacing: .15em;

    margin-top: 7px;

}


/* =====================================================
   SECTIONS
===================================================== */

.section {

    padding: 115px 0;

}


.section-heading {

    max-width: 780px;

    margin-bottom: 55px;

}


.section-heading h2 {

    font-size:
        clamp(
            34px,
            4vw,
            52px
        );

    line-height: 1.08;

    letter-spacing: -.04em;

}


.section-heading h2 span {

    color: var(--cyan);

}


.section-heading > p:last-child {

    color: var(--muted);

    font-size: 14px;

    margin-top: 20px;

}


/* =====================================================
   ABOUT
===================================================== */

.about {

    background: #071a35;

}


.three-column {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 18px;

}


.info-card {

    min-height: 290px;

    padding: 30px;

    border:
        1px solid var(--border);

    border-radius: 18px;

    background:

        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.015)
        );

    transition: .25s ease;

}


.info-card:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(0,220,255,.35);

}


.card-number {

    color: var(--cyan);

    font-size: 11px;

    font-weight: 800;

}


.info-card h3 {

    color: var(--cyan);

    font-size: 26px;

    margin-top: 40px;

}


.info-card:nth-child(3) h3 {

    color: var(--yellow);

}


.info-card h4 {

    font-size: 14px;

}


.info-card p {

    color: var(--muted);

    font-size: 13px;

    margin-top: 16px;

}


/* =====================================================
   SERVICES
===================================================== */

.services {

    background: var(--navy);

}


.service-heading {

    max-width: none;

    display: grid;

    grid-template-columns:
        1fr 420px;

    gap: 70px;

    align-items: end;

}


.service-heading > p {

    color: var(--muted);

}


.service-grid {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 18px;

}


.service-card {

    min-height: 340px;

    padding: 30px;

    border:
        1px solid var(--border);

    border-radius: 18px;

    background:

        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.015)
        );

    transition: .25s ease;

}


.service-card:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(0,220,255,.35);

}


.service-number {

    color: var(--cyan);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: .12em;

}


.service-card h3 {

    font-size: 21px;

    margin-top: 25px;

}


.service-card p {

    color: var(--muted);

    font-size: 13px;

    margin-top: 13px;

}


.service-card ul {

    margin:
        20px 0 0 18px;

    color: var(--muted);

    font-size: 12.5px;

}


.service-card li {

    margin: 5px 0;

}


/* =====================================================
   PROCESS
===================================================== */

.process {

    background:

        linear-gradient(
            180deg,
            var(--deep-blue),
            #061a32
        );

}


.process-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

}


.process-card {

    padding:
        0 28px 0 0;

    margin-right: 28px;

    border-right:
        1px solid var(--border);

}


.process-card:last-child {

    border: none;

    margin: 0;

}


.process-number {

    display: grid;

    place-items: center;

    width: 46px;

    height: 46px;

    border:
        1px solid var(--cyan);

    border-radius: 50%;

    color: var(--cyan);

    font-size: 11px;

    font-weight: 800;

}


.process-card h3 {

    color: var(--cyan);

    font-size: 19px;

    margin-top: 24px;

}


.process-card p {

    color: var(--muted);

    font-size: 12.5px;

    margin-top: 10px;

}


/* =====================================================
   CLIENTS
===================================================== */

.clients {

    background: #071a35;

}


.client-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 16px;

}


.client-card {

    min-height: 285px;

    padding: 28px;

    border:
        1px solid var(--border);

    border-radius: 18px;

    background:

        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.015)
        );

}


.client-card > span {

    color: var(--yellow);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .13em;

}


.client-card h3 {

    font-size: 16px;

    margin-top: 27px;

}


.client-card h3 + h3 {

    margin-top: 8px;

}


.client-card p {

    color: var(--muted);

    font-size: 12.5px;

    margin-top: 18px;

}


/* =====================================================
   WHY
===================================================== */

.why {

    background: var(--navy);

}


.why-grid {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 18px;

}


.why-grid article {

    padding: 30px;

    border:
        1px solid var(--border);

    border-radius: 18px;

    background:

        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.015)
        );

}


.why-grid span {

    color: var(--cyan);

    font-size: 11px;

    font-weight: 900;

}


.why-grid h3 {

    font-size: 18px;

    margin-top: 18px;

}


.why-grid p {

    color: var(--muted);

    font-size: 13px;

    margin-top: 7px;

}


/* =====================================================
   CONTACT
===================================================== */

.contact {

    padding: 105px 0;

    background:

        radial-gradient(
            circle at 20% 40%,
            rgba(0,220,255,.12),
            transparent 25%
        ),

        linear-gradient(
            135deg,
            var(--navy),
            var(--deep-blue)
        );

}


.contact-container {

    display: grid;

    grid-template-columns:
        1fr 470px;

    gap: 80px;

    align-items: center;

}


.contact-content h2 {

    font-size:
        clamp(
            40px,
            5vw,
            62px
        );

    line-height: 1.03;

    letter-spacing: -.04em;

}


.contact-content h2 span {

    color: var(--cyan);

}


.contact-content > p:not(.eyebrow) {

    max-width: 680px;

    color: var(--muted);

    font-size: 14px;

    margin:
        22px 0 28px;

}


/* =====================================================
   CONTACT CARD
===================================================== */

.contact-card {

    padding: 8px 26px;

    border:
        1px solid var(--border);

    border-top:
        3px solid var(--orange);

    border-radius: 18px;

    background:
        rgba(13,27,49,.88);

    box-shadow:
        0 25px 70px
        rgba(0,0,0,.22);

}


.contact-item {

    display: flex;

    gap: 15px;

    padding: 21px 0;

    align-items: flex-start;

    border-bottom:
        1px solid var(--border);

}


.contact-item:last-child {

    border-bottom: none;

}


/* =====================================================
   ADDRESS ICON
===================================================== */

.contact-icon {

    min-width: 30px;

    width: 30px;

    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid var(--yellow);

    border-radius: 50%;

    color: var(--yellow);

    font-size: 14px;

    flex-shrink: 0;

}


/* =====================================================
   SMALL SOCIAL LINKS
===================================================== */

.social-link {

    display: flex;

    align-items: center;

    gap: 11px;

    width: 100%;

}


/*
   VERY SMALL WHATSAPP / INSTAGRAM LOGOS
*/

.social-logo {

    width: 21px;

    height: 21px;

    object-fit: contain;

    display: block;

    flex-shrink: 0;

}


/* =====================================================
   CONTACT TEXT
===================================================== */

.contact-item small {

    display: block;

    color: var(--cyan);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .15em;

    margin-bottom: 2px;

}


.contact-item p {

    color: var(--white);

    font-size: 12px;

    line-height: 1.6;

}


.social-link span {

    color: var(--white);

    font-size: 12px;

    transition: .25s ease;

}


/* WHATSAPP HOVER */

.contact-item.whatsapp
.social-link:hover span {

    color: #25D366;

}


/* INSTAGRAM HOVER */

.contact-item.instagram
.social-link:hover span {

    color: #E1306C;

}


/* =====================================================
   FOOTER
===================================================== */

footer {

    background: #041025;

    border-top:
        1px solid var(--border);

}


.footer {

    min-height: 70px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: #718096;

    font-size: 10px;

    letter-spacing: .08em;

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {


    .navigation a:not(.nav-button) {

        display: none;

    }


    .hero-container {

        grid-template-columns: 1fr;

    }


    .hero-visual {

        min-height: 390px;

    }


    .service-heading {

        grid-template-columns: 1fr;

        gap: 20px;

    }


    .three-column {

        grid-template-columns:
            repeat(2,1fr);

    }


    .service-grid {

        grid-template-columns: 1fr;

    }


    .process-grid {

        grid-template-columns:
            repeat(2,1fr);

        gap: 55px;

    }


    .process-card {

        border: none;

        margin: 0;

        padding: 0;

    }


    .client-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .contact-container {

        grid-template-columns: 1fr;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 620px) {


    .container {

        width:
            calc(100% - 30px);

    }


    .navbar {

        height: 64px;

    }


    /* EVEN SMALLER BRAND */

    .brand {

        min-width: auto;

        gap: 6px;

    }


    .brand-logo {

        width: 23px;

        height: 23px;

    }


    .brand-name span:first-child {

        font-size: 9px;

    }


    .brand-name span:last-child {

        font-size: 5px;

        letter-spacing: .18em;

    }


    .nav-button {

        padding:
            7px 13px;

        font-size:
            10px;

    }


    .hero-container {

        padding: 70px 0;

        gap: 40px;

    }


    .hero h1 {

        font-size: 44px;

    }


    .hero-description {

        font-size: 15px;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .button {

        width: 100%;

    }


    .hero-visual {

        min-height: 350px;

    }


    .hero-logo {

        width: 250px;

        height: 210px;

    }


    .hero-visual h2 {

        font-size: 16px;

    }


    .section {

        padding: 80px 0;

    }


    .section-heading {

        margin-bottom: 38px;

    }


    .three-column,
    .service-grid,
    .process-grid,
    .client-grid,
    .why-grid {

        grid-template-columns: 1fr;

    }


    .process-card {

        padding-bottom: 30px;

        border-bottom:
            1px solid var(--border);

    }


    .contact {

        padding: 80px 0;

    }


    .contact-container {

        gap: 40px;

    }


    .contact-card {

        padding:
            8px 18px;

    }


    /* SMALL SOCIAL ICONS ON MOBILE */

    .social-logo {

        width: 19px;

        height: 19px;

    }


    .contact-item {

        gap: 12px;

        padding: 19px 0;

    }


    .footer {

        min-height: auto;

        padding: 22px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 8px;

    }

}