/* ==================================================
   SUMMITOPS
   Main Stylesheet
================================================== */


/* ------------------------------
   RESET / GLOBAL
------------------------------ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #080a0c;
    color: #f4f4f4;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

.orange {
    color: #ff681d;
}


/* ------------------------------
   NAVIGATION
------------------------------ */

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;

    width: 100%;
    height: 74px;

    background: rgba(5, 6, 7, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-container {
    max-width: 1400px;
    height: 100%;

    margin: auto;
    padding: 0 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
}

.brand img {
    width: 200px;
    height: 85px;

    object-fit: contain;
    object-position: left center;
}

.nav-links {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 45px;
}

.nav-links a {
    position: relative;

    height: 100%;

    display: flex;
    align-items: center;

    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ff681d;
}

.nav-links a.active::after {
    content: "";

    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #ff681d;
}

.nav-button {
    padding: 10px 25px;

    background: #ff681d;
    color: #080a0c;

    border: 1px solid #ff681d;
    border-radius: 5px;

    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition: 0.2s;
}

.nav-button:hover {
    background: #ff874a;
    border-color: #ff874a;

    transform: translateY(-1px);
}

.menu-button {
    display: none;

    border: 0;
    background: none;

    color: white;

    font-size: 27px;

    cursor: pointer;
}


/* ------------------------------
   HERO
------------------------------ */

.hero {
    position: relative;

    min-height: 440px;

    padding-top: 74px;

    background-image: url("../images/hero.png");
    background-size: cover;
    background-position: center 15%;

    border-bottom: 1px solid #262626;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 5, 6, 0.98) 0%,
            rgba(4, 5, 6, 0.88) 25%,
            rgba(4, 5, 6, 0.35) 58%,
            rgba(4, 5, 6, 0.15) 100%
        ),
        linear-gradient(
            0deg,
            rgba(4, 5, 6, 0.95) 0%,
            transparent 40%
        );
}

.hero-container {
    position: relative;
    z-index: 2;

    max-width: 1400px;
    min-height: 365px;

    margin: auto;
    padding: 35px 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    margin-bottom: 15px;

    font-size: clamp(48px, 5vw, 70px);
    line-height: 0.93;
    letter-spacing: -2px;
}

.hero h1 span {
    color: #ff681d;
}

.hero-description {
    max-width: 470px;

    margin-bottom: 12px;

    color: #e1e1e1;

    font-size: 17px;
}

.human {
    margin-bottom: 20px;

    font-size: 14px;
    font-weight: bold;
}

.hero-buttons {
    display: flex;

    gap: 13px;
}


/* ------------------------------
   BUTTONS
------------------------------ */

.button {
    min-width: 160px;

    padding: 13px 22px;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    border-radius: 5px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;

    text-transform: uppercase;

    transition: 0.2s;
}

.button-primary {
    background: #ff681d;
    color: #080a0c;

    border: 1px solid #ff681d;
}

.button-primary:hover {
    background: #ff874a;
    border-color: #ff874a;

    transform: translateY(-2px);
}

.button-outline {
    background: rgba(0, 0, 0, 0.3);
    color: #ff681d;

    border: 1px solid #ff681d;
}

.button-outline:hover {
    background: #ff681d;
    color: #080a0c;
}


/* ------------------------------
   SERVICE AREA / PHONE
------------------------------ */

.service-area {
    align-self: flex-end;

    margin-bottom: 25px;

    display: flex;
    align-items: center;

    gap: 15px;
}

.location-icon {
    color: #ff681d;

    font-size: 30px;
}

.service-area strong {
    display: block;

    margin-bottom: 4px;

    font-size: 13px;
    letter-spacing: 1px;

    text-transform: uppercase;
}

.service-area p {
    color: #c2c2c2;

    font-size: 12px;
}

.service-phone {
    margin-top: 6px;
}

.service-phone a {
    color: #ff681d;

    font-weight: 700;

    transition: color 0.2s;
}

.service-phone a:hover {
    color: #ff9a66;
}


/* ------------------------------
   SERVICES
------------------------------ */

.services {
    background: #090b0d;
}

.services-container {
    max-width: 1400px;

    margin: auto;
    padding: 0 40px 18px;

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

    gap: 20px;
}

