/* =========================================
   AXORA MEDIA — BLUE / WHITE / BLACK
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #05070a;
    color: #ffffff;
    line-height: 1.6;
}

section {
    width: 100%;
}

.section {
    max-width: 1200px;
    margin: auto;
    padding: 140px 40px;
}

.section-label {
    color: #1683ff;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 60px;
}


/* ---------- NAVIGATION ---------- */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 25px 50px;
    z-index: 100;

    background: rgba(5, 7, 10, 0.78);
    backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 3px;
}

.logo span {
    color: #1683ff;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #1683ff;
}


/* ---------- HERO ---------- */

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;

    position: relative;
    overflow: hidden;

    padding: 140px 40px 100px;
}

.hero-content {
    max-width: 1100px;
    margin: auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.eyebrow {
    color: #1683ff;
    font-size: 13px;
    letter-spacing: 4px;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: clamp(55px, 8vw, 110px);
    line-height: 0.95;
    letter-spacing: -5px;
    max-width: 1050px;
}

.hero h1 span {
    color: #1683ff;
}

.hero-description {
    max-width: 600px;
    color: #a8aeb8;
    font-size: 19px;
    margin-top: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}


/* ---------- BUTTONS ---------- */

.button {
    display: inline-block;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.primary {
    background: #1683ff;
    color: white;
}

.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(22, 131, 255, 0.28);
}

.secondary {
    border: 1px solid #303640;
    color: white;
}

.secondary:hover {
    border-color: #1683ff;
    color: #1683ff;
}


/* ---------- HERO GLOW ---------- */

.hero-glow {
    position: absolute;

    width: 600px;
    height: 600px;

    right: -250px;
    top: 150px;

    background: #1683ff;

    filter: blur(190px);

    opacity: 0.14;

    border-radius: 50%;
}


/* ---------- ABOUT ---------- */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.about-grid h2 {
    font-size: 55px;
    line-height: 1.05;
    letter-spacing: -2px;
}

.about-grid p {
    color: #999fa9;
    margin-bottom: 25px;
    font-size: 17px;
}

.about-grid .large-text {
    color: white;
    font-size: 25px;
    line-height: 1.4;
}


/* ---------- SECTION TITLES ---------- */

.section-title {
    font-size: 70px;
    line-height: 1;
    letter-spacing: -3px;
    max-width: 900px;
    margin-bottom: 80px;
}

.section-title span {
    color: #1683ff;
}


/* ---------- SERVICES ---------- */

.services-section {
    border-top: 1px solid #1b2028;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-card {
    border: 1px solid #242a33;
    padding: 45px;
    min-height: 280px;
    transition: 0.3s;
    background: #090c11;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #1683ff;
}

.service-number {
    color: #66707c;
    font-size: 13px;
    margin-bottom: 60px;
}

.service-card h3 {
    font-size: 30px;
    margin-bottom: 15px;
}

.service-card p {
    color: #8f969f;
    max-width: 450px;
}


/* ---------- TARGET ---------- */

.target-section {
    max-width: 1200px;
    margin: auto;
    padding: 150px 40px;
    border-top: 1px solid #1b2028;
}

.target-content {
    max-width: 900px;
}

.target-content h2 {
    font-size: 70px;
    line-height: 1;
    letter-spacing: -3px;
}

.target-content h2 span {
    color: #1683ff;
}

.target-content > p {
    color: #999fa9;
    font-size: 19px;
    margin-top: 30px;
}

.target-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
}

.target-tags span {
    padding: 10px 18px;
    border: 1px solid #303640;
    border-radius: 50px;
    color: #aaa;
    font-size: 14px;
}


/* ---------- WORK ---------- */

.work-section {
    border-top: 1px solid #1b2028;
}

.work-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 50px;
    margin-bottom: 60px;
}

.work-heading h2 {
    font-size: 70px;
    line-height: 1;
    letter-spacing: -3px;
}

.work-heading h2 span {
    color: #1683ff;
}

.work-heading p {
    max-width: 350px;
    color: #999fa9;
}

.work-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;

    align-items: start;
}
.work-placeholder {
    height: 320px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        #111820,
        #080a0e
    );

    border: 1px solid #292f38;

    color: #66707c;

    letter-spacing: 3px;

    transition: 0.3s;
}


.work-placeholder:hover {
    border-color: #1683ff;
    transform: scale(1.01);
}

