/* =========================================================
   HAKAMIY PRINTING PRESS
   BRAND COLOURS
========================================================= */

:root {

    --blue: #008fe5;
    --blue-dark: #0057a8;
    --blue-light: #21c4ff;

    --pink: #f50070;
    --pink-dark: #c90058;
    --pink-light: #ff4f9a;

    --yellow: #ffc400;
    --yellow-dark: #e6a900;
    --yellow-light: #ffe56b;

    --black: #080b12;
    --dark: #11151d;
    --dark-two: #181d27;

    --white: #ffffff;
    --light: #f6f8fc;
    --grey: #687080;

    --border: #e6e9ef;

    --shadow:
        0 20px 60px rgba(7, 12, 25, .10);

    --shadow-heavy:
        0 30px 80px rgba(7, 12, 25, .20);

}


/* =========================================================
   RESET
========================================================= */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--black);

    background: white;

    line-height: 1.6;

    overflow-x: hidden;

}


img {

    max-width: 100%;

    display: block;

}


a {

    text-decoration: none;

    color: inherit;

}


button,
input,
textarea,
select {

    font-family: inherit;

}


.container {

    width: 90%;

    max-width: 1240px;

    margin: auto;

}


/* =========================================================
   TOPBAR
========================================================= */

.topbar {

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--pink),
            var(--yellow)
        );

    color: white;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .5px;

}


.topbar-inner {

    min-height: 35px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}


/* =========================================================
   HEADER
========================================================= */

.header {

    position: sticky;

    top: 0;

    z-index: 999;

    background:
        rgba(255,255,255,.97);

    backdrop-filter: blur(15px);

    border-bottom:
        1px solid rgba(0,0,0,.07);

}


.nav-container {

    height: 92px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.brand {

    width: 210px;

}


.brand img {

    width: 100%;

    height: 76px;

    object-fit: contain;

}


.navigation {

    display: flex;

    align-items: center;

    gap: 34px;

}


.navigation a {

    font-size: 14px;

    font-weight: 800;

    position: relative;

    padding: 10px 0;

    transition: .3s;

}


.navigation a:hover,
.navigation a.active {

    color: var(--pink);

}


.navigation a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    height: 3px;

    width: 0;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--pink),
            var(--yellow)
        );

    transition: .3s;

}


.navigation a:hover::after,
.navigation a.active::after {

    width: 100%;

}


.quote-button {

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--pink)
        );

    color: white;

    padding: 14px 22px;

    border-radius: 6px;

    font-weight: 900;

    font-size: 12px;

    letter-spacing: .5px;

    box-shadow:
        0 10px 25px rgba(245,0,112,.20);

    transition: .3s;

}


.quote-button:hover {

    transform: translateY(-3px);

}


.menu-toggle {

    display: none;

    border: none;

    background: none;

    font-size: 30px;

    cursor: pointer;

}


/* =========================================================
   HERO
========================================================= */

.hero {

    min-height: 760px;

    position: relative;

    overflow: hidden;

    color: white;

    background:

        radial-gradient(
            circle at 80% 15%,
            rgba(0,143,229,.28),
            transparent 27%
        ),

        radial-gradient(
            circle at 90% 75%,
            rgba(245,0,112,.25),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #05070c,
            #0d1420 55%,
            #121722
        );

}


.hero::after {

    content: "";

    position: absolute;

    width: 600px;

    height: 600px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.06);

    right: -200px;

    top: 100px;

}


.hero-container {

    min-height: 760px;

    display: grid;

    grid-template-columns: 1.05fr .95fr;

    align-items: center;

    gap: 60px;

    position: relative;

    z-index: 2;

}


/* Decorative shapes */

.hero-shape {

    position: absolute;

    border-radius: 50%;

    filter: blur(2px);

}


.shape-one {

    width: 15px;

    height: 15px;

    background: var(--yellow);

    top: 20%;

    left: 8%;

    box-shadow:
        0 0 30px var(--yellow);

}


.shape-two {

    width: 10px;

    height: 10px;

    background: var(--pink);

    top: 70%;

    left: 45%;

}


.shape-three {

    width: 12px;

    height: 12px;

    background: var(--blue-light);

    top: 30%;

    right: 10%;

}


/* Hero text */

.hero-tag {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--yellow);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 2px;

    margin-bottom: 22px;

}


.hero-tag span {

    width: 35px;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--pink)
        );

}


.hero h1 {

    font-size:
        clamp(48px, 6vw, 82px);

    line-height: .98;

    letter-spacing: -3px;

    font-weight: 950;

    margin-bottom: 30px;

}


.blue-text {

    color: var(--blue-light);

}


.pink-text {

    color: var(--pink-light);

    display: block;

}


