/* ============================================================
   ALL-IN-ONE BRANDING SHOP
   HOME PAGE
   home.css
   Standalone Home Page Styling
   Designed specifically for the current index.html

   Visual direction:
   - Black luxury background
   - Gold accents
   - Clean professional typography
   - Large editorial headings
   - Spacious sections
   - Professional cards
   - Responsive navigation
============================================================ */


/* ============================================================
   HOME PAGE VARIABLES
============================================================ */

:root {
    --home-black: #050505;
    --home-black-soft: #080808;
    --home-black-medium: #0d0d0d;
    --home-card: #111111;
    --home-card-light: #151515;
    --home-gold: #d4af37;
    --home-gold-light: #f0d878;
    --home-gold-dark: #9d7c18;
    --home-white: #ffffff;
    --home-text: #dddddd;
    --home-muted: #8d8d8d;
    --home-border: rgba(212, 175, 55, 0.28);
    --home-border-soft: rgba(255, 255, 255, 0.08);
    --home-shadow:
        0 20px 60px rgba(0, 0, 0, 0.55);
    --home-shadow-gold:
        0 15px 45px rgba(212, 175, 55, 0.10);
    --home-transition: 0.3s ease;
    --home-container: 1200px;
}


/* ============================================================
   HOME PAGE BASE
============================================================ */

body {
    background: var(--home-black);
    color: var(--home-white);
}

main {
    width: 100%;
    overflow: hidden;
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* ============================================================
   CONTAINER
============================================================ */

.top-bar > .container,
.nav-container,
.home-hero > .container,
.home-intro > .container,
.home-services > .container,
.home-industries > .container,
.home-packages > .container,
.home-process > .container,
.home-final-cta > .container,
.site-footer > .container {
    width: min(100% - 40px, var(--home-container));
    margin-left: auto;
    margin-right: auto;
}


/* ============================================================
   TOP BAR
============================================================ */

.top-bar {
    position: relative;
    z-index: 1100;
    width: 100%;
    min-height: 42px;
    display: flex;
    align-items: center;
    background: #030303;
    border-bottom:
        1px solid rgba(255, 255, 255, 0.06);
}

.top-bar-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-contact,
.top-social {
    display: flex;
    align-items: center;
}

.top-contact {
    gap: 22px;
}

.top-social {
    gap: 8px;
}


/* ============================================================
   TOP CONTACT LINKS
============================================================ */

.top-contact a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #969696;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-decoration: none;
    transition:
        color var(--home-transition);
}

.top-contact a:hover {
    color: var(--home-gold);
}

.top-contact a span:first-child {
    font-size: 13px;
}


/* ============================================================
   TOP SOCIAL ICONS
============================================================ */

.top-social a {
    width: 27px;
    height: 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border:
        1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
    background: #080808;
    color: #8b8b8b;
    font-size: 12px;
    text-decoration: none;
    transition:
        color var(--home-transition),
        border-color var(--home-transition),
        background var(--home-transition),
        transform var(--home-transition);
}

.top-social a:hover {
    color: var(--home-gold);
    border-color: var(--home-gold);
    background:
        rgba(212, 175, 55, 0.07);
    transform: translateY(-2px);
}


/* ============================================================
   MAIN HEADER
============================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background:
        rgba(4, 4, 4, 0.97);
    border-bottom:
        1px solid rgba(255, 255, 255, 0.07);
    box-shadow:
        0 5px 25px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}


/* ============================================================
   NAVIGATION WRAPPER
============================================================ */

.main-navigation {
    width: 100%;
}

.nav-container {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 30px;
}


/* ============================================================
   BRAND / LOGO
============================================================ */

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    gap: 11px;
    color: var(--home-white);
    text-decoration: none;
    transition:
        transform var(--home-transition);
}

.brand:hover {
    transform: translateY(-1px);
}


/* ============================================================
   LOGO MARK
============================================================ */

.brand-mark {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border:
        1px solid var(--home-gold);
    background:
        linear-gradient(
            145deg,
            #171717,
            #090909
        );
    color: var(--home-gold);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    box-shadow:
        0 5px 20px rgba(212, 175, 55, 0.07);
}


/* ============================================================
   LOGO TEXT
============================================================ */

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text strong {
    color: #ffffff;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.brand-text > span {
    margin-top: 5px;
    color: var(--home-gold);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* ============================================================
   DESKTOP NAVIGATION
============================================================ */

.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 23px;
}

