/* =========================================================
   SILENT KILLER — ACCOUNT PAGE
   PREMIUM WHITE / GREEN / BLACK
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f8f6;
    color: #111;
    overflow-x: hidden;
}

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


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

.site-header {
    height: 76px;

    background: rgba(255, 255, 255, 0.96);

    border-bottom: 1px solid #e2e6e2;

    position: sticky;
    top: 0;

    z-index: 1000;

    backdrop-filter: blur(14px);
}

.nav-wrap {
    width: min(1180px, 92%);
    height: 100%;
    margin: auto;

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

    gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: inline-flex;
    align-items: center;

    font-size: 21px;

    font-weight: 800;

    letter-spacing: 1.5px;

    white-space: nowrap;

    flex-shrink: 0;
}

.logo span {
    font-weight: 400;
}


/* =========================================================
   NAVIGATION
========================================================= */

.site-header nav {
    display: flex;

    align-items: center;

    gap: 25px;
}

.site-header nav a {
    position: relative;

    color: #666;

    font-size: 12px;

    font-weight: 600;

    transition: 0.3s ease;
}

.site-header nav a:hover {
    color: #15964f;
}

.site-header nav a.active {
    color: #15964f;
}

.site-header nav a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -10px;

    height: 2px;

    background: #20a85c;
}


/* =========================================================
   GET QUOTE BUTTON
========================================================= */

.site-header nav a[href="quotation.html"] {
    display: inline-flex;

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

    padding: 11px 16px;

    background: #111;

    color: #fff;

    border: 1px solid #111;

    border-radius: 4px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    transition: 0.35s ease;
}

.site-header nav a[href="quotation.html"]:hover {
    background: #20a85c;

    border-color: #20a85c;

    color: #fff;

    transform: translateY(-2px);
}


/* =========================================================
   ACCOUNT PAGE
========================================================= */

.account-page {
    min-height: calc(100vh - 76px);

    padding-bottom: 100px;
}


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

.account-hero {
    position: relative;

    padding:
        95px max(
            4%,
            calc((100% - 1180px) / 2)
        )
        70px;

    background:
        radial-gradient(
            circle at 85% 35%,
            rgba(25, 166, 87, 0.10),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #0d110f,
            #171b18
        );

    color: #fff;

    overflow: hidden;
}

.account-hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -180px;
    top: -260px;

    border: 1px solid rgba(32, 168, 92, 0.18);

    border-radius: 50%;
}

.account-hero::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -90px;
    top: -170px;

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

    border-radius: 50%;
}

.eyebrow {
    position: relative;

    z-index: 2;

    color: #20a85c;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2.5px;

    margin-bottom: 18px;
}

.account-hero h1 {
    position: relative;

    z-index: 2;

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

    line-height: 0.95;

    letter-spacing: -3px;
}

.account-hero h1 span {
    color: #20a85c;
}

.account-hero > p:last-child {
    position: relative;

    z-index: 2;

    max-width: 570px;

    margin-top: 24px;

    color: #bfc5c1;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   ACCOUNT GRID
========================================================= */

.account-grid {
    width: min(1180px, 92%);

    margin: -35px auto 0;

    position: relative;

    z-index: 5;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 22px;
}


/* =========================================================
   ACCOUNT CARD
========================================================= */

.account-card {
    background: #fff;

    border: 1px solid #e0e4e0;

    border-radius: 12px;

    padding: 38px;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.07);

    position: relative;

    overflow: hidden;
}

.account-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            #111,
            #20a85c,
            #111
        );
}


/* =========================================================
   CARD HEADING
========================================================= */

.section-label {
    color: #15964f;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;

    margin-bottom: 12px;
}

.account-card h2 {
    font-size: 30px;

    letter-spacing: -1px;

    line-height: 1;

    margin-bottom: 30px;
}

.account-card h2 span {
    color: #20a85c;
}


/* =========================================================
   FORM
========================================================= */

#accountForm {
    display: flex;

    flex-direction: column;

    gap: 17px;
}

#accountForm label {
    display: flex;

    flex-direction: column;

    gap: 7px;

    color: #555;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}

#accountForm input {
    width: 100%;

    height: 48px;

    padding: 0 15px;

    border: 1px solid #dfe4df;

    border-radius: 5px;

    background: #fafbfa;

    color: #111;

    font-size: 13px;

    outline: none;

    transition: 0.3s ease;
}