.hero-description {

    max-width: 620px;

    color: #c7ccd6;

    font-size: 17px;

    margin-bottom: 35px;

}


.hero-buttons {

    display: flex;

    gap: 14px;

    flex-wrap: wrap;

}


.btn-primary {

    padding: 16px 25px;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--pink)
        );

    color: white;

    border-radius: 6px;

    font-size: 12px;

    font-weight: 900;

    box-shadow:
        0 15px 35px rgba(0,143,229,.25);

    transition: .3s;

}


.btn-primary:hover {

    transform: translateY(-4px);

}


.btn-primary span {

    margin-left: 12px;

    font-size: 18px;

}


.btn-outline {

    padding: 14px 24px;

    border: 2px solid rgba(255,255,255,.25);

    border-radius: 6px;

    color: white;

    font-size: 12px;

    font-weight: 900;

    transition: .3s;

}


.btn-outline:hover {

    background: white;

    color: var(--black);

}


.hero-points {

    display: flex;

    flex-wrap: wrap;

    gap: 25px;

    margin-top: 35px;

    color: #b9c0cb;

    font-size: 12px;

    font-weight: 700;

}


.hero-points b {

    color: var(--yellow);

    margin-right: 6px;

}


/* =========================================================
   HERO LOGO VISUAL
========================================================= */

.hero-visual {

    min-height: 540px;

    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;

}


.visual-glow {

    position: absolute;

    width: 430px;

    height: 430px;

    border-radius: 50%;

    background:

        radial-gradient(
            circle,
            rgba(0,143,229,.25),
            rgba(245,0,112,.13),
            transparent 70%
        );

    filter: blur(15px);

}


.logo-display {

    position: relative;

    z-index: 5;

    width: 500px;

    max-width: 100%;

    padding: 25px;

}


.logo-frame {

    position: relative;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.13),
            rgba(255,255,255,.03)
        );

    border: 1px solid rgba(255,255,255,.18);

    border-radius: 25px;

    padding: 30px;

    backdrop-filter: blur(15px);

    box-shadow:
        0 35px 80px rgba(0,0,0,.45);

}


.logo-frame::before {

    content: "";

    position: absolute;

    inset: -2px;

    border-radius: 27px;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            transparent 35%,
            var(--pink) 70%,
            var(--yellow)
        );

    z-index: -1;

    opacity: .7;

}


.logo-frame img {

    width: 100%;

    max-height: 370px;

    object-fit: contain;

}


.frame-line {

    position: absolute;

    width: 80px;

    height: 5px;

    top: 15px;

    left: 50%;

    transform: translateX(-50%);

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--pink),
            var(--yellow)
        );

}


/* Floating cards */

.floating-card {

    position: absolute;

    z-index: 10;

    background: rgba(255,255,255,.96);

    color: var(--black);

    padding: 13px 18px;

    border-radius: 10px;

    display: flex;

    align-items: center;

    gap: 12px;

    box-shadow:
        0 20px 50px rgba(0,0,0,.3);

    animation: floating 4s ease-in-out infinite;

}


.card-print {

    left: -10px;

    top: 130px;

}


.card-design {

    right: -5px;

    bottom: 110px;

    animation-delay: 1s;

}


.floating-icon {

    width: 42px;

    height: 42px;

    border-radius: 8px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 20px;

}


.pink-bg {

    background: #ffe1ed;

}


.blue-bg {

    background: #d9f2ff;

}


.floating-card strong,
.floating-card small {

    display: block;

}


.floating-card strong {

    font-size: 10px;

}


.floating-card small {

    font-size: 9px;

    color: #737983;

}


.color-dot {

    position: absolute;

    border-radius: 50%;

}


.yellow-dot {

    width: 22px;

    height: 22px;

    background: var(--yellow);

    right: 10%;

    top: 15%;

    box-shadow:
        0 0 35px var(--yellow);

}


.blue-dot {

    width: 13px;

    height: 13px;

    background: var(--blue-light);

    left: 10%;

    bottom: 25%;

}


.pink-dot {

    width: 18px;

    height: 18px;

    background: var(--pink);

    right: 12%;

    bottom: 20%;

}


@keyframes floating {

    0%,100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-12px);

    }

}


/* =========================================================
   BRAND STRIP
========================================================= */

.brand-strip {

    background: white;

    border-bottom: 1px solid var(--border);

}


.brand-strip-inner {

    min-height: 95px;

    display: flex;

    align-items: center;

    gap: 30px;

}


.brand-strip-inner > div:first-child {

    min-width: 220px;

}


.brand-strip strong {

    color: var(--blue);

}


.brand-strip b {

    color: var(--pink);

}


.brand-strip span {

    color: #777;

    font-size: 11px;

    font-weight: 900;

}