.main-nav > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 10px 0;
    color: #b9b9b9;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
    transition:
        color var(--home-transition),
        transform var(--home-transition);
}

.main-nav > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: var(--home-gold);
    transition:
        width var(--home-transition);
}

.main-nav > a:hover {
    color: var(--home-white);
    transform: translateY(-1px);
}

.main-nav > a:hover::after,
.main-nav > a.active::after {
    width: 100%;
}

.main-nav > a.active {
    color: var(--home-gold);
}


/* ============================================================
   ORDER BUTTON
============================================================ */

.main-nav .nav-order-button {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
    padding: 9px 18px;
    border:
        1px solid var(--home-gold);
    border-radius: 6px;
    background: var(--home-gold);
    color: #050505;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    box-shadow:
        0 6px 20px rgba(212, 175, 55, 0.10);
    transition:
        background var(--home-transition),
        color var(--home-transition),
        transform var(--home-transition),
        box-shadow var(--home-transition);
}

.main-nav .nav-order-button::after {
    display: none;
}

.main-nav .nav-order-button:hover {
    background: var(--home-gold-light);
    color: #050505;
    transform: translateY(-2px);
    box-shadow:
        0 9px 25px rgba(212, 175, 55, 0.18);
}


/* ============================================================
   MOBILE MENU BUTTON
============================================================ */

.menu-toggle {
    display: none;
    width: 43px;
    height: 43px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
    padding: 0;
    border:
        1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    background: #0b0b0b;
    cursor: pointer;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    background: var(--home-white);
    transition:
        transform var(--home-transition),
        opacity var(--home-transition),
        background var(--home-transition);
}

.menu-toggle:hover {
    border-color: var(--home-gold);
}

.menu-toggle:hover span {
    background: var(--home-gold);
}


/* ============================================================
   HERO
============================================================ */

.home-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom:
        1px solid var(--home-border);
    background:
        radial-gradient(
            circle at 78% 35%,
            rgba(212, 175, 55, 0.12),
            transparent 31%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(212, 175, 55, 0.045),
            transparent 28%
        ),
        #050505;
}

.home-hero-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(340px, 0.75fr);
    gap: 70px;
    align-items: center;
    padding-top: 75px;
    padding-bottom: 75px;
}


/* ============================================================
   EYEBROW
============================================================ */

.eyebrow {
    display: inline-flex;
    align-items: center;
    color: var(--home-gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    margin-right: 10px;
    background: var(--home-gold);
}


/* ============================================================
   HERO HEADING
============================================================ */

.home-hero h1 {
    max-width: 780px;
    margin: 22px 0 0;
    color: var(--home-white);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size:
        clamp(52px, 7vw, 88px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -4px;
}

.home-hero h1 span {
    display: block;
    color: var(--home-gold);
}


/* ============================================================
   HERO DESCRIPTION
============================================================ */

.home-hero-description {
    max-width: 650px;
    margin: 28px 0 0;
    color: var(--home-text);
    font-size: 15px;
    line-height: 1.9;
}


/* ============================================================
   HERO ACTIONS
============================================================ */

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}


/* ============================================================
   BUTTONS
============================================================ */

.home-hero .btn,
.home-final-cta .btn,
.home-services .btn,
.home-packages .btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 23px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform var(--home-transition),
        background var(--home-transition),
        color var(--home-transition),
        border-color var(--home-transition),
        box-shadow var(--home-transition);
}

.home-hero .btn:not(.btn-outline),
.home-final-cta .btn:not(.btn-outline) {
    border: 1px solid var(--home-gold);
    background: var(--home-gold);
    color: #050505;
    box-shadow:
        0 7px 22px rgba(212, 175, 55, 0.10);
}

.home-hero .btn:not(.btn-outline):hover,
.home-final-cta .btn:not(.btn-outline):hover {
    background: var(--home-gold-light);
    transform: translateY(-2px);
    box-shadow:
        0 10px 28px rgba(212, 175, 55, 0.17);
}

.home-hero .btn-outline,
.home-services .btn-outline,
.home-packages .btn-outline,
.home-final-cta .btn-outline {
    border:
        1px solid rgba(255, 255, 255, 0.20);
    background: transparent;
    color: #dddddd;
}

.home-hero .btn-outline:hover,
.home-services .btn-outline:hover,
.home-packages .btn-outline:hover,
.home-final-cta .btn-outline:hover {
    border-color: var(--home-gold);
    color: var(--home-gold);
    transform: translateY(-2px);
}