.service-card {
    min-height: 245px;

    margin-top: -1px;
    padding: 25px;

    display: flex;

    gap: 22px;

    background:
        linear-gradient(
            145deg,
            #16191b,
            #0e1012
        );

    border: 1px solid #282b2e;
    border-top: 2px solid #ff681d;
    border-radius: 7px;

    transition: 0.25s;
}

.service-card:hover {
    transform: translateY(-4px);

    border-color: #ff681d;
}

.service-icon {
    width: 30px;
    height: 30px;

    flex-shrink: 0;

    fill: none;
    stroke: #ff681d;

    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-content h2 {
    margin-bottom: 2px;

    font-size: 17px;

    text-transform: uppercase;
}

.service-description {
    max-width: 270px;

    margin-bottom: 10px;

    color: #c8c8c8;

    font-size: 13px;
}

.service-card ul {
    margin-bottom: 11px;

    list-style: none;
}

.service-card li {
    position: relative;

    margin-bottom: 3px;
    padding-left: 19px;

    color: #dedede;

    font-size: 12px;
}

.service-card li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: #ff681d;

    font-weight: bold;
}

.learn-more {
    color: #ff681d;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;

    text-transform: uppercase;
}

.learn-more:hover {
    color: #ff9a66;
}


/* ------------------------------
   ABOUT / STATS
------------------------------ */

.about {
    background: #0a0c0e;

    border-top: 1px solid #202326;
    border-bottom: 1px solid #202326;
}

.about-container {
    max-width: 1400px;
    min-height: 120px;

    margin: auto;
    padding: 25px 40px;

    display: grid;
    grid-template-columns: 1.2fr 1.5fr 0.6fr 0.6fr 0.8fr;

    align-items: center;

    gap: 30px;
}

.about-heading h2 {
    font-size: 23px;
    line-height: 1.15;
}

.about-heading span {
    color: #ff681d;
}

.about-copy {
    padding-right: 20px;

    color: #b8b8b8;

    font-size: 12px;
}

.stat {
    min-height: 75px;

    padding-left: 25px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-left: 1px solid #292c2f;

    text-align: center;
}

.stat strong {
    color: #f5f5f5;

    font-size: 19px;
}

.stat span {
    margin-top: 5px;

    color: #9d9d9d;

    font-size: 9px;
    letter-spacing: 0.7px;

    text-transform: uppercase;
}


/* ------------------------------
   CONTACT MODAL
------------------------------ */

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 25px;
}

.contact-modal.active {
    display: flex;
}

.contact-modal-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.82);

    backdrop-filter: blur(4px);
}

.contact-modal-content {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 650px;

    padding: 35px;

    background: #111416;

    border: 1px solid #303336;
    border-top: 2px solid #ff681d;
    border-radius: 6px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.contact-modal-header {
    margin-bottom: 25px;
}

.section-label {
    color: #ff681d;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;

    text-transform: uppercase;
}

.contact-modal-header h2 {
    margin: 8px 0 10px;

    color: #f4f4f4;

    font-size: 30px;
    line-height: 1.1;

    text-transform: uppercase;
}

.contact-modal-header h2 span {
    color: #ff681d;
}

.contact-modal-header p {
    margin: 0;

    color: #aaa;

    font-size: 14px;
    line-height: 1.6;
}


/* ------------------------------
   CONTACT MODAL CLOSE
------------------------------ */

.contact-close {
    position: absolute;
    top: 14px;
    right: 18px;

    padding: 0;

    background: transparent;
    border: none;

    color: #888;

    font-size: 28px;
    line-height: 1;

    cursor: pointer;

    transition: color 0.2s;
}

.contact-close:hover {
    color: #ff681d;
}


/* ------------------------------
   CONTACT FORM
------------------------------ */

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;

    gap: 7px;

    margin-bottom: 18px;
}

.form-group label {
    color: #f4f4f4;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;

    text-transform: uppercase;
}

.form-group label span {
    color: #777;

    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 12px 13px;

    background: #080a0b;
    color: #f4f4f4;

    border: 1px solid #34383b;
    border-radius: 4px;

    font-family: inherit;
    font-size: 14px;

    outline: none;

    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ff681d;
}

