/* =========================================================
   AUTOMATIK LLP
   Main Website Styles
   ========================================================= */


/* ---------- Basic Reset ---------- */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #0b0b0b;
    color: #f4f4f4;
    line-height: 1.6;
}


/* ---------- Variables ---------- */

:root {
    --black: #0b0b0b;
    --dark: #111111;
    --dark-grey: #181818;
    --grey: #a0a0a0;
    --white: #f4f4f4;
    --orange: #ff5a1f;
}


/* ---------- Navigation ---------- */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    height: 80px;

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

    padding: 0 7%;

    background: rgba(11, 11, 11, 0.92);

    backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    z-index: 1000;
}


.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 4px;
}


nav {
    display: flex;
    gap: 32px;
}


nav a {
    color: var(--white);

    text-decoration: none;

    font-size: 14px;

    letter-spacing: 1px;

    transition: 0.3s;
}


nav a:hover {
    color: var(--orange);
}


/* ---------- Hero ---------- */

.hero {

    min-height: 100vh;

    display: flex;

    align-items: center;

    padding: 120px 7% 80px;

    position: relative;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 80% 40%,
            rgba(255, 90, 31, 0.15),
            transparent 35%
        ),

        linear-gradient(
            135deg,
            #0b0b0b,
            #141414
        );
}


.hero::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(255, 90, 31, 0.25);

    transform: rotate(45deg);

    right: -200px;

    top: 25%;
}


.hero-content {

    max-width: 850px;

    position: relative;

    z-index: 2;
}


.eyebrow {

    color: var(--orange);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 20px;
}


.hero h1 {

    font-size: clamp(48px, 7vw, 92px);

    line-height: 1.02;

    letter-spacing: -3px;

    margin-bottom: 30px;
}


.hero h1 span {

    display: block;

    color: var(--orange);
}


.hero-text {

    max-width: 650px;

    color: var(--grey);

    font-size: 18px;

    margin-bottom: 40px;
}


/* ---------- Buttons ---------- */

.button {

    display: inline-block;

    padding: 15px 30px;

    background: var(--orange);

    color: white;

    text-decoration: none;

    font-weight: 700;

    font-size: 13px;

    letter-spacing: 1px;

    transition: 0.3s;
}


.button:hover {

    background: white;

    color: black;

    transform: translateY(-2px);
}


/* ---------- General Sections ---------- */

.section {

    padding: 120px 7%;

    background: var(--black);
}


.dark-section {

    background: var(--dark);
}


.section-heading {

    max-width: 750px;

    margin-bottom: 70px;
}


.section-heading h2 {

    font-size: clamp(38px, 5vw, 64px);

    line-height: 1.05;

    letter-spacing: -2px;
}


/* ---------- About ---------- */

.about-text {

    max-width: 800px;

    margin-left: auto;
}


.about-text p {

    color: var(--grey);

    font-size: 19px;

    margin-bottom: 25px;
}


/* ---------- Capability Cards ---------- */

.cards {

    display: grid;

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

    gap: 20px;
}


.card {

    padding: 35px;

    min-height: 330px;

    background: var(--dark-grey);

    border: 1px solid rgba(255,255,255,0.08);

    transition: 0.35s;
}


.card:hover {

    transform: translateY(-8px);

    border-color: var(--orange);
}


.card-number {

    color: var(--orange);

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 60px;
}


.card h3 {

    font-size: 24px;

    margin-bottom: 20px;
}


.card p {

    color: var(--grey);

    font-size: 15px;
}


/* ---------- Industries ---------- */

.industries {

    display: grid;

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

    border-top: 1px solid
        rgba(255,255,255,0.1);

    border-left: 1px solid
        rgba(255,255,255,0.1);
}


.industries div {

    padding: 35px 20px;

    border-right: 1px solid
        rgba(255,255,255,0.1);

    border-bottom: 1px solid
        rgba(255,255,255,0.1);

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 1px;

    transition: 0.3s;
}


.industries div:hover {

    background: var(--orange);

    color: white;
}


/* ---------- Contact ---------- */

.contact-section {

    padding: 120px 7%;

    display: grid;

    grid-template-columns:
        1.5fr 1fr;

    gap: 80px;

    background: var(--orange);
}


.contact-section .eyebrow {

    color: black;
}


.contact-section h2 {

    font-size: clamp(42px, 6vw, 75px);

    line-height: 1;

    letter-spacing: -3px;

    margin-bottom: 30px;
}


.contact-section > div:first-child p:last-child {

    max-width: 500px;

    color: rgba(0,0,0,0.7);

    font-size: 18px;
}


.contact-details {

    padding: 40px;

    background: rgba(0,0,0,0.12);
}


.contact-details h3 {

    font-size: 25px;

    margin-bottom: 20px;
}


.contact-details p {

    color: rgba(0,0,0,0.75);
}


/* ---------- Footer ---------- */

footer {

    padding: 50px 7%;

    background: #050505;

    border-top: 1px solid
        rgba(255,255,255,0.08);
}


.footer-logo {

    font-size: 22px;

    font-weight: 800;

    letter-spacing: 4px;

    margin-bottom: 10px;
}


footer p {

    color: var(--grey);

    font-size: 14px;
}


footer .copyright {

    margin-top: 30px;

    font-size: 12px;
}


/* ---------- Mobile ---------- */

@media (max-width: 900px) {

    .navbar {

        padding: 0 5%;
    }


    nav {

        gap: 15px;
    }


    nav a {

        font-size: 11px;
    }


    .cards {

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


    .industries {

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


    .contact-section {

        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .navbar {

        height: 70px;
    }


    nav {

        display: none;
    }


    .hero {

        padding: 110px 6% 70px;
    }


    .hero h1 {

        font-size: 48px;

        letter-spacing: -2px;
    }


    .hero-text {

        font-size: 16px;
    }


    .section {

        padding: 80px 6%;
    }


    .cards {

        grid-template-columns: 1fr;
    }


    .industries {

        grid-template-columns: 1fr;
    }


    .contact-section {

        padding: 80px 6%;
    }

}