.strip-line {

    height: 35px;

    width: 1px;

    background: var(--border);

}


.strip-services {

    display: flex;

    gap: 25px;

    flex-wrap: wrap;

}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {

    padding: 110px 0;

}


.section-heading {

    max-width: 760px;

    margin:
        0 auto 60px;

    text-align: center;

}


.section-tag {

    display: inline-block;

    font-size: 11px;

    font-weight: 950;

    letter-spacing: 2px;

    color: var(--pink);

    margin-bottom: 14px;

}


.section-heading h2,
.about-content h2,
.equipment-content h2 {

    font-size:
        clamp(36px, 5vw, 57px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 20px;

}


.section-heading h2 span,
.about-content h2 span,
.equipment-content h2 span {

    color: var(--blue);

}


.section-heading p {

    color: var(--grey);

}


/* =========================================================
   ABOUT
========================================================= */

.about {

    background: var(--light);

}


.about-grid {

    display: grid;

    grid-template-columns: .95fr 1.05fr;

    align-items: center;

    gap: 90px;

}


.about-images {

    position: relative;

    min-height: 530px;

}


.about-main-card {

    position: absolute;

    left: 0;

    top: 0;

    width: 85%;

    height: 430px;

    background:
        linear-gradient(
            145deg,
            #111823,
            #05070a
        );

    border-radius: 25px;

    box-shadow: var(--shadow-heavy);

    padding: 25px;

    overflow: hidden;

}


.machine-top {

    display: flex;

    gap: 7px;

}


.machine-top span {

    width: 8px;

    height: 8px;

    border-radius: 50%;

}


.machine-top span:nth-child(1) {

    background: var(--pink);

}


.machine-top span:nth-child(2) {

    background: var(--yellow);

}


.machine-top span:nth-child(3) {

    background: var(--blue);

}


.printer-machine {

    position: relative;

    margin-top: 40px;

    height: 250px;

    background:
        linear-gradient(
            145deg,
            #404752,
            #171b22
        );

    border-radius: 15px;

    padding: 25px;

}


.machine-screen {

    width: 100px;

    height: 40px;

    background: #050505;

    color: var(--blue-light);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 10px;

    font-weight: 900;

    border-radius: 4px;

}


.machine-panel {

    display: flex;

    gap: 7px;

    margin-top: 25px;

}


.machine-panel div {

    width: 35px;

    height: 35px;

    border-radius: 5px;

}


.machine-panel div:nth-child(1) {

    background: var(--blue);

}


.machine-panel div:nth-child(2) {

    background: var(--pink);

}


.machine-panel div:nth-child(3) {

    background: var(--yellow);

}


.paper-output {

    position: absolute;

    bottom: -45px;

    left: 50%;

    transform: translateX(-50%);

    width: 190px;

    height: 125px;

    background: white;

    color: var(--black);

    padding: 25px;

    box-shadow:
        0 15px 30px rgba(0,0,0,.25);

}


.paper-output strong {

    display: block;

    font-size: 18px;

}


.paper-output span {

    font-size: 30px;

    font-weight: 950;

    color: var(--pink);

}


.machine-base {

    position: absolute;

    width: 75%;

    height: 12px;

    background: #090b0e;

    bottom: 30px;

    left: 12%;

    border-radius: 10px;

}


.colour-card {

    position: absolute;

    right: 0;

    bottom: 40px;

    background: white;

    padding: 20px;

    width: 190px;

    border-radius: 12px;

    box-shadow: var(--shadow);

}


.colour {

    display: inline-block;

    width: 35px;

    height: 35px;

    border-radius: 50%;

    margin-right: 3px;

}


.colour.pink {

    background: var(--pink);

}


.colour.blue {

    background: var(--blue);

}


.colour.yellow {

    background: var(--yellow);

}


.colour-card strong {

    display: block;

    margin-top: 10px;

    font-size: 12px;

}


.colour-card strong span {

    color: var(--pink);

}


.experience-card {

    position: absolute;

    left: -25px;

    bottom: 0;

    background: var(--yellow);

    padding: 18px 25px;

    border-radius: 10px;

    box-shadow: var(--shadow);

}


.experience-card strong {

    display: block;

    font-size: 32px;

}


.experience-card span {

    font-size: 11px;

    font-weight: 800;

}


.about-content > p {

    color: var(--grey);

    margin-bottom: 20px;

}


.about-features {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 22px;

    margin-top: 35px;

}


.about-features > div {

    display: flex;

    align-items: center;

    gap: 12px;

}


.check {

    width: 38px;

    height: 38px;

    min-width: 38px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    font-weight: 900;

}


.blue-check {

    background: var(--blue);

}


.pink-check {

    background: var(--pink);

}


.yellow-check {

    background: var(--yellow);

    color: var(--black);

}


.black-check {

    background: var(--black);

}


.about-features strong,
.about-features small {

    display: block;

}


.about-features strong {

    font-size: 13px;

}


.about-features small {

    font-size: 10px;

    color: #818894;

}


/* =========================================================
   SERVICES
========================================================= */

.services {

    background: white;

}


.services-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

}