.form-group textarea {
    min-height: 120px;

    resize: vertical;
}

.contact-submit {
    min-width: 190px;

    border: none;

    cursor: pointer;
}

.form-status {
    min-height: 18px;

    margin-top: 12px;

    color: #aaa;

    font-size: 12px;
}


/* ------------------------------
   FOOTER
------------------------------ */

footer {
    background: #080a0c;
}

.footer-container {
    max-width: 1000px;

    margin: auto;
    padding: 30px 40px;

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

    gap: 80px;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.footer-column h3 {
    margin-bottom: 5px;

    color: #ff681d;

    font-size: 10px;
    letter-spacing: 1.3px;

    text-transform: uppercase;
}

.footer-column a,
.footer-column p {
    color: #9e9e9e;

    font-size: 10px;
}

.footer-column a:hover {
    color: #ff681d;
}

.copyright {
    max-width: 1400px;

    margin: auto;
    padding: 10px 40px 15px;

    border-top: 1px solid #202326;

    color: #707070;

    font-size: 9px;
}


/* ------------------------------
   RESPONSIVE - TABLET
------------------------------ */

@media (max-width: 1000px) {

    .nav-links {
        gap: 20px;
    }

    .services-container {
        grid-template-columns: 1fr;
    }

    .about-container {
        grid-template-columns: 1fr 1fr;
    }

    .stat {
        padding: 20px;

        border-left: 0;
        border-top: 1px solid #292c2f;
    }

}


/* ------------------------------
   RESPONSIVE - MOBILE
------------------------------ */

@media (max-width: 760px) {

    /* NAVIGATION */

    .navbar {
        position: fixed;
    }

    .nav-container {
        padding: 0 20px;
    }

    .brand img {
        width: 250px;
        height: 65px;

        object-fit: contain;
        object-position: left center;
    }

    .nav-links {
        position: absolute;
        top: 74px;
        left: 0;

        width: 100%;
        height: auto;

        padding: 20px;

        display: none;
        flex-direction: column;
        align-items: flex-start;

        gap: 0;

        background: #080a0c;

        border-bottom: 1px solid #292c2f;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        height: auto;

        padding: 15px 0;
    }

    .nav-links a.active::after {
        display: none;
    }

    .nav-button {
        display: none;
    }

    .menu-button {
        display: block;
    }


    /* HERO */

    .hero {
        min-height: 620px;

        background-position: 65% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(4, 5, 6, 0.95),
                rgba(4, 5, 6, 0.6)
            ),
            linear-gradient(
                0deg,
                #080a0c 0%,
                transparent 50%
            );
    }

    .hero-container {
        min-height: 545px;

        padding: 60px 20px 30px;

        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .hero h1 {
        font-size: 50px;
    }

    .hero-buttons {
        width: 100%;

        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .service-area {
        align-self: flex-start;

        margin-top: 40px;
        margin-bottom: 0;
    }


    /* SERVICES */

    .services-container {
        padding: 20px;
    }

    .service-card {
        padding: 25px 20px;
    }


    /* ABOUT */

    .about-container {
        padding: 35px 20px;

        grid-template-columns: 1fr;
    }

    .about-copy {
        padding-right: 0;
    }


    /* CONTACT MODAL */

    .contact-modal {
        padding: 15px;
    }

    .contact-modal-content {
        max-height: 90vh;

        padding: 25px 20px;

        overflow-y: auto;
    }

    .contact-modal-header h2 {
        font-size: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    /* FOOTER */

    .footer-container {
        padding: 35px 20px;

        grid-template-columns: 1fr 1fr;

        gap: 35px;
    }

    .copyright {
        padding: 15px 20px;
    }

}


/* ------------------------------
   RESPONSIVE - SMALL MOBILE
------------------------------ */

@media (max-width: 480px) {

    .hero h1 {
        font-size: 42px;
    }

    .service-card {
        flex-direction: column;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

}

/* ==================================================
   SERVICE PAGES
================================================== */


/* ------------------------------
   SERVICE PAGE HERO
------------------------------ */

.service-page-hero {
    position: relative;

    padding-top: 74px;

    background:
        linear-gradient(
            110deg,
            #080a0c 0%,
            #101315 60%,
            #16191b 100%
        );

    border-bottom: 1px solid #26292c;
}

.service-page-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(255, 104, 29, 0.08),
            transparent 35%
        );
}

.service-page-hero-container {
    position: relative;
    z-index: 2;

    max-width: 1400px;

    margin: auto;
    padding: 75px 40px 65px;
}

.service-page-heading {
    max-width: 760px;
}

.service-page-heading h1 {
    margin: 12px 0 18px;

    font-size: clamp(46px, 5vw, 68px);
    line-height: 0.95;
    letter-spacing: -2px;

    text-transform: uppercase;
}

.service-page-heading h1 span {
    color: #ff681d;
}

.service-page-heading > p {
    max-width: 600px;

    color: #c8c8c8;

    font-size: 17px;
    line-height: 1.6;
}

.service-page-actions {
    margin-top: 28px;

    display: flex;
    align-items: center;

    gap: 25px;
}

.service-call {
    color: #f4f4f4;

    font-size: 14px;
    font-weight: bold;

    transition: color 0.2s;
}

.service-call:hover {
    color: #ff681d;
}


/* ------------------------------
   SERVICE DETAILS
------------------------------ */

.service-details {
    background: #090b0d;
}

.service-details-container {
    max-width: 1200px;

    margin: auto;
    padding: 60px 40px;

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

    gap: 20px;
}

.service-detail-card {
    position: relative;

    min-height: 310px;

    padding: 30px;

    display: grid;
    grid-template-columns: 50px 1fr;

    gap: 20px;

    background:
        linear-gradient(
            145deg,
            #16191b,
            #0e1012
        );

    border: 1px solid #282b2e;
    border-top: 2px solid #ff681d;
    border-radius: 7px;

    transition: 0.25s;
}

.service-detail-card:hover {
    transform: translateY(-4px);

    border-color: #ff681d;
}

.service-detail-number {
    color: #ff681d;

    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
}

.service-detail-card h2 {
    margin-bottom: 10px;

    font-size: 20px;

    text-transform: uppercase;
}

.service-detail-card p {
    margin-bottom: 17px;

    color: #b8b8b8;

    font-size: 13px;
    line-height: 1.6;
}

.service-detail-card ul {
    list-style: none;
}

.service-detail-card li {
    position: relative;

    margin-bottom: 6px;
    padding-left: 20px;

    color: #dedede;

    font-size: 12px;
}

.service-detail-card li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: #ff681d;

    font-weight: bold;
}


/* ------------------------------
   SERVICE PAGE CTA
------------------------------ */

.service-page-cta {
    background: #0d1012;

    border-top: 1px solid #24272a;
    border-bottom: 1px solid #24272a;
}

.service-page-cta-container {
    max-width: 1000px;

    margin: auto;
    padding: 55px 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;
}

.service-page-cta h2 {
    margin: 7px 0 10px;

    font-size: 30px;
    line-height: 1.05;

    text-transform: uppercase;
}

.service-page-cta h2 span {
    color: #ff681d;
}

.service-page-cta p {
    max-width: 580px;

    color: #aaa;

    font-size: 13px;
    line-height: 1.6;
}


/* ------------------------------
   SERVICE PAGE - TABLET
------------------------------ */

@media (max-width: 900px) {

    .service-details-container {
        grid-template-columns: 1fr;
    }

    .service-page-cta-container {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* ------------------------------
   SERVICE PAGE - MOBILE
------------------------------ */

@media (max-width: 760px) {

    .service-page-hero-container {
        padding: 70px 20px 45px;
    }

    .service-page-heading h1 {
        font-size: 44px;
    }

    .service-page-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-details-container {
        padding: 35px 20px;
    }

    .service-detail-card {
        min-height: auto;

        padding: 25px 20px;

        grid-template-columns: 1fr;
        gap: 10px;
    }

    .service-page-cta-container {
        padding: 45px 20px;
    }

}

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


/* ------------------------------
   ABOUT HERO
------------------------------ */

.about-page-hero {
    position: relative;

    padding-top: 74px;

    background:
        linear-gradient(
            110deg,
            #080a0c 0%,
            #101315 60%,
            #16191b 100%
        );

    border-bottom: 1px solid #26292c;
}

.about-page-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(255, 104, 29, 0.08),
            transparent 35%
        );
}

.about-page-hero-container {
    position: relative;
    z-index: 2;

    max-width: 1400px;

    margin: auto;
    padding: 75px 40px 65px;
}

.about-page-heading {
    max-width: 760px;
}

.about-page-heading h1 {
    margin: 12px 0 18px;

    font-size: clamp(46px, 5vw, 68px);
    line-height: 0.95;
    letter-spacing: -2px;

    text-transform: uppercase;
}

.about-page-heading h1 span {
    color: #ff681d;
}

.about-page-heading p {
    max-width: 620px;

    color: #c8c8c8;

    font-size: 17px;
    line-height: 1.6;
}


/* ------------------------------
   ABOUT INTRO
------------------------------ */

.about-page-intro {
    background: #090b0d;

    border-bottom: 1px solid #24272a;
}

.about-page-intro-container {
    max-width: 1200px;

    margin: auto;
    padding: 65px 40px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 80px;
}

.about-page-intro-heading h2 {
    margin-top: 10px;

    font-size: 32px;
    line-height: 1.08;

    text-transform: uppercase;
}

.about-page-intro-heading h2 span {
    color: #ff681d;
}

.about-page-intro-copy p {
    margin-bottom: 18px;

    color: #b8b8b8;

    font-size: 14px;
    line-height: 1.7;
}


/* ------------------------------
   PRINCIPLES
------------------------------ */

.about-principles {
    background: #080a0c;
}

.about-principles-container {
    max-width: 1200px;

    margin: auto;
    padding: 55px 40px;

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

    gap: 20px;
}

.about-principle-card {
    min-height: 225px;

    padding: 28px;

    background:
        linear-gradient(
            145deg,
            #16191b,
            #0e1012
        );

    border: 1px solid #282b2e;
    border-top: 2px solid #ff681d;
    border-radius: 7px;

    transition: 0.25s;
}

.about-principle-card:hover {
    transform: translateY(-4px);

    border-color: #ff681d;
}

.about-principle-number {
    margin-bottom: 20px;

    color: #ff681d;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.about-principle-card h2 {
    margin-bottom: 12px;

    font-size: 19px;

    text-transform: uppercase;
}

.about-principle-card p {
    color: #aaa;

    font-size: 13px;
    line-height: 1.7;
}


/* ------------------------------
   ABOUT SERVICES
------------------------------ */

.about-services {
    background: #0d1012;

    border-top: 1px solid #24272a;
    border-bottom: 1px solid #24272a;
}

.about-services-container {
    max-width: 1100px;

    margin: auto;
    padding: 60px 40px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;
}

.about-services h2 {
    margin: 8px 0 12px;

    font-size: 30px;
    line-height: 1.08;

    text-transform: uppercase;
}

.about-services h2 span {
    color: #ff681d;
}

.about-services p {
    max-width: 500px;

    color: #aaa;

    font-size: 13px;
    line-height: 1.7;
}

.about-service-links {
    display: flex;
    flex-direction: column;
}

.about-service-links a {
    padding: 18px 5px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid #303336;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;

    text-transform: uppercase;

    transition: 0.2s;
}

.about-service-links a:first-child {
    border-top: 1px solid #303336;
}

.about-service-links a strong {
    color: #ff681d;

    font-size: 18px;
}

.about-service-links a:hover {
    padding-left: 12px;

    color: #ff681d;
}


/* ------------------------------
   ABOUT PAGE - TABLET
------------------------------ */

@media (max-width: 900px) {

    .about-page-intro-container {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .about-principles-container {
        grid-template-columns: 1fr;
    }

    .about-services-container {
        grid-template-columns: 1fr;

        gap: 40px;
    }

}


/* ------------------------------
   ABOUT PAGE - MOBILE
------------------------------ */

@media (max-width: 760px) {

    .about-page-hero-container {
        padding: 70px 20px 45px;
    }

    .about-page-heading h1 {
        font-size: 44px;
    }

    .about-page-intro-container {
        padding: 45px 20px;
    }

    .about-principles-container {
        padding: 35px 20px;
    }

    .about-services-container {
        padding: 45px 20px;
    }

}

/* ==================================================
   NETWORK TOOLS
================================================== */


/* ------------------------------
   TOOLS HERO
------------------------------ */

.tools-hero {
    position: relative;
    padding-top: 74px;

    background:
        linear-gradient(
            110deg,
            #080a0c 0%,
            #101315 60%,
            #16191b 100%
        );

    border-bottom: 1px solid #26292c;
}

.tools-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(255, 104, 29, 0.08),
            transparent 35%
        );
}

