        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
    font-family: "Inter", sans-serif;
}

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Inter", sans-serif;
            background: #07111f;
            color: #ffffff;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* =========================
           NAVIGATION
        ========================= */

        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;

            display: flex;
            align-items: center;
            justify-content: space-between;

            padding: 18px 6%;

            background: rgba(7, 17, 31, 0.85);
            backdrop-filter: blur(14px);

            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .brand img {
            width: 52px;
            height: 52px;
            object-fit: contain;
        }

        .brand-text {
            display: flex;
            flex-direction: column;
        }

        .brand-name {
            font-size: 1.1rem;
            font-weight: 800;
            letter-spacing: 2px;
        }

        .brand-subtitle {
            font-size: 0.65rem;
            color: #c5ccd6;
            letter-spacing: 0.5px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-links a {
            color: #d9e0e8;
            font-size: 0.9rem;
            transition: 0.3s ease;
        }

        .nav-links a:hover {
            color: #f5c542;
        }

        .nav-cta {
            padding: 11px 20px;
            border-radius: 6px;
            background: #f5c542;
            color: #07111f !important;
            font-weight: 700;
        }

        .nav-cta:hover {
            background: #ffffff;
        }

        /* =========================
           HERO
        ========================= */

        .hero {
            min-height: 100vh;

            display: flex;
            align-items: center;

            padding: 140px 6% 80px;

            position: relative;
            overflow: hidden;

            background:
                 linear-gradient(
                    90deg,
                   rgba(7, 17, 31, 0.96) 0%,
                   rgba(7, 17, 31, 0.82) 38%,
                   rgba(7, 17, 31, 0.35) 65%,
                   rgba(7, 17, 31, 0.18) 100%
                 ),
                 url("./hero.webp") center center / cover no-repeat;
        }

        .hero-content {
            max-width: 850px;
            position: relative;
            z-index: 2;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;

            margin-bottom: 24px;

            color: #f5c542;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .eyebrow::before {
            content: "";
            width: 35px;
            height: 2px;
            background: #f5c542;
        }

        .hero h1 {
            font-size: clamp(3.2rem, 8vw, 7rem);
            line-height: 0.95;
            letter-spacing: -4px;
            margin-bottom: 28px;
            max-width: 900px;
        }

        .hero h1 span {
            color: #f5c542;
        }

        .hero-description {
            max-width: 650px;

            color: #b9c3cf;

            font-size: 1.15rem;
            line-height: 1.8;

            margin-bottom: 36px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;

            padding: 15px 25px;

            border-radius: 6px;

            font-weight: 700;
            font-size: 0.95rem;

            transition: all 0.3s ease;
        }

        .btn-primary {
            background: #f5c542;
            color: #07111f;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            background: #ffffff;
        }

        .btn-secondary {
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #ffffff;
        }

        .btn-secondary:hover {
            border-color: #f5c542;
            color: #f5c542;
        }

        /* =========================
           HERO DECORATION
        ========================= */

        .hero-orbit {
            position: absolute;

            width: 500px;
            height: 500px;

            right: -100px;
            top: 50%;

            transform: translateY(-50%);

            border: 1px solid rgba(245, 197, 66, 0.15);
            border-radius: 50%;
        }

        .hero-orbit::before {
            content: "";

            position: absolute;

            width: 360px;
            height: 360px;

            left: 70px;
            top: 70px;

            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 50%;
        }

        .hero-orbit::after {
            content: "";

            position: absolute;

            width: 12px;
            height: 12px;

            background: #f5c542;

            border-radius: 50%;

            top: 35px;
            right: 100px;

            box-shadow: 0 0 35px rgba(245, 197, 66, 0.8);
        }

        /* =========================
           TRUST STRIP
        ========================= */

        .trust-strip {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;

            gap: 20px;

            padding: 28px 6%;

            background: #0d1a2a;

            border-top: 1px solid rgba(255,255,255,0.06);
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        .trust-item {
            color: #8f9bab;

            font-size: 0.75rem;
            font-weight: 700;

            letter-spacing: 1.8px;
        }

        /* =========================
           MOBILE
        ========================= */

        @media (max-width: 850px) {

            .nav-links {
                display: none;
            }

            .hero {
                padding-top: 130px;
            }

            .hero h1 {
                font-size: clamp(3rem, 15vw, 5rem);
                letter-spacing: -2px;
            }

            .hero-orbit {
                width: 350px;
                height: 350px;
                right: -180px;
                opacity: 0.5;
            }

            .hero-orbit::before {
                width: 250px;
                height: 250px;
                left: 50px;
                top: 50px;
            }

            .trust-strip {
                justify-content: flex-start;
            }
        }
        /* =========================
   ABOUT HARRYCORE
========================= */

.about {
    padding: 120px 6%;
    background: #f4f1e8;
    color: #07111f;
}

.about-label {
    margin-bottom: 70px;

    color: #8a6b12;

    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.about-grid {
    max-width: 1250px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: start;
}

.section-number {
    margin-bottom: 22px;

    color: #8a6b12;

    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.about-heading h2 {
    max-width: 600px;

    font-size: clamp(2.8rem, 5vw, 5rem);

    line-height: 1;

    letter-spacing: -3px;
}

.about-heading h2 span {
    color: #9b7711;
}

.about-content {
    padding-top: 8px;
}

.about-content p {
    max-width: 600px;

    margin-bottom: 25px;

    color: #4d5662;

    font-size: 1rem;

    line-height: 1.9;
}

.about-content .about-lead {
    color: #07111f;

    font-size: 1.3rem;
    font-weight: 500;

    line-height: 1.7;
}


/* =========================
   ABOUT MOBILE
========================= */

@media (max-width: 850px) {

    .about {
        padding: 90px 6%;
    }

    .about-label {
        margin-bottom: 45px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-heading h2 {
        letter-spacing: -2px;
    }

}
/* =========================
   SERVICES
========================= */

.services {
    padding: 120px 6%;
    background: #07111f;
    color: #ffffff;
}

.services-header {
    max-width: 1250px;
    margin: 0 auto 70px;

    display: grid;
    grid-template-columns: 1.2fr 0.8fr;

    gap: 80px;

    align-items: end;
}

.services-header h2 {
    max-width: 700px;

    font-size: clamp(2.8rem, 5vw, 5rem);

    line-height: 1;

    letter-spacing: -3px;
}

.services-header h2 span {
    color: #f5c542;
}

.services-intro {
    max-width: 480px;

    color: #9da8b5;

    font-size: 1rem;
    line-height: 1.8;
}


/* =========================
   SERVICE GRID
========================= */

.services-grid {
    max-width: 1250px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.service-card {
    min-height: 360px;

    padding: 32px;

    position: relative;

    display: flex;
    flex-direction: column;

    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);

    transition:
        background 0.35s ease,
        transform 0.35s ease;
}

.service-card:hover {
    background: #0d1a2a;

    transform: translateY(-5px);
}

.service-number {
    color: #657180;

    font-size: 0.7rem;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.service-icon {
    width: 48px;
    height: 48px;

    margin: 50px 0 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(245, 197, 66, 0.35);
    border-radius: 50%;

    color: #f5c542;

    font-size: 1.2rem;
}

.service-card h3 {
    margin-bottom: 16px;

    font-size: 1.25rem;

    line-height: 1.2;
}

.service-card p {
    color: #8f9baa;

    font-size: 0.9rem;

    line-height: 1.7;
}

.service-link {
    margin-top: auto;
    padding-top: 30px;

    color: #f5c542;

    font-size: 0.75rem;
    font-weight: 800;

    letter-spacing: 0.8px;

    text-transform: uppercase;
}


/* =========================
   SERVICES MOBILE
========================= */

@media (max-width: 1100px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 850px) {

    .services {
        padding: 90px 6%;
    }

    .services-header {
        grid-template-columns: 1fr;

        gap: 35px;

        margin-bottom: 50px;
    }

    .services-header h2 {
        letter-spacing: -2px;
    }

}

@media (max-width: 600px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 330px;
    }

}
/* =========================
   INDUSTRIES
========================= */

.industries {
    padding: 120px 6%;
    background: #f4f1e8;
    color: #07111f;
}

.industries-top {
    max-width: 1250px;
    margin: 0 auto 70px;

    display: grid;
    grid-template-columns: 1.2fr 0.8fr;

    gap: 80px;

    align-items: end;
}

.industries-top h2 {
    max-width: 700px;

    font-size: clamp(2.8rem, 5vw, 5rem);

    line-height: 1;

    letter-spacing: -3px;
}

.industries-top h2 span {
    color: #9b7711;
}

.industries-intro {
    max-width: 480px;

    color: #4d5662;

    font-size: 1rem;
    line-height: 1.8;
}


/* =========================
   INDUSTRY LIST
========================= */

.industries-list {
    max-width: 1250px;
    margin: 0 auto;

    border-top: 1px solid rgba(7, 17, 31, 0.2);
}

.industry-item {
    min-height: 105px;

    display: grid;
    grid-template-columns: 80px 1fr 60px;

    align-items: center;

    padding: 20px 0;

    border-bottom: 1px solid rgba(7, 17, 31, 0.2);

    transition:
        padding 0.3s ease,
        background 0.3s ease;
}

.industry-number {
    color: #8a6b12;

    font-size: 0.7rem;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.industry-name {
    font-size: clamp(1.5rem, 3vw, 2.5rem);

    font-weight: 600;

    letter-spacing: -1px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.industry-arrow {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(7, 17, 31, 0.25);
    border-radius: 50%;

    font-size: 1rem;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.industry-item:hover {
    padding-left: 15px;
}

.industry-item:hover .industry-name {
    color: #9b7711;

    transform: translateX(8px);
}

.industry-item:hover .industry-arrow {
    background: #07111f;
    color: #f5c542;

    transform: rotate(45deg);
}


/* =========================
   INDUSTRIES MOBILE
========================= */

@media (max-width: 850px) {

    .industries {
        padding: 90px 6%;
    }

    .industries-top {
        grid-template-columns: 1fr;

        gap: 35px;

        margin-bottom: 50px;
    }

    .industries-top h2 {
        letter-spacing: -2px;
    }

    .industry-item {
        grid-template-columns: 55px 1fr 45px;

        min-height: 90px;
    }

    .industry-name {
        font-size: 1.35rem;
    }

}

@media (max-width: 500px) {

    .industry-item {
        grid-template-columns: 45px 1fr 40px;
    }

    .industry-name {
        font-size: 1.15rem;
    }

    .industry-arrow {
        width: 36px;
        height: 36px;
    }

}
/* =========================
   WHY HARRYCORE
========================= */

.why-us {
    padding: 120px 6%;
    background: #07111f;
    color: #ffffff;
}

.why-us-grid {
    max-width: 1250px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 0.8fr;

    gap: 100px;

    align-items: center;
}

.why-us-content {
    max-width: 700px;
}

.why-us-content h2 {
    margin-bottom: 30px;

    font-size: clamp(3rem, 5vw, 5.5rem);

    line-height: 0.98;
    letter-spacing: -3px;
}

.why-us-content h2 span {
    color: #f5c542;
}

.why-us-lead {
    max-width: 600px;

    margin-bottom: 55px;

    color: #b9c3cf;

    font-size: 1.15rem;
    line-height: 1.8;
}


/* =========================
   WHY POINTS
========================= */

.why-us-points {
    border-top: 1px solid rgba(255,255,255,0.12);
}

.why-point {
    display: grid;
    grid-template-columns: 60px 1fr;

    gap: 25px;

    padding: 28px 0;

    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.why-point-number {
    color: #f5c542;

    font-size: 0.75rem;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.why-point h3 {
    margin-bottom: 8px;

    font-size: 1.25rem;
}

.why-point p {
    max-width: 520px;

    color: #8f9bab;

    font-size: 0.95rem;
    line-height: 1.7;
}


/* =========================
   VISUAL FRAME
========================= */

.why-us-visual {
    display: flex;
    justify-content: center;
}

.visual-frame {
    position: relative;

    width: min(430px, 100%);
    aspect-ratio: 1 / 1;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(245,197,66,0.25);

    background:
        radial-gradient(
            circle at center,
            rgba(245,197,66,0.12),
            transparent 45%
        );

    overflow: hidden;
}

.visual-frame::before,
.visual-frame::after {
    content: "";

    position: absolute;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 50%;
}

.visual-frame::before {
    width: 75%;
    height: 75%;
}

.visual-frame::after {
    width: 52%;
    height: 52%;
}

.visual-label {
    position: absolute;

    top: 25px;
    left: 25px;

    color: #f5c542;

    font-size: 0.7rem;
    font-weight: 800;

    letter-spacing: 2px;
}

.visual-center {
    position: relative;
    z-index: 2;

    width: 115px;
    height: 115px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(245,197,66,0.5);

    border-radius: 50%;

    background: #07111f;

    box-shadow:
        0 0 50px rgba(245,197,66,0.12);
}

.visual-center span {
    color: #f5c542;

    font-size: 2.5rem;
    font-weight: 900;

    letter-spacing: 2px;
}

.visual-caption {
    position: absolute;

    right: 25px;
    bottom: 25px;

    color: #8f9bab;

    font-size: 0.65rem;
    font-weight: 700;

    line-height: 1.7;

    letter-spacing: 2px;

    text-align: right;
}


/* =========================
   WHY HARRYCORE MOBILE
========================= */

@media (max-width: 850px) {

    .why-us {
        padding: 90px 6%;
    }

    .why-us-grid {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .why-us-content h2 {
        letter-spacing: -2px;
    }

    .why-us-lead {
        margin-bottom: 40px;
    }

    .visual-frame {
        max-width: 380px;
    }

}
/* =========================
   CONTACT / REQUEST A QUOTE
========================= */

.contact {
    padding: 120px 6%;
    background: #f4f1e8;
    color: #07111f;
}

.contact-header {
    max-width: 1250px;
    margin: 0 auto 75px;
}

.contact-header h2 {
    max-width: 850px;

    margin-bottom: 25px;

    font-size: clamp(3rem, 6vw, 6rem);

    line-height: 0.95;
    letter-spacing: -3px;
}

.contact-header h2 span {
    color: #9b7711;
}

.contact-intro {
    max-width: 650px;

    color: #4d5662;

    font-size: 1.05rem;
    line-height: 1.8;
}


/* =========================
   CONTACT GRID
========================= */

.contact-grid {
    max-width: 1250px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.7fr 1.3fr;

    gap: 100px;

    align-items: start;
}


/* =========================
   CONTACT INFORMATION
========================= */

.contact-info {
    border-top: 1px solid rgba(7,17,31,0.2);
}

.contact-block {
    padding: 25px 0;

    border-bottom: 1px solid rgba(7,17,31,0.2);
}

.contact-label {
    display: block;

    margin-bottom: 10px;

    color: #8a6b12;

    font-size: 0.7rem;
    font-weight: 800;

    letter-spacing: 2px;
}

.contact-value {
    color: #07111f;

    font-size: 1rem;
    line-height: 1.8;
}

a.contact-value {
    display: inline-block;

    transition: color 0.3s ease;
}

a.contact-value:hover {
    color: #9b7711;
}


/* =========================
   QUOTE FORM
========================= */

.quote-form-wrapper {
    padding: 45px;

    background: #07111f;

    color: #ffffff;
}

.quote-form {
    display: flex;
    flex-direction: column;

    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;

    gap: 9px;
}

.form-group label {
    color: #c5ccd6;

    font-size: 0.75rem;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 15px 16px;

    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;

    outline: none;

    background: #0d1a2a;
    color: #ffffff;

    font-family: inherit;
    font-size: 0.95rem;

    transition:
        border-color 0.3s ease,
        background 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #687586;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #f5c542;

    background: #101f31;
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;

    min-height: 150px;
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    margin-top: 5px;
    padding: 17px 20px;

    border: none;
    border-radius: 4px;

    background: #f5c542;
    color: #07111f;

    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 800;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.form-submit span {
    font-size: 1.2rem;
}

.form-submit:hover {
    background: #ffffff;

    transform: translateY(-2px);
}


/* =========================
   CONTACT MOBILE
========================= */

@media (max-width: 850px) {

    .contact {
        padding: 90px 6%;
    }

    .contact-header {
        margin-bottom: 55px;
    }

    .contact-header h2 {
        letter-spacing: -2px;
    }

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .quote-form-wrapper {
        padding: 30px 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 500px) {

    .contact-header h2 {
        font-size: 3rem;
    }

    .quote-form-wrapper {
        padding: 25px 18px;
    }

}
/* =========================
   FOOTER
========================= */

.site-footer {
    padding: 70px 6% 25px;

    background: #050c16;
    color: #ffffff;
}

.footer-main {
    max-width: 1250px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.2fr 0.8fr;

    gap: 100px;

    padding-bottom: 60px;

    border-bottom: 1px solid rgba(255,255,255,0.1);
}


/* =========================
   FOOTER BRAND
========================= */

.footer-brand {
    max-width: 520px;
}

.footer-logo {
    display: inline-flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 25px;
}

.footer-logo img {
    width: 55px;
    height: 55px;

    object-fit: contain;
}

.footer-logo div {
    display: flex;
    flex-direction: column;
}

.footer-logo strong {
    font-size: 1.1rem;

    letter-spacing: 2px;
}

.footer-logo span {
    margin-top: 3px;

    color: #8f9bab;

    font-size: 0.65rem;

    letter-spacing: 0.5px;
}

.footer-brand > p {
    max-width: 480px;

    color: #8f9bab;

    font-size: 0.9rem;

    line-height: 1.8;
}


/* =========================
   FOOTER LINKS
========================= */

.footer-links {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 13px;
}

.footer-heading {
    margin-bottom: 8px;

    color: #f5c542;

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 2px;
}

.footer-column a {
    color: #b9c3cf;

    font-size: 0.9rem;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;

    transform: translateX(4px);
}


/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
    max-width: 1250px;

    margin: 25px auto 0;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: #687586;

    font-size: 0.7rem;

    line-height: 1.6;
}


/* =========================
   FOOTER MOBILE
========================= */

@media (max-width: 850px) {

    .site-footer {
        padding: 60px 6% 25px;
    }

    .footer-main {
        grid-template-columns: 1fr;

        gap: 50px;

        padding-bottom: 45px;
    }

    .footer-links {
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 8px;
    }

}
/* =========================
   MOBILE MENU BUTTON
========================= */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;

    background: transparent;
    color: #ffffff;

    font-size: 1.4rem;

    cursor: pointer;
}


/* =========================
   MOBILE NAVIGATION
========================= */

@media (max-width: 850px) {

    .menu-toggle {
        display: flex;
    }

    .navbar {
        position: fixed;
    }

    .nav-links {
        position: absolute;

        top: calc(100% + 1px);
        left: 0;

        width: 100%;

        display: none;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 10px 6% 20px;

        background: rgba(7, 17, 31, 0.98);

        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 15px 0;

        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .nav-links .nav-cta {
        margin-top: 12px;

        padding: 13px 18px;

        text-align: center;

        border-bottom: none;
    }

}
/* =========================
   SERVICES BACKGROUND IMAGE
========================= */

.services {
    position: relative;
    overflow: hidden;
}

.services-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    z-index: 0;
    pointer-events: none;
}

.services-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(7, 17, 31, 0.96) 0%,
            rgba(7, 17, 31, 0.88) 45%,
            rgba(7, 17, 31, 0.72) 100%
        );
}

.services-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.services-header,
.services-grid {
    position: relative;
    z-index: 1;
}
/* =========================
   INDUSTRIES — VISUAL UPGRADE
========================= */

.industries {
    position: relative;
    overflow: hidden;
    background: #f3f1eb;
}

.industries::before {
    content: "03";
    position: absolute;
    top: 40px;
    right: 5%;
    font-size: clamp(140px, 20vw, 280px);
    font-weight: 800;
    line-height: 1;
    color: rgba(7, 17, 31, 0.035);
    pointer-events: none;
}

.industries-top {
    position: relative;
    z-index: 1;
}

.industries-list {
    position: relative;
    z-index: 1;
    margin-top: 70px;
    border-top: 1px solid rgba(7, 17, 31, 0.18);
}

.industry-item {
    min-height: 105px;

    display: grid;
    grid-template-columns: 80px 1fr 60px;

    align-items: center;

    padding: 20px 18px;

    border-bottom: 1px solid rgba(7, 17, 31, 0.2);

    transition:
        padding 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;

    position: relative;
    overflow: hidden;
}
.industry-item::before {
    content: "";

    position: absolute;
    left: 0;
    top: 0;

    width: 4px;
    height: 100%;

    background: #f5c542;

    transform: scaleY(0);
    transform-origin: bottom;

    transition: transform 0.3s ease;
}
.industry-item:hover {
    background: #07111f;
    color: #ffffff;
    padding-left: 30px;
}

.industry-item:hover::before {
    transform: scaleY(1);
}

.industry-item:hover .industry-number {
    color: #f5c542;
}

.industry-item:hover .industry-arrow {
    background: #f5c542;
    color: #07111f;
    border-color: #f5c542;
    transform: translate(4px, -4px);
}

.industry-number {
    color: #8a6b12;

    font-size: 0.72rem;
    font-weight: 800;

    letter-spacing: 2px;

    transition: color 0.3s ease;
}

.industry-name {
    font-size: clamp(1.6rem, 3vw, 2.6rem);

    font-weight: 600;

    letter-spacing: -1px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.industry-arrow {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(7, 17, 31, 0.25);
    border-radius: 50%;

    font-size: 1rem;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.industry-item:hover {
    background: #07111f;
    color: #ffffff;
    padding-left: 25px;
    padding-right: 25px;
}

.industry-item:hover .industry-arrow {
    transform: translate(5px, -5px);
}
/* =========================
   WHY HARRYCORE IMAGE
========================= */

.why-us-visual {
    position: relative;
}

.visual-frame {
    position: relative;
    width: 100%;
    min-height: 560px;
    overflow: hidden;
    background: #07111f;
}

.visual-frame img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.visual-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(7, 17, 31, 0.15) 0%,
            rgba(7, 17, 31, 0.25) 45%,
            rgba(7, 17, 31, 0.85) 100%
        );

    pointer-events: none;
}

.visual-label {
    position: absolute;
    top: 28px;
    left: 28px;

    color: #ffffff;

    font-size: 0.75rem;
    font-weight: 800;

    letter-spacing: 2px;
}

.visual-caption {
    position: absolute;
    left: 28px;
    bottom: 28px;

    color: #ffffff;

    font-size: 0.75rem;
    font-weight: 700;

    line-height: 1.8;
    letter-spacing: 2px;
}
/* =========================
   TYPOGRAPHY — MANROPE HEADINGS
========================= */

.brand-name,
.hero h1,
.about h2,
.services h2,
.industries h2,
.why-us h2,
.contact h2,
.service-card h3,
.industry-name {
    font-family: "Manrope", sans-serif;
}
/* =========================
   STEP 1 — SCROLL REVEAL
========================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slightly different entrance for major headings */
.reveal-heading {
    opacity: 0;
    transform: translateY(45px);
    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-heading.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {

    .reveal,
    .reveal-heading {
        opacity: 1;
        transform: none;
        transition: none;
    }

}
/* =========================
   STEP 2 — PREMIUM INTERACTIONS
========================= */

/* NAVIGATION LINKS */

.nav-links a {
    position: relative;
}

.nav-links a:not(.nav-cta)::after {
    content: "";
    position: absolute;

    left: 0;
    bottom: -6px;

    width: 100%;
    height: 2px;

    background: #f5c542;

    transform: scaleX(0);
    transform-origin: right;

    transition: transform 0.3s ease;
}

.nav-links a:not(.nav-cta):hover::after {
    transform: scaleX(1);
    transform-origin: left;
}


/* BUTTONS */

.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 80%;
    height: 100%;

    background: rgba(255,255,255,0.22);

    transform: skewX(-20deg);

    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 140%;
}


/* SERVICE CARDS */

.service-card {
    transform: translateY(0);
    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);

    background: rgba(13, 26, 42, 0.95);

    border-color: rgba(245, 197, 66, 0.28);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.22);
}


/* SERVICE ICON */

.service-icon {
    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}

.service-card:hover .service-icon {
    transform: rotate(8deg) scale(1.1);

    background: #f5c542;

    color: #07111f;
}


/* SERVICE LINK */

.service-link {
    transition:
        letter-spacing 0.3s ease,
        transform 0.3s ease;
}

.service-card:hover .service-link {
    letter-spacing: 1.5px;
    transform: translateX(5px);
}


/* INDUSTRY ROW */

.industry-item {
    transition:
        padding 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.industry-item:hover {
    box-shadow:
        0 15px 35px rgba(7,17,31,0.12);
}


/* INDUSTRY ARROW */

.industry-arrow {
    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease;
}

.industry-item:hover .industry-arrow {
    transform: translate(5px, -5px) rotate(45deg);
}


/* WHY-US IMAGE */

.visual-frame {
    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}

.visual-frame:hover {
    transform: translateY(-6px);

    box-shadow:
        0 25px 70px rgba(0,0,0,0.3);
}

.visual-frame img {
    transition:
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.visual-frame:hover img {
    transform: scale(1.04);
}


/* QUOTE SUBMIT BUTTON */

.form-submit {
    position: relative;
    overflow: hidden;
}

.form-submit span {
    display: inline-block;

    transition:
        transform 0.3s ease;
}

.form-submit:hover span {
    transform: translateX(6px);
}


/* MOBILE — KEEP INTERACTIONS LIGHT */

@media (max-width: 850px) {

    .service-card:hover {
        transform: translateY(-4px);
    }

    .visual-frame:hover {
        transform: none;
    }

    .visual-frame:hover img {
        transform: none;
    }

}
/* =========================
   STEP 3 — HERO UPGRADE
========================= */

.hero {
    isolation: isolate;
}

/* Subtle premium glow */

.hero::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    right: -180px;
    top: 50%;

    transform: translateY(-50%);

    background: radial-gradient(
        circle,
        rgba(245, 197, 66, 0.10) 0%,
        rgba(245, 197, 66, 0.035) 35%,
        transparent 70%
    );

    pointer-events: none;

    z-index: 0;
}


/* HERO CONTENT ENTRANCE */

.hero-content {
    animation:
        heroContentIn 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroContentIn {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* EYEBROW */

.eyebrow {
    animation:
        heroEyebrowIn 0.8s ease 0.15s both;
}

@keyframes heroEyebrowIn {

    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


/* HEADLINE */

.hero h1 {
    animation:
        heroHeadingIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

@keyframes heroHeadingIn {

    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }

}


/* DESCRIPTION */

.hero-description {
    animation:
        heroDescriptionIn 0.9s ease 0.35s both;
}

@keyframes heroDescriptionIn {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* BUTTONS */

.hero-buttons {
    animation:
        heroButtonsIn 0.9s ease 0.5s both;
}

@keyframes heroButtonsIn {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* ORBIT */

.hero-orbit {
    animation:
        heroOrbitFloat 7s ease-in-out infinite;
}

@keyframes heroOrbitFloat {

    0%,
    100% {
        transform: translateY(-50%) rotate(0deg);
    }

    50% {
        transform: translateY(calc(-50% - 12px)) rotate(4deg);
    }

}


/* ORBIT GOLD DOT */

.hero-orbit::after {
    animation:
        orbitPulse 2.5s ease-in-out infinite;
}

@keyframes orbitPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow:
            0 0 25px rgba(245, 197, 66, 0.55);
    }

    50% {
        transform: scale(1.35);
        box-shadow:
            0 0 45px rgba(245, 197, 66, 0.9);
    }

}


/* TRUST STRIP */

.trust-item {
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.trust-item:hover {
    color: #f5c542;

    transform: translateY(-2px);
}


/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {

    .hero-content,
    .eyebrow,
    .hero h1,
    .hero-description,
    .hero-buttons,
    .hero-orbit,
    .hero-orbit::after {
        animation: none;
    }

}


/* MOBILE */

@media (max-width: 850px) {

    .hero::before {
        width: 450px;
        height: 450px;

        right: -220px;
    }

    .hero-orbit {
        animation-duration: 10s;
        opacity: 0.45;
    }

}
/* =========================
   STEP 4 — ACTIVE NAVIGATION
========================= */

.nav-links a:not(.nav-cta) {
    transition:
        color 0.3s ease,
        opacity 0.3s ease;
}

.nav-links a.nav-active {
    color: #f5c542;
}

.nav-links a.nav-active::after {
    transform: scaleX(1);
    transform-origin: left;
}
/* =========================
   STEP 5 — MOBILE NAV POLISH
========================= */

@media (max-width: 850px) {

    .nav-links {
        opacity: 0;
        transform: translateY(-10px);
        transition:
            opacity 0.3s ease,
            transform 0.3s ease;
    }

    .nav-links.active {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links a {
        opacity: 0;
        transform: translateX(-15px);

        transition:
            opacity 0.35s ease,
            transform 0.35s ease,
            color 0.3s ease;
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links.active a:nth-child(1) {
        transition-delay: 0.05s;
    }

    .nav-links.active a:nth-child(2) {
        transition-delay: 0.10s;
    }

    .nav-links.active a:nth-child(3) {
        transition-delay: 0.15s;
    }

    .nav-links.active a:nth-child(4) {
        transition-delay: 0.20s;
    }

    .nav-links.active a:nth-child(5) {
        transition-delay: 0.25s;
    }

    .nav-links a:not(.nav-cta)::after {
        display: none;
    }

    .nav-links .nav-cta {
        box-shadow:
            0 8px 25px rgba(245, 197, 66, 0.18);
    }

}
/* =========================
   MOBILE MENU ICON
========================= */

.menu-toggle {
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;

    width: 20px;
    height: 2px;

    background: #ffffff;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
/* =========================
   STEP 6 — PREMIUM SERVICE CARDS
========================= */

.service-card {
    position: relative;
    overflow: hidden;

    isolation: isolate;
}

/* Gold accent line */

.service-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 3px;
    height: 100%;

    background: #f5c542;

    transform: scaleY(0);
    transform-origin: bottom;

    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover::before {
    transform: scaleY(1);
}


/* Light sweep */

.service-card::after {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.035),
            transparent
        );

    transform: skewX(-18deg);

    transition: left 0.7s ease;

    pointer-events: none;

    z-index: -1;
}

.service-card:hover::after {
    left: 140%;
}


/* Number */

.service-number {
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.service-card:hover .service-number {
    color: #f5c542;

    transform: translateX(5px);
}


/* Icon */

.service-icon {
    position: relative;
    z-index: 2;

    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.service-card:hover .service-icon {
    transform:
        translateY(-4px)
        rotate(8deg)
        scale(1.08);

    background: #f5c542;

    color: #07111f;

    border-color: #f5c542;
}


/* Heading */

.service-card h3 {
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.service-card:hover h3 {
    color: #f5c542;

    transform: translateX(3px);
}


/* Description */

.service-card p {
    transition:
        color 0.3s ease;
}

.service-card:hover p {
    color: #b9c3cf;
}


/* Service link */

.service-link {
    position: relative;

    display: inline-flex;
    align-items: center;

    width: fit-content;

    transition:
        color 0.3s ease,
        transform 0.3s ease,
        letter-spacing 0.3s ease;
}

.service-card:hover .service-link {
    color: #ffffff;

    transform: translateX(6px);

    letter-spacing: 1.4px;
}


/* Desktop depth */

@media (min-width: 851px) {

    .service-card:hover {
        z-index: 3;

        box-shadow:
            0 25px 60px rgba(0,0,0,0.28);
    }

}


/* Mobile */

@media (max-width: 850px) {

    .service-card::before {
        transform: scaleY(0);
    }

    .service-card:hover::before {
        transform: scaleY(0.35);
    }

    .service-card:hover {
        transform: translateY(-4px);
    }

}
/* =========================================================
   INDUSTRY PAGES — CORPORATE
========================================================= */

.industry-page-hero {
    min-height: 92vh;

    display: flex;
    align-items: center;

    position: relative;
    overflow: hidden;

    padding: 150px 6% 100px;

    background:
        linear-gradient(
            90deg,
            rgba(7, 17, 31, 0.94) 0%,
            rgba(7, 17, 31, 0.8) 42%,
            rgba(7, 17, 31, 0.62) 100%
        ),
        url("../images/corporate/corporate-support.jpg") center / cover no-repeat;

    color: #ffffff;
}

.industry-page-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(245, 197, 66, 0.12),
            transparent 32%
        );

    z-index: 0;
}


.industry-page-content {
    position: relative;

    z-index: 2;

    max-width: 850px;
}


.industry-page-number {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 25px;

    color: #f5c542;

    font-size: 0.75rem;

    font-weight: 800;

    letter-spacing: 2px;
}


.industry-page-number::before {
    content: "";

    width: 35px;

    height: 2px;

    background: #f5c542;
}


.industry-page-hero h1 {
    max-width: 850px;

    margin-bottom: 30px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(3.5rem, 8vw, 7rem);

    line-height: 0.92;

    letter-spacing: -4px;
}


.industry-page-hero h1 span {
    color: #f5c542;
}


.industry-page-description {
    max-width: 650px;

    margin-bottom: 38px;

    color: #b9c3cf;

    font-size: 1.15rem;

    line-height: 1.8;
}


.industry-page-buttons {
    display: flex;

    gap: 16px;

    flex-wrap: wrap;
}


/* =========================================================
   HERO DECORATION
========================================================= */

.industry-page-orbit {
    position: absolute;

    width: 650px;

    height: 650px;

    right: -180px;

    top: 50%;

    transform: translateY(-50%);

    border: 1px solid rgba(245, 197, 66, 0.12);

    border-radius: 50%;
}


.industry-page-orbit::before {
    content: "";

    position: absolute;

    width: 470px;

    height: 470px;

    left: 90px;

    top: 90px;

    border: 1px solid rgba(255, 255, 255, 0.07);

    border-radius: 50%;
}


.industry-page-orbit::after {
    content: "";

    position: absolute;

    width: 14px;

    height: 14px;

    right: 115px;

    top: 95px;

    border-radius: 50%;

    background: #f5c542;

    box-shadow:
        0 0 25px rgba(245, 197, 66, 0.8),
        0 0 60px rgba(245, 197, 66, 0.25);
}


/* =========================================================
   INDUSTRY INTRODUCTION
========================================================= */

.industry-introduction {
    padding: 120px 6%;

    background: #f4f1e8;

    color: #07111f;
}


.industry-introduction-grid {
    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: start;
}


.industry-introduction h2 {
    max-width: 600px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(2.8rem, 5vw, 5rem);

    line-height: 1;

    letter-spacing: -3px;
}


.industry-introduction h2 span {
    color: #9b7711;
}


.industry-introduction-lead {
    margin-bottom: 25px;

    color: #07111f;

    font-size: 1.3rem;

    font-weight: 500;

    line-height: 1.7;
}


.industry-introduction-grid > div:last-child p:not(.industry-introduction-lead) {
    max-width: 600px;

    color: #4d5662;

    font-size: 1rem;

    line-height: 1.9;
}


/* =========================================================
   INDUSTRY SOLUTIONS
========================================================= */

.industry-solutions {
    padding: 120px 6%;

    position: relative;

    overflow: hidden;

    background: #07111f;

    color: #ffffff;
}


.industry-solutions-header {
    max-width: 1250px;

    margin: 0 auto 70px;

    display: grid;

    grid-template-columns: 1.2fr 0.8fr;

    gap: 80px;

    align-items: end;
}


.industry-solutions-header h2 {
    max-width: 700px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(2.8rem, 5vw, 5rem);

    line-height: 1;

    letter-spacing: -3px;
}


.industry-solutions-header h2 span {
    color: #f5c542;
}


.industry-solutions-header > p {
    max-width: 480px;

    color: #9da8b5;

    font-size: 1rem;

    line-height: 1.8;
}


/* =========================================================
   SOLUTION CARDS
========================================================= */

.industry-solutions-grid {
    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.industry-solution-card-image {
    min-height: 430px;

    position: relative;

    overflow: hidden;

    padding: 0;

    display: block;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.industry-solution-card-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}


.industry-solution-card-image .industry-solution-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    margin: 0;

    transition: transform 0.6s ease;
}


.industry-solution-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(7, 17, 31, 0.25) 0%,
            rgba(7, 17, 31, 0.45) 35%,
            rgba(7, 17, 31, 0.92) 100%
        );

    z-index: 1;
}


.industry-solution-content {
    position: relative;

    z-index: 2;

    min-height: 430px;

    padding: 35px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;
}


.industry-solution-card-image .industry-solution-number {
    position: absolute;

    top: 35px;
    left: 35px;

    color: #f5c542;
}


.industry-solution-card-image h3 {
    margin-bottom: 16px;

    font-family: "Manrope", sans-serif;

    font-size: 1.7rem;
}


.industry-solution-card-image p {
    max-width: 520px;

    color: #d2d8df;

    line-height: 1.7;
}


.industry-solution-card-image .industry-solution-link {
    margin-top: 25px;

    padding-top: 0;
}


.industry-solution-card-image:hover .industry-solution-image {
    transform: scale(1.06);
}


.industry-solution-card {
    min-height: 390px;

    padding: 35px;

    position: relative;

    display: flex;

    flex-direction: column;

    border-right: 1px solid rgba(255, 255, 255, 0.12);

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);

    transition:
        background 0.35s ease,
        transform 0.35s ease;
}


.industry-solution-card:hover {
    background: #0d1a2a;

    transform: translateY(-5px);
}


.industry-solution-number {
    color: #657180;

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.industry-solution-icon {
    width: 52px;

    height: 52px;

    margin: 55px 0 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(245, 197, 66, 0.35);

    border-radius: 50%;

    color: #f5c542;

    font-size: 1.2rem;
}


.industry-solution-card h3 {
    margin-bottom: 16px;

    font-family: "Manrope", sans-serif;

    font-size: 1.5rem;

    line-height: 1.2;
}


.industry-solution-card p {
    max-width: 520px;

    color: #8f9baa;

    font-size: 0.95rem;

    line-height: 1.7;
}


.industry-solution-link {
    margin-top: auto;

    padding-top: 30px;

    color: #f5c542;

    font-size: 0.75rem;

    font-weight: 800;

    letter-spacing: 0.8px;

    text-transform: uppercase;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.industry-solution-link:hover {
    color: #ffffff;

    transform: translateX(5px);
}


/* =========================================================
   INDUSTRY SUPPORT
========================================================= */

.industry-support {
    padding: 120px 6%;

    background: #f4f1e8;

    color: #07111f;
}


.industry-support-grid {
    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;
}


.industry-support h2 {
    max-width: 650px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(2.8rem, 5vw, 5rem);

    line-height: 1;

    letter-spacing: -3px;
}


.industry-support h2 span {
    color: #9b7711;
}


.industry-support-content {
    border-top: 1px solid rgba(7, 17, 31, 0.2);
}


.industry-support-point {
    display: grid;

    grid-template-columns: 60px 1fr;

    gap: 25px;

    padding: 28px 0;

    border-bottom: 1px solid rgba(7, 17, 31, 0.2);
}


.industry-support-point > span {
    color: #8a6b12;

    font-size: 0.75rem;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.industry-support-point h3 {
    margin-bottom: 8px;

    font-size: 1.25rem;
}


.industry-support-point p {
    max-width: 520px;

    color: #4d5662;

    font-size: 0.95rem;

    line-height: 1.7;
}


/* =========================================================
   INDUSTRY CTA
========================================================= */

.industry-cta {
    padding: 130px 6%;

    text-align: center;

    background: #07111f;

    color: #ffffff;
}


.industry-cta .section-number {
    margin-bottom: 25px;
}


.industry-cta h2 {
    max-width: 900px;

    margin: 0 auto 25px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(3rem, 6vw, 6rem);

    line-height: 0.95;

    letter-spacing: -3px;
}


.industry-cta h2 span {
    color: #f5c542;
}


.industry-cta > p:not(.section-number) {
    max-width: 600px;

    margin: 0 auto 35px;

    color: #9da8b5;

    font-size: 1rem;

    line-height: 1.8;
}


/* =========================================================
   INDUSTRY PAGE MOBILE
========================================================= */

@media (max-width: 850px) {

    .industry-page-hero {
        min-height: 90vh;

        padding: 130px 6% 80px;
    }


    .industry-page-hero h1 {
        letter-spacing: -2px;
    }


    .industry-page-orbit {
        width: 420px;

        height: 420px;

        right: -230px;

        opacity: 0.55;
    }


    .industry-page-orbit::before {
        width: 300px;

        height: 300px;

        left: 60px;

        top: 60px;
    }


    .industry-introduction {
        padding: 90px 6%;
    }


    .industry-introduction-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .industry-introduction h2 {
        letter-spacing: -2px;
    }


    .industry-solutions {
        padding: 90px 6%;
    }


    .industry-solutions-header {
        grid-template-columns: 1fr;

        gap: 35px;

        margin-bottom: 50px;
    }


    .industry-solutions-header h2 {
        letter-spacing: -2px;
    }


    .industry-solutions-grid {
        grid-template-columns: 1fr;
    }


    .industry-solution-card {
        min-height: 340px;
    }


    .industry-support {
        padding: 90px 6%;
    }


    .industry-support-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }


    .industry-support h2 {
        letter-spacing: -2px;
    }


    .industry-cta {
        padding: 100px 6%;
    }


    .industry-cta h2 {
        letter-spacing: -2px;
    }

}


@media (max-width: 500px) {

    .industry-page-hero h1 {
        font-size: 3.3rem;
    }


    .industry-page-buttons {
        flex-direction: column;

        align-items: stretch;
    }


    .industry-page-buttons .btn {
        width: 100%;
    }


    .industry-solution-card {
        min-height: 330px;

        padding: 28px;
    }

}