.service-card {

    position: relative;

    padding: 32px 25px;

    min-height: 315px;

    border-radius: 12px;

    overflow: hidden;

    transition: .35s;

    border: 1px solid var(--border);

}


.service-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow-heavy);

}


.service-number {

    position: absolute;

    right: 20px;

    top: 20px;

    font-size: 12px;

    font-weight: 950;

    opacity: .45;

}


.service-icon {

    font-size: 42px;

    margin-bottom: 25px;

}


.service-card h3 {

    font-size: 20px;

    margin-bottom: 12px;

}


.service-card p {

    font-size: 13px;

    color: #687080;

    margin-bottom: 20px;

}


.service-card a {

    font-size: 11px;

    font-weight: 950;

}


.blue-card {

    background:
        linear-gradient(
            145deg,
            #edf9ff,
            white
        );

    border-top: 5px solid var(--blue);

}


.blue-card a {

    color: var(--blue-dark);

}


.pink-card {

    background:
        linear-gradient(
            145deg,
            #fff0f6,
            white
        );

    border-top: 5px solid var(--pink);

}


.pink-card a {

    color: var(--pink-dark);

}


.yellow-card {

    background:
        linear-gradient(
            145deg,
            #fffbea,
            white
        );

    border-top: 5px solid var(--yellow);

}


.yellow-card a {

    color: #a97900;

}


.dark-card {

    background:
        linear-gradient(
            145deg,
            #11151d,
            #202632
        );

    color: white;

    border-top: 5px solid var(--blue);

}


.dark-card p {

    color: #aeb6c3;

}


.dark-card a {

    color: var(--yellow);

}


/* =========================================================
   EQUIPMENT
========================================================= */

.equipment {

    padding: 110px 0;

    color: white;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(0,143,229,.25),
            transparent 30%
        ),

        radial-gradient(
            circle at 90% 70%,
            rgba(245,0,112,.20),
            transparent 30%
        ),

        #090c12;

}


.equipment-grid {

    display: grid;

    grid-template-columns: .85fr 1.15fr;

    align-items: center;

    gap: 70px;

}


.equipment-content h2 {

    color: white;

}


.equipment-content h2 span {

    color: var(--pink-light);

}


.equipment-content > p {

    color: #aeb5c0;

    margin-bottom: 35px;

}


.equipment-points {

    display: grid;

    gap: 18px;

}


.equipment-points > div {

    display: flex;

    gap: 15px;

    align-items: center;

}


.equipment-points > div > span {

    width: 43px;

    height: 43px;

    min-width: 43px;

    border: 1px solid rgba(255,255,255,.15);

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--yellow);

    font-weight: 900;

    border-radius: 7px;

}


.equipment-points strong,
.equipment-points small {

    display: block;

}


.equipment-points strong {

    font-size: 13px;

}


.equipment-points small {

    color: #7e8795;

    font-size: 10px;

}


/* Equipment scene */

.equipment-scene {

    height: 500px;

    background:
        linear-gradient(
            145deg,
            #151b25,
            #090c11
        );

    border: 1px solid #2b3442;

    border-radius: 25px;

    position: relative;

    overflow: hidden;

    box-shadow:
        0 30px 80px rgba(0,0,0,.45);

}


.equipment-scene::before {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    border-radius: 50%;

    background:
        rgba(0,143,229,.12);

    filter: blur(50px);

    right: -80px;

    top: -80px;

}


/* Computer */

.computer-desk {

    position: absolute;

    left: 35px;

    top: 70px;

}


.monitor-frame {

    width: 290px;

    height: 200px;

    padding: 10px;

    background: #2b323c;

    border-radius: 12px;

    box-shadow:
        0 25px 35px rgba(0,0,0,.4);

}


.monitor-screen {

    height: 100%;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--pink)
        );

    padding: 25px;

}


.screen-logo {

    font-weight: 950;

    font-size: 20px;

    color: white;

}


.screen-bars {

    display: flex;

    gap: 8px;

    margin-top: 45px;

}


.screen-bars span {

    width: 55px;

    height: 55px;

    background: white;

    opacity: .9;

}


.screen-bars span:nth-child(2) {

    background: var(--yellow);

}


.screen-bars span:nth-child(3) {

    background: var(--black);

}


.monitor-neck {

    width: 50px;

    height: 35px;

    background: #303740;

    margin: auto;

}