.tools-hero-container {
    position: relative;
    z-index: 2;

    max-width: 1200px;
    margin: auto;
    padding: 45px 40px 35px;
}

.tools-hero h1 {
    margin: 8px 0 10px;

    font-size: clamp(36px, 4vw, 52px);
    line-height: 0.95;
    letter-spacing: -2px;

    text-transform: uppercase;
}

.tools-hero h1 span {
    color: #ff681d;
}

.tools-hero p {
    max-width: 600px;

    color: #c8c8c8;

    font-size: 17px;
    line-height: 1.6;
}


/* ------------------------------
   TOOL GRID
------------------------------ */

.network-tools {
    background: #090b0d;
}

.network-tools-container {
    max-width: 1050px;

    margin: auto;
    padding: 45px 40px;

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

    gap: 16px;
}


/* ------------------------------
   TOOL CARDS
------------------------------ */

.network-tool-card {
    padding: 30px;

    background:
        linear-gradient(
            145deg,
            #16191b,
            #0e1012
        );

    border: 1px solid #282b2e;
    border-top: 2px solid #ff681d;
    border-radius: 7px;
}

.tool-heading {
    display: flex;

    gap: 18px;

    margin-bottom: 25px;
}

.tool-number {
    color: #ff681d;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.tool-heading h2 {
    margin-bottom: 7px;

    font-size: 20px;

    text-transform: uppercase;
}