.work-info {
    padding-top: 15px;
}

.work-info h3 {
    font-size: 20px;
}

.work-info p {
    color: #777f89;
    font-size: 14px;
}


/* ---------- PROCESS ---------- */

.process-section {
    border-top: 1px solid #1b2028;
}

.process-list {
    border-top: 1px solid #292f38;
}

.process-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;

    padding: 35px 0;

    border-bottom: 1px solid #292f38;
}

.process-number {
    color: #1683ff;
    font-size: 14px;
}

.process-item h3 {
    font-size: 30px;
    margin-bottom: 8px;
}

.process-item p {
    color: #888f99;
    max-width: 600px;
}


/* ---------- CTA ---------- */

.cta-section {
    min-height: 80vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 100px 30px;

    background:
        radial-gradient(
            circle at center,
            #08264a 0%,
            #080c13 50%,
            #05070a 100%
        );
}

.cta-content {
    max-width: 900px;
}

.cta-content h2 {
    font-size: clamp(55px, 8vw, 100px);
    line-height: 0.95;
    letter-spacing: -5px;
    margin-bottom: 50px;
}

.cta-content h2 span {
    color: #1683ff;
}


/* ---------- FOOTER ---------- */

footer {
    padding: 50px;
    border-top: 1px solid #20252d;
    text-align: center;
}

.footer-logo {
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 3px;
}

.footer-logo span {
    color: #1683ff;
}

footer p {
    color: #777f89;
    margin-top: 10px;
}

footer .copyright {
    margin-top: 30px;
    font-size: 12px;
}


/* ---------- MOBILE ---------- */