.monitor-base {

    width: 130px;

    height: 12px;

    background: #303740;

    margin: auto;

    border-radius: 20px;

}


.keyboard {

    width: 200px;

    height: 35px;

    margin: 20px auto;

    background: #252c35;

    border-radius: 5px;

    display: flex;

    gap: 5px;

    align-items: center;

    padding: 8px;

}


.keyboard span {

    height: 12px;

    flex: 1;

    background: #515a66;

    border-radius: 2px;

}


/* Printer */

.large-printer {

    position: absolute;

    right: 35px;

    bottom: 55px;

    width: 250px;

    height: 230px;

    background:
        linear-gradient(
            145deg,
            #48515c,
            #171b21
        );

    border-radius: 15px;

    padding: 20px;

    box-shadow:
        0 25px 40px rgba(0,0,0,.4);

}


.printer-top {

    display: flex;

    gap: 5px;

}


.printer-top span {

    width: 7px;

    height: 7px;

    border-radius: 50%;

}


.printer-top span:nth-child(1) {

    background: var(--pink);

}


.printer-top span:nth-child(2) {

    background: var(--yellow);

}


.printer-top span:nth-child(3) {

    background: var(--blue);

}


.printer-control {

    margin-top: 20px;

    width: 70px;

    padding: 8px;

    text-align: center;

    background: #050608;

    color: var(--blue-light);

    font-size: 8px;

    font-weight: 900;

}


.printer-opening {

    height: 55px;

    background: #080a0d;

    margin-top: 22px;

    border-radius: 5px;

}


.printed-sheet {

    position: absolute;

    width: 130px;

    height: 85px;

    background: white;

    color: var(--black);

    left: 50%;

    transform: translateX(-50%);

    bottom: -45px;

    padding: 15px;

    font-size: 10px;

    font-weight: 900;

}


.printed-sheet strong {

    display: block;

    color: var(--pink);

    font-size: 25px;

}


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

.portfolio {

    background: var(--light);

}


.portfolio-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

}


.portfolio-item {

    min-height: 350px;

    border-radius: 15px;

    overflow: hidden;

    position: relative;

    transition: .4s;

}


.portfolio-item:hover {

    transform: translateY(-8px) scale(1.01);

    box-shadow: var(--shadow-heavy);

}


.portfolio-content {

    height: 100%;

    padding: 30px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

}


.portfolio-content span {

    font-size: 9px;

    font-weight: 950;

    letter-spacing: 2px;

}


.portfolio-content h3 {

    font-size: 30px;

    line-height: 1.05;

    margin-top: 10px;

}


.portfolio-content strong {

    display: block;

}


.portfolio-one {

    background:
        linear-gradient(
            145deg,
            var(--blue),
            #003f7c
        );

    color: white;

}


.portfolio-one strong {

    color: var(--yellow);

}


.portfolio-two {

    background:
        linear-gradient(
            145deg,
            var(--pink),
            #9f0047
        );

    color: white;

}


.portfolio-two strong {

    color: var(--yellow);

}


.portfolio-three {

    background:
        linear-gradient(
            145deg,
            var(--yellow),
            #e29f00
        );

    color: var(--black);

}


.portfolio-three strong {

    color: white;

}


.portfolio-four {

    background:
        linear-gradient(
            145deg,
            #11151d,
            #283141
        );

    color: white;

}


.portfolio-four strong {

    color: var(--blue-light);

}


/* =========================================================
   MEDIA SHOWCASE / ADVERTISEMENT GALLERY
========================================================= */

.showcase {
    background:
        radial-gradient(circle at 8% 18%, rgba(0,143,229,.08), transparent 25%),
        radial-gradient(circle at 92% 78%, rgba(245,0,112,.08), transparent 25%),
        var(--light);
}

.showcase-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.showcase-filters {
    display: flex;
    gap: 8px;
    padding: 6px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(7,12,25,.06);
}

.showcase-filter {
    border: 0;
    background: transparent;
    color: var(--grey);
    padding: 11px 17px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 900;
    cursor: pointer;
    transition: .25s;
}

.showcase-filter:hover,
.showcase-filter.active {
    background: var(--black);
    color: white;
}

.media-upload-input {
    display: none;
}

.media-upload-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--pink));
    padding: 13px 20px;
    border-radius: 9px;
    font-size: 11px;
    font-weight: 950;
    box-shadow: 0 12px 28px rgba(0,143,229,.20);
    transition: .3s;
}

.media-upload-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 17px 35px rgba(245,0,112,.20);
}

.media-upload-button span {
    font-size: 20px;
    line-height: 1;
}

.media-dropzone {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    margin-bottom: 28px;
    border: 1px dashed #b9c2d0;
    border-radius: 14px;
    background: rgba(255,255,255,.75);
    transition: .3s;
}