.tool-heading p {
    color: #aaa;

    font-size: 13px;
    line-height: 1.6;
}


/* ------------------------------
   TOOL FORMS
------------------------------ */

.tool-form {
    display: grid;
    grid-template-columns: 1fr 90px auto;

    align-items: end;

    gap: 12px;
}

.tool-input-group {
    display: flex;
    flex-direction: column;

    gap: 7px;
}

.tool-input-group label {
    color: #888;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.tool-input-group input {
    width: 100%;

    padding: 12px 13px;

    color: #f4f4f4;
    background: #090b0d;

    border: 1px solid #34383b;
    border-radius: 4px;

    font-family: inherit;
    font-size: 13px;

    outline: none;

    transition: 0.2s;
}

.tool-input-group input:focus {
    border-color: #ff681d;
}

.tool-button {
    height: 42px;

    border: none;
    cursor: pointer;
}


/* ------------------------------
   SUBNET RESULTS
------------------------------ */

.tool-results {
    margin-top: 25px;

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

    border-top: 1px solid #303336;
}

.tool-results > div {
    padding: 14px 5px;

    display: flex;
    flex-direction: column;

    gap: 4px;

    border-bottom: 1px solid #25282b;
}

.tool-results > div:nth-child(odd) {
    margin-right: 15px;
}