@media (max-width: 768px) {

    .navbar {
        padding: 20px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 120px 25px 80px;
    }

    .hero h1 {
        font-size: 55px;
        letter-spacing: -3px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section {
        padding: 90px 25px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-grid h2 {
        font-size: 45px;
    }

    .section-title {
        font-size: 50px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 30px;
    }

    .target-section {
        padding: 90px 25px;
    }

    .target-content h2 {
        font-size: 50px;
    }

    .work-heading {
        flex-direction: column;
        align-items: start;
    }

    .work-heading h2 {
        font-size: 55px;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .work-large .work-placeholder {
        height: 320px;
    }

    .process-item {
        grid-template-columns: 50px 1fr;
        gap: 20px;
    }

    .process-item h3 {
        font-size: 25px;
    }

    .cta-content h2 {
        font-size: 55px;
        letter-spacing: -3px;
    }

    footer {
        padding: 40px 20px;
    }
}
.logo img {
    width: 130px;
    height: auto;
    display: block;
}
/* ---------- WORK VIDEOS ---------- */

.work-video {
    width: 100%;
    aspect-ratio: 9 / 16;

    overflow: hidden;

    background: #080a0e;

    border: 1px solid #292f38;

    border-radius: 8px;
}


.work-video video {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

    background: #080a0e;

    transition: 0.4s;
}

.work-video:hover {
    border-color: #1683ff;
}

.work-video:hover video {
    transform: scale(1.02);
}
/* ---------- VISION & RESULTS ---------- */

.vision-block {
    margin-top: 120px;

    padding: 60px 0;

    border-top: 1px solid #20252d;
    border-bottom: 1px solid #20252d;
}

.vision-label {
    color: #1683ff;

    font-size: 12px;

    letter-spacing: 3px;

    margin-bottom: 25px;
}

.vision-block h3 {
    max-width: 950px;

    font-size: 38px;

    line-height: 1.25;

    font-weight: 500;

    letter-spacing: -1px;
}


.results-block {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin-top: 40px;
}

.result-card {
    padding: 35px;

    border: 1px solid #242a33;

    background: #090c11;
}

.result-card strong {
    display: block;

    color: #1683ff;

    font-size: 48px;

    line-height: 1;

    margin-bottom: 20px;
}

.result-card p {
    color: #8f969f;

    font-size: 15px;
}


/* ---------- MOBILE ---------- */

@media (max-width: 768px) {

    .vision-block {
        margin-top: 80px;

        padding: 45px 0;
    }

    .vision-block h3 {
        font-size: 28px;
    }

    .results-block {
        grid-template-columns: 1fr;
    }

}
/* ---------- PROOF OF WORK ---------- */

.proof-section {
    border-top: 1px solid #1b2028;
}

.proof-heading {
    max-width: 950px;
    margin-bottom: 70px;
}

.proof-heading h2 {
    font-size: 60px;
    line-height: 1.05;
    letter-spacing: -3px;
}

.proof-heading h2 span {
    color: #1683ff;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.proof-card {
    padding: 45px;
    min-height: 280px;

    border: 1px solid #242a33;
    background: #090c11;

    transition: 0.3s;
}

.proof-card:hover {
    border-color: #1683ff;
    transform: translateY(-5px);
}

.proof-value {
    color: #1683ff;
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 45px;
}

.proof-value.original {
    font-size: 52px;
    letter-spacing: 1px;
    line-height: 1;
}
.proof-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.proof-card p {
    color: #858d98;
    font-size: 15px;
    max-width: 300px;
}

.proof-statement {
    margin-top: 70px;
    padding-top: 35px;
    border-top: 1px solid #242a33;
}

.proof-statement p {
    font-size: 24px;
    color: white;
    margin-bottom: 10px;
}

.proof-statement span {
    color: #737c87;
    font-size: 15px;
}


/* ---------- PROOF MOBILE ---------- */

@media (max-width: 768px) {

    .proof-heading h2 {
        font-size: 45px;
    }

    .proof-grid {
        grid-template-columns: 1fr;
    }

    .proof-card {
        padding: 35px;
        min-height: auto;
    }

    .proof-value {
        margin-bottom: 30px;
    }

    .proof-statement p {
        font-size: 20px;
    }

}
/* ---------- PROCESS ICONS ---------- */

.process-item {
    grid-template-columns: 120px 1fr;
    align-items: start;
}

.process-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #1683ff;

    border: 1px solid #29313b;

    border-radius: 50%;

    transition: 0.3s;
}

.process-icon svg {
    width: 22px;
    height: 22px;

    stroke: currentColor;

    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.process-item:hover .process-icon {
    border-color: #1683ff;

    background: rgba(22, 131, 255, 0.08);

    transform: translateY(-2px);
}


/* ---------- PROCESS ICON MOBILE ---------- */

@media (max-width: 768px) {

    .process-item {
        grid-template-columns: 55px 1fr;
    }

    .process-icon {
        width: 48px;
        height: 48px;
    }

    .process-icon svg {
        width: 26px;
        height: 26px;
    }

}
/* FORCE LARGE PROCESS ICONS */

.process-icon {
    width: 64px !important;
    height: 64px !important;
}

.process-icon svg {
    width: 38px !important;
    height: 38px !important;
    stroke-width: 2 !important;
}


/* MOBILE */

@media (max-width: 768px) {

    .process-icon {
        width: 52px !important;
        height: 52px !important;
    }

    .process-icon svg {
        width: 32px !important;
        height: 32px !important;
    }

}
/* ---------- CTA BUTTONS ---------- */

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;

    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}


/* WhatsApp — primary */

.cta-primary {
    width: 100%;
    display: flex;
    justify-content: center;
}

.cta-primary .button.primary {
    padding: 18px 48px;

    min-width: 260px;

    font-size: 17px;
    font-weight: 600;
}


/* Instagram + Email */

.cta-secondary {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.cta-secondary .button.secondary {
    padding: 16px 32px;

    min-width: 120px;

    font-size: 15px;
}


/* ---------- CTA MOBILE ---------- */

@media (max-width: 768px) {

    .cta-primary .button.primary {
        min-width: 240px;
    }

    .cta-secondary .button.secondary {
        min-width: 140px;
    }

}
/* ---------- MOBILE NAVBAR ---------- */

@media (max-width: 768px) {

    /* Make the navbar compact */
    .navbar {
        padding: 14px 20px !important;
        height: auto !important;
        min-height: 70px !important;
    }

    /* Keep logo small */
    .navbar .logo img {
        width: 82px !important;
        height: auto !important;
    }

    /* Keep navigation visible */
    .navbar .nav-links {
        display: flex !important;
        align-items: center;
        gap: 18px;

        overflow-x: auto;
        white-space: nowrap;

        max-width: 65vw;

        scrollbar-width: none;
    }

    .navbar .nav-links::-webkit-scrollbar {
        display: none;
    }

    /* Smaller navigation text */
    .navbar .nav-links a {
        font-size: 13px !important;
    }

}