.media-dropzone.dragover {
    border-color: var(--pink);
    background: #fff0f6;
    transform: scale(1.01);
}

.dropzone-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e4f7ff, #ffe5f0);
    color: var(--pink);
    font-size: 22px;
    font-weight: 900;
}

.media-dropzone strong {
    display: block;
    font-size: 12px;
    margin-bottom: 2px;
}

.media-dropzone p {
    color: var(--grey);
    font-size: 11px;
}

.dropzone-note {
    margin-left: auto;
    color: #89919d;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
    white-space: nowrap;
}

.media-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.media-card {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    border-radius: 17px;
    background: #0b1018;
    box-shadow: 0 20px 55px rgba(7,12,25,.13);
    border: 1px solid rgba(0,0,0,.06);
    transition: .4s;
    cursor: pointer;
}

.media-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(7,12,25,.22);
}

.media-card img,
.media-card video {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
    transition: transform .55s ease;
}

.media-card:hover img,
.media-card:hover video {
    transform: scale(1.045);
}

.media-card::after {
    content: "";
    position: absolute;
    inset: 35% 0 0;
    background: linear-gradient(transparent, rgba(0,0,0,.88));
    pointer-events: none;
}

.media-card-info {
    position: absolute;
    z-index: 2;
    left: 20px;
    right: 20px;
    bottom: 18px;
    color: white;
}

.media-card-info small {
    display: inline-block;
    margin-bottom: 7px;
    padding: 5px 8px;
    border-radius: 5px;
    background: rgba(255,255,255,.14);
    backdrop-filter: blur(8px);
    font-size: 8px;
    font-weight: 950;
    letter-spacing: 1.4px;
}

.media-card-info h3 {
    font-size: 18px;
    line-height: 1.15;
    margin: 0;
}

.media-play {
    position: absolute;
    z-index: 3;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.92);
    color: var(--pink);
    font-size: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,.20);
}

.media-card-badge {
    position: absolute;
    z-index: 3;
    top: 18px;
    left: 18px;
    padding: 7px 9px;
    border-radius: 5px;
    background: var(--yellow);
    color: var(--black);
    font-size: 8px;
    font-weight: 950;
    letter-spacing: 1px;
}

.media-card.is-video .media-card-badge {
    background: var(--pink);
    color: white;
}

.media-empty-state {
    grid-column: 1 / -1;
    min-height: 300px;
    display: grid;
    grid-template-columns: 150px 1fr;
    align-items: center;
    gap: 35px;
    padding: 45px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: white;
    box-shadow: 0 18px 50px rgba(7,12,25,.06);
}

.empty-art {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 30px;
    background: linear-gradient(145deg, #09111d, #1b2533);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(7,12,25,.18);
}

.empty-art::before,
.empty-art::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
}

.empty-art::before {
    width: 80px;
    height: 80px;
    top: -22px;
    right: -18px;
    background: var(--blue);
}

.empty-art::after {
    width: 72px;
    height: 72px;
    bottom: -25px;
    left: -18px;
    background: var(--pink);
}

.empty-art span {
    position: relative;
    z-index: 3;
    font-size: 55px;
    font-weight: 950;
    color: white;
}

.empty-art i,
.empty-art b {
    position: absolute;
    z-index: 2;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--yellow);
}

.empty-art i {
    right: 17px;
    bottom: 17px;
}

.empty-art b {
    width: 9px;
    height: 9px;
    left: 20px;
    top: 23px;
    background: var(--blue-light);
}

.empty-label {
    color: var(--pink);
    font-size: 9px;
    font-weight: 950;
    letter-spacing: 2px;
}

.media-empty-state h3 {
    font-size: clamp(25px, 4vw, 38px);
    line-height: 1.05;
    margin: 10px 0;
}

.media-empty-state p {
    max-width: 620px;
    color: var(--grey);
    font-size: 13px;
}

.showcase-note {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    padding: 13px 16px;
    border-left: 4px solid var(--yellow);
    background: white;
    color: var(--grey);
    font-size: 10px;
}

.showcase-note > span {
    color: var(--black);
    font-weight: 950;
    letter-spacing: 1px;
}

.showcase-note p {
    margin: 0;
}

.showcase-note strong {
    color: var(--black);
}

/* Lightbox */
.media-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(3,6,12,.90);
    backdrop-filter: blur(12px);
}

.media-lightbox.open {
    display: flex;
}

.media-lightbox-content {
    position: relative;
    width: min(1100px, 95vw);
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-lightbox-content img,
.media-lightbox-content video {
    max-width: 100%;
    max-height: 82vh;
    border-radius: 14px;
    box-shadow: 0 35px 90px rgba(0,0,0,.45);
}

.media-lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: white;
    color: var(--black);
    font-size: 20px;
    cursor: pointer;
}