.tool-results span {
    color: #777;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.8px;

    text-transform: uppercase;
}

.tool-results strong {
    color: #f4f4f4;

    font-family: monospace;
    font-size: 14px;
}

.tool-error {
    min-height: 18px;

    margin-top: 12px;

    color: #ff681d;

    font-size: 12px;
}


/* ------------------------------
   PORT LOOKUP
------------------------------ */

.port-results {
    margin-top: 20px;

    max-height: 300px;

    overflow-y: auto;

    border-top: 1px solid #303336;
}

.port-result {
    padding: 12px 5px;

    display: grid;
    grid-template-columns: 65px 70px 1fr;

    align-items: center;

    gap: 10px;

    border-bottom: 1px solid #25282b;
}

.port-result strong {
    color: #ff681d;

    font-family: monospace;
    font-size: 14px;
}

.port-protocol {
    color: #777;

    font-size: 10px;
    font-weight: 800;
}

.port-service {
    color: #ddd;

    font-size: 12px;
}

/* ------------------------------
   DNS LOOKUP
------------------------------ */

.dns-form {
    display: grid;
    grid-template-columns: 1fr 100px auto;

    align-items: end;
    gap: 12px;
}

.tool-input-group select {
    width: 100%;

    padding: 12px 13px;

    color: #f4f4f4;
    background: #090b0d;

    border: 1px solid #34383b;
    border-radius: 4px;

    font-family: inherit;
    font-size: 13px;

    outline: none;
}