/* ============================================================
   HERO TRUST
============================================================ */

.hero-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
    color: var(--home-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* ============================================================
   HERO BRAND BOX
============================================================ */

.hero-brand-box {
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    background:
        linear-gradient(
            145deg,
            #1a1a1a,
            #0b0b0b
        );
    border:
        1px solid var(--home-border);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
}

.hero-brand-box::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    top: -110px;
    right: -90px;
    border:
        1px solid rgba(212, 175, 55, 0.10);
    border-radius: 50%;
}

.hero-brand-box::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    bottom: -100px;
    left: -70px;
    border:
        1px solid rgba(212, 175, 55, 0.08);
    border-radius: 50%;
}


/* ============================================================
   HERO BRAND TOP
============================================================ */

.hero-brand-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 17px;
    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
    color: #8d8d8d;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}


/* ============================================================
   HERO BRAND CENTER
============================================================ */

.hero-brand-center {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px 0;
}

.hero-circle {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin:
        0 auto 30px;
    border:
        1px solid var(--home-gold);
    border-radius: 50%;
    color: var(--home-gold);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 52px;
    background:
        radial-gradient(
            circle,
            rgba(212, 175, 55, 0.06),
            transparent 68%
        );
    box-shadow:
        0 0 0 12px rgba(212, 175, 55, 0.025);
}

.hero-brand-center h2 {
    margin: 0;
    color: var(--home-white);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.15;
}

.hero-brand-center h2 span {
    display: block;
    color: var(--home-gold);
}

.hero-brand-center p {
    max-width: 340px;
    margin: 17px auto 0;
    color: #999999;
    font-size: 12px;
    line-height: 1.7;
}


/* ============================================================
   HERO BRAND BOTTOM
============================================================ */

.hero-brand-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 17px;
    border-top:
        1px solid rgba(255, 255, 255, 0.08);
    color: var(--home-gold);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.8px;
}


/* ============================================================
   GENERIC SECTIONS
============================================================ */

.section {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
}

.home-intro {
    background: var(--home-black);
}

.home-services {
    background: var(--home-black-soft);
}

.home-industries {
    background: #070707;
}

.home-packages {
    background: var(--home-black);
}

.home-process {
    background: var(--home-black-soft);
}

.home-final-cta {
    background: #050505;
}


/* ============================================================
   SECTION HEADINGS
============================================================ */

.section-heading {
    max-width: 720px;
}

.section-heading h2 {
    margin: 17px 0 0;
    color: var(--home-white);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size:
        clamp(35px, 4.3vw, 54px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -1.8px;
}

.section-heading p {
    max-width: 650px;
    margin: 20px 0 0;
    color: #999999;
    font-size: 14px;
    line-height: 1.8;
}


/* ============================================================
   SECTION HEADING ROW
============================================================ */

.section-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 45px;
}

.section-heading-row .section-heading {
    margin-bottom: 0;
}


/* ============================================================
   GRID BASE
============================================================ */

.grid-3 {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 22px;
}


/* ============================================================
   CARD BASE
============================================================ */

.card {
    position: relative;
    background:
        linear-gradient(
            145deg,
            #151515,
            #0d0d0d
        );
    border:
        1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.25);
    transition:
        transform var(--home-transition),
        border-color var(--home-transition),
        box-shadow var(--home-transition);
}

.card:hover {
    transform: translateY(-5px);
    border-color:
        rgba(212, 175, 55, 0.38);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.38),
        0 10px 35px rgba(212, 175, 55, 0.05);
}


/* ============================================================
   VALUE CARDS
============================================================ */

.home-intro .grid-3 {
    margin-top: 50px;
}

.home-value-card {
    min-height: 350px;
    padding: 32px;
}