#accountForm input::placeholder {
    color: #a3a7a4;

    font-size: 12px;

    text-transform: none;
}

#accountForm input:focus {
    background: #fff;

    border-color: #20a85c;

    box-shadow:
        0 0 0 3px rgba(32, 168, 92, 0.09);
}


/* =========================================================
   PREMIUM BUTTON
========================================================= */

.premium-btn {
    min-height: 48px;

    border: 0;

    border-radius: 5px;

    cursor: pointer;

    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 0 17px;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1px;

    transition: 0.35s ease;
}

.premium-btn.primary {
    margin-top: 8px;

    background: #111;

    color: #fff;

    border: 1px solid #111;
}

.premium-btn.primary span {
    color: #20a85c;

    font-size: 16px;
}

.premium-btn.primary:hover {
    background: #20a85c;

    border-color: #20a85c;

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(32, 168, 92, 0.18);
}

.premium-btn.primary:hover span {
    color: #fff;
}


/* =========================================================
   ORDERS
========================================================= */

.orders {
    min-height: 190px;

    display: flex;

    flex-direction: column;

    gap: 12px;
}


/* =========================================================
   ORDER CARD
   JS CAN INJECT RECORDS INSIDE #orders
========================================================= */

.orders > div,
.orders > article,
.order {
    padding: 17px;

    border: 1px solid #e2e6e2;

    border-left: 3px solid #20a85c;

    border-radius: 6px;

    background: #f8faf8;

    transition: 0.3s ease;
}

.orders > div:hover,
.orders > article:hover,
.order:hover {
    background: #fff;

    transform: translateX(3px);

    border-color: #20a85c;
}


/* =========================================================
   MUTED TEXT
========================================================= */

.muted {
    margin-top: 25px;

    color: #8a8f8c;

    font-size: 11px;

    line-height: 1.7;

    border-top: 1px solid #e8ebe8;

    padding-top: 18px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .site-header {
        height: 70px;
    }

    .nav-wrap {
        width: 90%;
    }

    .site-header nav {
        gap: 15px;
    }

    .site-header nav a {
        font-size: 11px;
    }

    .account-hero {
        padding-top: 80px;
    }

    .account-grid {
        grid-template-columns: 1fr;

        margin-top: -25px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .site-header {
        height: 66px;
    }

    .nav-wrap {
        width: 90%;
    }

    .logo {
        font-size: 16px;

        letter-spacing: 1.1px;
    }

    /*
       Mobile navigation becomes a compact
       horizontal scroll instead of destroying layout.
    */

    .site-header nav {
        position: absolute;

        top: 66px;

        left: 0;

        width: 100%;

        padding: 12px 5%;

        background: rgba(255, 255, 255, 0.98);

        border-bottom: 1px solid #e1e5e1;

        display: flex;

        gap: 10px;

        overflow-x: auto;

        justify-content: flex-start;

        backdrop-filter: blur(12px);
    }

    .site-header nav a {
        flex-shrink: 0;

        padding: 9px 11px;

        border: 1px solid #e3e6e3;

        border-radius: 4px;

        background: #fff;

        font-size: 9px;

        text-transform: uppercase;

        letter-spacing: 0.7px;
    }

    .site-header nav a.active {
        background: #111;

        color: #fff;

        border-color: #111;
    }

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

    .site-header nav a[href="quotation.html"] {
        padding: 9px 12px;
    }


    /* HERO */

    .account-hero {
        padding:
            70px 7%
            65px;
    }

    .account-hero h1 {
        font-size: 47px;

        letter-spacing: -2px;
    }

    .account-hero > p:last-child {
        font-size: 13px;

        margin-top: 20px;
    }


    /* GRID */

    .account-grid {
        width: 90%;

        margin-top: -25px;

        gap: 18px;
    }


    /* CARDS */

    .account-card {
        padding: 27px 22px;

        border-radius: 10px;
    }

    .account-card h2 {
        font-size: 25px;

        margin-bottom: 25px;
    }


    /* INPUT */

    #accountForm input {
        height: 47px;
    }


    /* BUTTON */

    .premium-btn {
        width: 100%;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .logo {
        font-size: 14px;
    }

    .account-hero h1 {
        font-size: 41px;
    }

    .account-card {
        padding: 24px 18px;
    }

    .account-card h2 {
        font-size: 23px;
    }

    .site-header nav {
        gap: 7px;
    }

    .site-header nav a {
        font-size: 8px;

        padding: 8px 9px;
    }
}
/* =========================================================
   SILENT KILLER — ACCOUNT BACKEND UI
   GOOGLE LOGIN + CUSTOMER PROFILE
========================================================= */

/* ---------------------------------------------------------
   GOOGLE LOGIN BUTTON
--------------------------------------------------------- */

#accountForm > button:first-child {
    width: 100%;
    min-height: 48px;

    margin-top: 0;
    margin-bottom: 4px;

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

    padding: 0 17px;

    background: #111;
    color: #fff;

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

    cursor: pointer;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

#accountForm > button:first-child:hover {
    background: #20a85c;
    border-color: #20a85c;

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(32, 168, 92, 0.18);
}