.tool-input-group select:focus {
    border-color: #ff681d;
}

.dns-results {
    margin-top: 15px;

    max-height: 250px;
    overflow-y: auto;

    border-top: 1px solid #303336;
}

.dns-result {
    padding: 12px 5px;

    display: grid;
    grid-template-columns: 50px 1fr 80px;

    align-items: center;
    gap: 10px;

    border-bottom: 1px solid #25282b;
}

.dns-record-type {
    color: #ff681d;

    font-size: 11px;
    font-weight: 800;
}

.dns-record-value {
    overflow-wrap: anywhere;

    color: #ddd;

    font-family: monospace;
    font-size: 12px;
}

.dns-record-ttl {
    color: #777;

    font-size: 10px;
    text-align: right;
}

.dns-empty {
    padding: 15px 5px;

    color: #777;

    font-size: 12px;
}

/* ------------------------------
   COMING SOON
------------------------------ */

.tool-coming-soon {
    min-height: 180px;

    opacity: 0.65;
}

.coming-soon-label {
    display: inline-block;

    padding: 6px 9px;

    color: #ff681d;
    background: rgba(255, 104, 29, 0.08);

    border: 1px solid rgba(255, 104, 29, 0.3);
    border-radius: 3px;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}


/* ------------------------------
   TOOLS - TABLET
------------------------------ */

@media (max-width: 900px) {

    .network-tools-container {
        grid-template-columns: 1fr;
    }

}


/* ------------------------------
   TOOLS - MOBILE
------------------------------ */

@media (max-width: 760px) {

    .tools-hero-container {
        padding: 70px 20px 45px;
    }

    .tools-hero h1 {
        font-size: 44px;
    }

    .network-tools-container {
        padding: 35px 20px;
    }

    .network-tool-card {
        padding: 25px 20px;
    }

    .tool-form {
        grid-template-columns: 1fr;
    }

    .cidr-input {
        max-width: 100px;
    }

    .tool-button {
        width: 100%;
    }

    .tool-results {
        grid-template-columns: 1fr;
    }

    .tool-results > div:nth-child(odd) {
        margin-right: 0;
    }

}

/* ==================================================
   REMOTE SUPPORT
================================================== */


/* ------------------------------
   REMOTE SUPPORT HERO
------------------------------ */

.remote-hero {
    position: relative;
    padding-top: 74px;

    background:
        linear-gradient(
            110deg,
            #080a0c 0%,
            #101315 60%,
            #16191b 100%
        );

    border-bottom: 1px solid #26292c;
}

.remote-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(255, 104, 29, 0.08),
            transparent 35%
        );
}

.remote-hero-container {
    position: relative;
    z-index: 2;

    max-width: 1200px;
    margin: auto;
    padding: 45px 40px 40px;
}

.remote-hero h1 {
    margin: 8px 0 12px;

    font-size: clamp(36px, 4vw, 52px);
    line-height: 0.95;
    letter-spacing: -2px;

    text-transform: uppercase;
}

.remote-hero h1 span {
    color: #ff681d;
}

.remote-hero p {
    max-width: 600px;

    color: #c8c8c8;

    font-size: 14px;
    line-height: 1.6;
}

.remote-download {
    margin-top: 22px;
}

.remote-platform {
    margin-top: 9px;

    color: #777 !important;

    font-size: 10px !important;
    font-weight: 700;
    letter-spacing: 0.8px;

    text-transform: uppercase;
}


/* ------------------------------
   INSTRUCTIONS
------------------------------ */

.remote-instructions {
    background: #090b0d;
}