.media-card.hidden {
    display: none;
}


/* =========================================================
   BIG CTA
========================================================= */

.big-cta {

    position: relative;

    overflow: hidden;

    padding: 80px 0;

    background:
        linear-gradient(
            120deg,
            var(--blue),
            var(--pink) 55%,
            var(--yellow)
        );

}


.big-cta-content {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

}


.big-cta h2 {

    color: white;

    max-width: 760px;

    font-size:
        clamp(35px, 5vw, 55px);

    line-height: 1.05;

    margin-bottom: 15px;

}


.big-cta h2 span {

    color: var(--yellow-light);

}


.big-cta p {

    color: rgba(255,255,255,.85);

}


.light-tag {

    color: white;

}


.cta-button {

    background: var(--black);

    color: white;

    padding: 18px 25px;

    border-radius: 7px;

    font-size: 11px;

    font-weight: 950;

    white-space: nowrap;

    transition: .3s;

}


.cta-button:hover {

    transform: translateY(-4px);

    box-shadow:
        0 15px 30px rgba(0,0,0,.25);

}


.cta-button span {

    margin-left: 10px;

}


.cta-decoration {

    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.25);

}


.cta-one {

    width: 500px;

    height: 500px;

    right: -150px;

    top: -180px;

}


.cta-two {

    width: 250px;

    height: 250px;

    left: -80px;

    bottom: -100px;

}


/* =========================================================
   CONTACT
========================================================= */

.contact {

    background: white;

}


.contact-grid {

    display: grid;

    grid-template-columns: .75fr 1.25fr;

    gap: 70px;

}


.contact-details {

    display: flex;

    flex-direction: column;

    gap: 15px;

}


.contact-box {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 20px;

    border: 1px solid var(--border);

    border-radius: 10px;

}


.contact-symbol {

    width: 50px;

    height: 50px;

    min-width: 50px;

    border-radius: 8px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

}


.blue-symbol {

    background: #e0f4ff;

}


.pink-symbol {

    background: #ffe3ee;

}


.yellow-symbol {

    background: #fff5c9;

}


.contact-box small,
.contact-box strong {

    display: block;

}


.contact-box small {

    color: #8a919d;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1px;

}


.contact-box strong {

    font-size: 13px;

}


.contact-brand {

    margin-top: 20px;

    padding: 25px;

    background:
        linear-gradient(
            135deg,
            #f2fbff,
            #fff0f7
        );

    border-radius: 12px;

}


.contact-brand img {

    width: 190px;

    max-height: 100px;

    object-fit: contain;

}


.contact-brand p {

    margin-top: 10px;

    color: var(--pink);

    font-size: 12px;

    font-weight: 900;

}


/* Form */

.contact-form {

    padding: 35px;

    border-radius: 15px;

    background: var(--light);

    border: 1px solid var(--border);

    box-shadow: var(--shadow);

}


.input-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

}


.input-group {

    margin-bottom: 18px;

}


.input-group label {

    display: block;

    font-size: 10px;

    font-weight: 900;

    margin-bottom: 7px;

}


.input-group input,
.input-group textarea,
.input-group select {

    width: 100%;

    border: 1px solid #dfe3e9;

    background: white;

    padding: 15px;

    border-radius: 6px;

    outline: none;

    font-size: 13px;

}


.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {

    border-color: var(--blue);

    box-shadow:
        0 0 0 3px rgba(0,143,229,.08);

}


.input-group textarea {

    resize: vertical;

}


.send-button {

    border: none;

    cursor: pointer;

    width: 100%;

    padding: 16px;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--pink)
        );

    color: white;

    border-radius: 6px;

    font-weight: 950;

    font-size: 11px;

    transition: .3s;

}


.send-button:hover {

    transform: translateY(-3px);

}


.send-button span {

    margin-left: 10px;

}


#formMessage {

    margin-top: 15px;

    text-align: center;

    font-size: 12px;

    font-weight: 800;

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    background: var(--black);

    color: white;

    position: relative;

}


.footer-colour-line {

    display: flex;

    height: 5px;

}


.footer-colour-line span {

    flex: 1;

}


.footer-colour-line span:nth-child(1) {

    background: var(--blue);

}


.footer-colour-line span:nth-child(2) {

    background: var(--pink);

}


.footer-colour-line span:nth-child(3) {

    background: var(--yellow);

}


.footer-grid {

    padding:
        65px 0 50px;

    display: grid;

    grid-template-columns:
        1.4fr 1fr 1fr 1.2fr;

    gap: 45px;

}


.footer-about img {

    width: 190px;

    max-height: 100px;

    object-fit: contain;

}


.footer-about p {

    max-width: 300px;

    color: #929aa7;

    font-size: 13px;

    margin-top: 15px;

}