#accountForm > button:first-child:disabled {
    opacity: 0.65;
    cursor: wait;
    transform: none;
}


/* ---------------------------------------------------------
   SAVE ACCOUNT BUTTON
--------------------------------------------------------- */

#accountForm button[type="submit"] {
    width: 100%;
}


/* ---------------------------------------------------------
   COMPANY / COLLEGE FIELD
--------------------------------------------------------- */

#organization {
    width: 100%;
}

#organization::placeholder {
    text-transform: none;
}


/* ---------------------------------------------------------
   GOOGLE EMAIL — USER CANNOT CHANGE IT
--------------------------------------------------------- */

#email[readonly] {
    background: #f1f3f1;
    color: #555;

    cursor: not-allowed;

    border-color: #d9ded9;
}

#email[readonly]:focus {
    background: #f1f3f1;

    border-color: #d9ded9;

    box-shadow: none;
}
#accountForm {
    gap: 16px;
}

#accountForm label {
    gap: 8px;
}


/* ---------------------------------------------------------
   INPUT HOVER
--------------------------------------------------------- */

#accountForm input:hover {
    border-color: #bfc8c1;
}


/* ---------------------------------------------------------
   PHONE INPUT
--------------------------------------------------------- */

#phone {
    letter-spacing: 0.3px;
}


/* ---------------------------------------------------------
   ORDERS / QUOTATIONS
--------------------------------------------------------- */

.orders {
    max-height: 420px;
    overflow-y: auto;

    padding-right: 3px;
}

.orders::-webkit-scrollbar {
    width: 5px;
}

.orders::-webkit-scrollbar-track {
    background: #f1f3f1;
}

.orders::-webkit-scrollbar-thumb {
    background: #20a85c;
    border-radius: 10px;
}


/* ---------------------------------------------------------
   ORDER HEADER
--------------------------------------------------------- */

.order-top {
    display: flex;

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

    gap: 15px;

    margin-bottom: 9px;
}

.order-top span:first-child {
    font-size: 11px;

    font-weight: 900;

    letter-spacing: 0.8px;

    color: #111;
}


/* ---------------------------------------------------------
   ORDER STATUS
--------------------------------------------------------- */

.order-top .status {
    display: inline-flex;

    align-items: center;

    padding: 5px 8px;

    border-radius: 20px;

    background: rgba(32, 168, 92, 0.10);

    color: #15964f;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* ---------------------------------------------------------
   ORDER DETAILS
--------------------------------------------------------- */

.order p {
    margin-bottom: 8px;

    color: #333;

    font-size: 12px;

    line-height: 1.5;
}

.order small {
    color: #8a8f8c;

    font-size: 9px;

    line-height: 1.5;
}


/* ---------------------------------------------------------
   MOBILE GOOGLE BUTTON
--------------------------------------------------------- */

@media (max-width: 600px) {

    #accountForm > button:first-child {
        min-height: 47px;

        font-size: 9px;

        padding: 0 14px;
    }

    #accountForm button[type="submit"] {
        min-height: 47px;
    }

    .orders {
        max-height: 360px;
    }

    .order-top {
        align-items: flex-start;
    }

}


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

@media (max-width: 400px) {

    #accountForm > button:first-child {
        font-size: 8px;

        letter-spacing: 0.8px;
    }

    .order {
        padding: 14px;
    }

    .order-top span:first-child {
        font-size: 9px;
    }

}