.remote-instructions-container {
    max-width: 1050px;

    margin: auto;
    padding: 45px 40px;
}

.remote-heading {
    max-width: 650px;

    margin-bottom: 30px;
}

.remote-heading h2 {
    margin: 8px 0 10px;

    font-size: 30px;
    line-height: 1.05;

    text-transform: uppercase;
}

.remote-heading h2 span {
    color: #ff681d;
}

.remote-heading p {
    color: #aaa;

    font-size: 13px;
    line-height: 1.6;
}


/* ------------------------------
   STEPS
------------------------------ */

.remote-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 16px;
}

.remote-step {
    padding: 22px;

    display: grid;
    grid-template-columns: 40px 1fr;

    gap: 14px;

    background:
        linear-gradient(
            145deg,
            #16191b,
            #0e1012
        );

    border: 1px solid #282b2e;
    border-top: 2px solid #ff681d;
    border-radius: 7px;
}

.remote-step-number {
    color: #ff681d;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.remote-step h3 {
    margin-bottom: 7px;

    font-size: 15px;

    text-transform: uppercase;
}

.remote-step p {
    color: #aaa;

    font-size: 12px;
    line-height: 1.6;
}


/* ------------------------------
   SECURITY NOTICE
------------------------------ */

.remote-security {
    background: #0d1012;

    border-top: 1px solid #24272a;
    border-bottom: 1px solid #24272a;
}

.remote-security-container {
    max-width: 1050px;

    margin: auto;
    padding: 38px 40px;

    display: grid;
    grid-template-columns: 45px 1fr;

    gap: 22px;
    align-items: start;
}

.remote-security-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ff681d;

    border: 1px solid #ff681d;
    border-radius: 50%;

    font-size: 18px;
    font-weight: 800;
}

.remote-security h2 {
    margin: 7px 0 9px;

    font-size: 23px;

    text-transform: uppercase;
}

.remote-security h2 span {
    color: #ff681d;
}

.remote-security p {
    max-width: 750px;

    color: #aaa;

    font-size: 12px;
    line-height: 1.7;
}


/* ------------------------------
   RUSTDESK INFO
------------------------------ */

.remote-software {
    background: #090b0d;
}

.remote-software-container {
    max-width: 1050px;

    margin: auto;
    padding: 38px 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.remote-software h2 {
    margin: 7px 0 8px;

    font-size: 23px;

    text-transform: uppercase;
}

.remote-software h2 span {
    color: #ff681d;
}

.remote-software p {
    max-width: 600px;

    color: #aaa;

    font-size: 12px;
    line-height: 1.6;
}

.remote-rustdesk-link {
    flex-shrink: 0;

    color: #ff681d;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;

    text-transform: uppercase;

    transition: 0.2s;
}

.remote-rustdesk-link:hover {
    color: #ffffff;
}


/* ------------------------------
   REMOTE SUPPORT - MOBILE
------------------------------ */

@media (max-width: 760px) {

    .remote-hero-container {
        padding: 40px 20px 35px;
    }

    .remote-hero h1 {
        font-size: 38px;
    }

    .remote-instructions-container {
        padding: 35px 20px;
    }

    .remote-steps {
        grid-template-columns: 1fr;
    }

    .remote-security-container {
        padding: 35px 20px;

        grid-template-columns: 1fr;
    }

    .remote-software-container {
        padding: 35px 20px;

        flex-direction: column;
        align-items: flex-start;
    }

}/* ------------------------------
   WHOIS / RDAP
------------------------------ */

.rdap-form {
    display: grid;
    grid-template-columns: 1fr 160px;
    gap: 12px;
    align-items: end;
}

.rdap-form .tool-button {
    width: 100%;
    height: 42px;
}

.rdap-results {
    margin-top: 16px;
    padding-top: 16px;

    border-top: 1px solid #303336;
}

.rdap-empty {
      color: #707070;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
}

.rdap-result {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 12px;

    padding: 10px 4px;

    border-bottom: 1px solid #25282b;
}

.rdap-result span {
    color: #777;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.rdap-result strong {
    color: #ddd;
    font-family: monospace;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.5;
    overflow-wrap: anywhere;
}