.footer-column {

    display: flex;

    flex-direction: column;

    gap: 9px;

}


.footer-column h3 {

    color: var(--yellow);

    font-size: 14px;

    margin-bottom: 10px;

}


.footer-column a,
.footer-column p {

    color: #8e97a4;

    font-size: 12px;

}


.footer-column a:hover {

    color: var(--pink);

}


.footer-bottom {

    border-top: 1px solid #252b35;

    padding: 20px;

    text-align: center;

    color: #6f7782;

    font-size: 11px;

}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-button {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 62px;

    height: 62px;

    border-radius: 50%;

    background: #20c863;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 30px;

    z-index: 1000;

    box-shadow:
        0 10px 30px rgba(0,0,0,.25);

    transition: .3s;

}


.whatsapp-button:hover {

    transform: scale(1.1);

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1050px) {

    .navigation {

        gap: 18px;

    }


    .services-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .portfolio-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .hero-container {

        grid-template-columns: 1fr;

        padding-top: 60px;

        padding-bottom: 80px;

    }


    .hero {

        min-height: auto;

    }


    .hero-visual {

        max-width: 650px;

        width: 100%;

        margin: auto;

    }


    .about-grid,
    .equipment-grid,
    .contact-grid {

        grid-template-columns: 1fr;

    }


    .footer-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

}


@media(max-width:750px) {

    .topbar-inner {

        justify-content: center;

        text-align: center;

    }


    .topbar-inner > div:last-child {

        display: none;

    }


    .nav-container {

        height: 78px;

    }


    .brand {

        width: 160px;

    }


    .brand img {

        height: 65px;

    }


    .navigation {

        position: absolute;

        left: 0;

        top: 78px;

        width: 100%;

        background: white;

        padding: 25px;

        flex-direction: column;

        gap: 10px;

        display: none;

        box-shadow:
            0 15px 30px rgba(0,0,0,.1);

    }


    .navigation.open {

        display: flex;

    }


    .menu-toggle {

        display: block;

    }


    .quote-button {

        display: none;

    }


    .hero h1 {

        font-size: 52px;

    }


    .hero-visual {

        min-height: 480px;

    }


    .floating-card {

        transform: scale(.85);

    }


    .card-print {

        left: 0;

    }


    .card-design {

        right: 0;

    }


    .about-images {

        min-height: 500px;

    }


    .about-main-card {

        width: 90%;

    }


    .about-features {

        grid-template-columns: 1fr;

    }


    .brand-strip-inner {

        flex-direction: column;

        padding: 25px 0;

        align-items: flex-start;

    }


    .strip-line {

        display: none;

    }


    .equipment-scene {

        transform: scale(.85);

        transform-origin: center;

    }


    .big-cta-content {

        flex-direction: column;

        text-align: center;

    }


    .footer-grid {

        grid-template-columns: 1fr;

    }

}


@media(max-width:900px) {

    .media-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .media-empty-state {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

}


@media(max-width:750px) {

    .showcase-toolbar {
        align-items: stretch;
    }

    .showcase-filters {
        width: 100%;
    }

    .showcase-filter {
        flex: 1;
    }

    .media-upload-button {
        justify-content: center;
        width: 100%;
    }

    .media-dropzone {
        flex-wrap: wrap;
    }

    .dropzone-note {
        width: 100%;
        margin-left: 63px;
    }

}


@media(max-width:520px) {

    .container {

        width: 92%;

    }


    .hero h1 {

        font-size: 43px;

        letter-spacing: -2px;

    }


    .hero-description {

        font-size: 15px;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .btn-primary,
    .btn-outline {

        text-align: center;

    }


    .hero-points {

        flex-direction: column;

        gap: 10px;

    }


    .hero-visual {

        min-height: 400px;

    }


    .logo-display {

        padding: 10px;

    }


    .logo-frame {

        padding: 15px;

    }


    .floating-card {

        transform: scale(.72);

    }


    .card-print {

        left: -30px;

    }


    .card-design {

        right: -30px;

    }


    .services-grid,
    .portfolio-grid {

        grid-template-columns: 1fr;

    }


    .about-images {

        min-height: 430px;

    }


    .about-main-card {

        height: 360px;

    }


    .printer-machine {

        height: 200px;

    }


    .equipment-scene {

        transform: scale(.63);

        width: 155%;

        margin-left: -27%;

    }


    .input-row {

        grid-template-columns: 1fr;

    }


    .contact-form {

        padding: 22px;

    }


    .experience-card {

        left: 0;

    }


    .colour-card {

        right: 0;

    }


    .whatsapp-button {

        width: 55px;

        height: 55px;

        right: 18px;

        bottom: 18px;

    }

}