.card-number {
    color: var(--home-gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.home-value-card h3 {
    margin: 30px 0 0;
    color: var(--home-white);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 26px;
    font-weight: 400;
}

.home-value-card p {
    margin: 15px 0 0;
    color: #999999;
    font-size: 13px;
    line-height: 1.8;
}


/* ============================================================
   CHECK LIST
============================================================ */

.check-list {
    list-style: none;
    margin: 25px 0 0;
    padding: 0;
}

.check-list li {
    position: relative;
    padding-left: 21px;
    margin-top: 10px;
    color: #bdbdbd;
    font-size: 11px;
    line-height: 1.6;
}

.check-list li:first-child {
    margin-top: 0;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--home-gold);
    font-weight: 800;
}


/* ============================================================
   SERVICES
============================================================ */

.home-services .service-preview-grid {
    margin-top: 5px;
}

.service-preview {
    min-height: 285px;
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.service-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border:
        1px solid var(--home-border);
    background: #0a0a0a;
    color: var(--home-gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.service-preview h3 {
    margin: 25px 0 0;
    color: var(--home-white);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 24px;
    font-weight: 400;
}

.service-preview p {
    margin: 13px 0 0;
    color: #969696;
    font-size: 12px;
    line-height: 1.8;
}

.card-link {
    display: inline-flex;
    width: fit-content;
    margin-top: auto;
    padding-top: 25px;
    color: var(--home-gold);
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
    transition:
        color var(--home-transition),
        transform var(--home-transition);
}

.card-link:hover {
    color: var(--home-gold-light);
    transform: translateX(4px);
}


/* ============================================================
   INDUSTRIES
============================================================ */

.home-industries .section-heading {
    margin-bottom: 50px;
}

.industry-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    background:
        rgba(255, 255, 255, 0.08);
    border:
        1px solid rgba(255, 255, 255, 0.08);
}

.industry-box {
    min-height: 205px;
    padding: 30px;
    background:
        linear-gradient(
            145deg,
            #111111,
            #090909
        );
    transition:
        background var(--home-transition);
}

.industry-box:hover {
    background:
        linear-gradient(
            145deg,
            #18150d,
            #0c0c0c
        );
}

.industry-box > span {
    color: var(--home-gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.industry-box h3 {
    margin: 22px 0 0;
    color: var(--home-white);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 22px;
    font-weight: 400;
}

.industry-box p {
    margin: 12px 0 0;
    color: #8f8f8f;
    font-size: 12px;
    line-height: 1.75;
}


/* ============================================================
   PACKAGES
============================================================ */

.home-packages .package-preview-grid {
    margin-top: 5px;
}

.package-card {
    min-height: 430px;
    display: flex;
    flex-direction: column;
    padding: 32px;
}

.package-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
    color: #888888;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.package-top span:first-child {
    color: var(--home-gold);
}

.package-card h3 {
    margin: 27px 0 0;
    color: var(--home-white);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 28px;
    font-weight: 400;
}

.package-card > p {
    margin: 13px 0 0;
    color: #969696;
    font-size: 12px;
    line-height: 1.75;
}

.price {
    margin-top: 27px;
    color: var(--home-gold);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 38px;
    line-height: 1;
}

.price small {
    margin-left: 5px;
    color: #777777;
    font-family:
        Arial,
        Helvetica,
        sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.package-card .check-list {
    margin-top: 28px;
}

.package-link {
    display: inline-flex;
    width: fit-content;
    margin-top: auto;
    padding-top: 25px;
    color: var(--home-gold);
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
    transition:
        color var(--home-transition),
        transform var(--home-transition);
}

.package-link:hover {
    color: var(--home-gold-light);
    transform: translateX(4px);
}


/* ============================================================
   FEATURED PACKAGE
============================================================ */

.featured-package {
    border-color:
        var(--home-gold);
    background:
        linear-gradient(
            145deg,
            #1d1a14,
            #0d0d0d
        );
    box-shadow:
        0 15px 45px rgba(212, 175, 55, 0.08);
}

.featured-package:hover {
    border-color:
        var(--home-gold-light);
    box-shadow:
        0 20px 55px rgba(212, 175, 55, 0.12);
}


/* ============================================================
   PROCESS
============================================================ */

.home-process .section-heading {
    margin-bottom: 50px;
}

.process-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    background:
        rgba(255, 255, 255, 0.08);
    border:
        1px solid rgba(255, 255, 255, 0.08);
}

.process-step {
    min-height: 180px;
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
    padding: 30px;
    background:
        #0d0d0d;
    transition:
        background var(--home-transition);
}

.process-step:hover {
    background:
        #15130e;
}

.process-number {
    color: var(--home-gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.process-step h3 {
    margin: 0;
    color: var(--home-white);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 22px;
    font-weight: 400;
}

.process-step p {
    margin: 12px 0 0;
    color: #8f8f8f;
    font-size: 12px;
    line-height: 1.75;
}


/* ============================================================
   FINAL CTA
============================================================ */

.home-final-cta {
    padding-top: 80px;
    padding-bottom: 100px;
}

.home-final-cta .cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 50px;
    background:
        linear-gradient(
            145deg,
            #17140d,
            #080808
        );
    border:
        1px solid var(--home-border);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.35);
}

.home-final-cta .cta-box > div:first-child {
    max-width: 650px;
}

.home-final-cta h2 {
    margin: 17px 0 0;
    color: var(--home-white);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size:
        clamp(34px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.home-final-cta p {
    margin: 17px 0 0;
    color: #969696;
    font-size: 13px;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex-shrink: 0;
}


/* ============================================================
   FOOTER
============================================================ */

.site-footer {
    background: #030303;
    border-top:
        1px solid rgba(255, 255, 255, 0.08);
}

.site-footer > .container {
    padding-top: 75px;
    padding-bottom: 30px;
}


/* ============================================================
   FOOTER GRID
============================================================ */

.footer-grid {
    display: grid;
    grid-template-columns:
        1.5fr
        1fr
        1fr
        1.25fr;
    gap: 55px;
}


/* ============================================================
   FOOTER COLUMN
============================================================ */

.footer-column {
    min-width: 0;
}

.footer-column > p {
    max-width: 280px;
    margin: 20px 0 0;
    color: #777777;
    font-size: 11px;
    line-height: 1.8;
}

.footer-column h3 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* ============================================================
   FOOTER LOGO
============================================================ */

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #ffffff;
    text-decoration: none;
}

.footer-logo-mark {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border:
        1px solid var(--home-gold);
    color: var(--home-gold);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 20px;
}

.footer-logo > span:last-child {
    display: flex;
    flex-direction: column;
}

.footer-logo strong {
    color: #ffffff;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 17px;
}

.footer-logo small {
    margin-top: 4px;
    color: var(--home-gold);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}


/* ============================================================
   FOOTER LINKS
============================================================ */

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 11px;
}

.footer-links a {
    color: #7f7f7f;
    font-size: 11px;
    text-decoration: none;
    transition:
        color var(--home-transition);
}

.footer-links a:hover {
    color: var(--home-gold);
}


/* ============================================================
   FOOTER CONTACT
============================================================ */

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.footer-contact li > span {
    flex-shrink: 0;
    color: var(--home-gold);
    font-size: 12px;
}

.footer-contact a {
    overflow-wrap: anywhere;
}


/* ============================================================
   FOOTER SOCIAL
============================================================ */

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.footer-social a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border:
        1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
    color: #888888;
    font-size: 12px;
    text-decoration: none;
    transition:
        color var(--home-transition),
        border-color var(--home-transition),
        transform var(--home-transition);
}

.footer-social a:hover {
    color: var(--home-gold);
    border-color: var(--home-gold);
    transform: translateY(-2px);
}


/* ============================================================
   FOOTER BOTTOM
============================================================ */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 60px;
    padding-top: 22px;
    border-top:
        1px solid rgba(255, 255, 255, 0.07);
    color: #626262;
    font-size: 9px;
    line-height: 1.6;
}


/* ============================================================
   MOBILE NAVIGATION
============================================================ */

/*
   Your current HTML does NOT have a separate mobile-nav.
   The existing #mainNav becomes the mobile navigation.
*/

@media (max-width: 900px) {

    .nav-container {
        min-height: 70px;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin-left: 0;
        padding: 10px 20px 20px;
        background:
            rgba(3, 3, 3, 0.99);
        border-top:
            1px solid rgba(255, 255, 255, 0.06);
        border-bottom:
            1px solid var(--home-border);
        box-shadow:
            0 20px 45px rgba(0, 0, 0, 0.75);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav > a {
        width: 100%;
        min-height: 46px;
        display: flex;
        align-items: center;
        padding: 12px 5px;
        border-bottom:
            1px solid rgba(255, 255, 255, 0.05);
    }

    .main-nav > a::after {
        display: none;
    }

    .main-nav > a.active {
        color: var(--home-gold);
    }

    .main-nav .nav-order-button {
        margin: 12px 0 0;
        justify-content: center;
        border-bottom: 1px solid var(--home-gold);
    }

    .menu-toggle {
        display: flex;
    }


    /* HERO */

    .home-hero-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .home-hero {
        min-height: auto;
    }

    .home-hero-content {
        max-width: 800px;
    }

    .hero-brand-box {
        max-width: 600px;
        width: 100%;
        margin: 0 auto;
    }


    /* GRIDS */

    .grid-3,
    .service-preview-grid,
    .industry-grid,
    .package-preview-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 45px 35px;
    }
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 768px) {

    .top-contact a span:last-child {
        display: none;
    }

    .top-contact {
        gap: 8px;
    }

    .top-social {
        gap: 6px;
    }


    .section {
        padding-top: 80px;
        padding-bottom: 80px;
    }


    .home-hero-grid {
        padding-top: 65px;
        padding-bottom: 65px;
    }


    .section-heading-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }


    .process-grid {
        grid-template-columns: 1fr;
    }


    .home-final-cta .cta-box {
        align-items: flex-start;
        flex-direction: column;
        padding: 40px;
    }


    .cta-actions {
        width: 100%;
    }


    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 600px) {

    .top-bar-inner,
    .nav-container,
    .home-hero > .container,
    .home-intro > .container,
    .home-services > .container,
    .home-industries > .container,
    .home-packages > .container,
    .home-process > .container,
    .home-final-cta > .container,
    .site-footer > .container {
        width: min(100% - 30px, var(--home-container));
    }


    .top-bar {
        min-height: 38px;
    }

    .top-bar-inner {
        min-height: 38px;
    }


    .brand-text strong {
        font-size: 17px;
    }

    .brand-mark {
        width: 39px;
        height: 39px;
    }


    .home-hero-grid {
        padding-top: 55px;
        padding-bottom: 55px;
        gap: 45px;
    }


    .home-hero h1 {
        font-size: clamp(43px, 13vw, 64px);
        letter-spacing: -2.5px;
    }


    .home-hero-description {
        font-size: 13px;
        line-height: 1.8;
    }


    .hero-actions {
        flex-direction: column;
    }


    .home-hero .btn {
        width: 100%;
    }


    .hero-trust {
        gap: 7px;
        font-size: 8px;
        letter-spacing: 1px;
    }


    .hero-brand-box {
        min-height: 390px;
        padding: 22px;
    }


    .hero-circle {
        width: 90px;
        height: 90px;
        font-size: 42px;
        margin-bottom: 23px;
    }


    .hero-brand-center h2 {
        font-size: 27px;
    }


    .section {
        padding-top: 70px;
        padding-bottom: 70px;
    }


    .section-heading h2 {
        font-size: 36px;
        letter-spacing: -1px;
    }


    .section-heading p {
        font-size: 13px;
    }


    .grid-3,
    .service-preview-grid,
    .industry-grid,
    .package-preview-grid {
        grid-template-columns: 1fr;
    }


    .home-value-card,
    .service-preview,
    .package-card {
        min-height: auto;
    }


    .home-value-card {
        padding: 27px;
    }


    .service-preview {
        padding: 27px;
        min-height: 260px;
    }


    .industry-box {
        min-height: auto;
        padding: 27px;
    }


    .package-card {
        padding: 27px;
    }


    .process-step {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 15px;
        padding: 25px;
    }


    .process-step h3 {
        font-size: 20px;
    }


    .home-final-cta {
        padding-top: 65px;
        padding-bottom: 75px;
    }


    .home-final-cta .cta-box {
        padding: 30px 25px;
    }


    .home-final-cta h2 {
        font-size: 36px;
        letter-spacing: -1px;
    }


    .cta-actions {
        flex-direction: column;
    }


    .cta-actions .btn {
        width: 100%;
    }


    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }


    .site-footer > .container {
        padding-top: 60px;
    }


    .footer-bottom {
        margin-top: 45px;
    }
}


/* ============================================================
   SMALL PHONES
============================================================ */

@media (max-width: 400px) {

    .brand-text strong {
        font-size: 15px;
    }

    .brand-text > span {
        font-size: 7px;
        letter-spacing: 1.5px;
    }


    .brand-mark {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }


    .menu-toggle {
        width: 39px;
        height: 39px;
    }


    .home-hero h1 {
        font-size: 42px;
    }


    .hero-brand-center h2 {
        font-size: 24px;
    }


    .hero-brand-bottom {
        font-size: 7px;
        letter-spacing: 1.2px;
    }


    .section-heading h2 {
        font-size: 32px;
    }


    .home-final-cta h2 {
        font-size: 32px;
    }
}


/* ============================================================
   ACCESSIBILITY
============================================================ */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}