/* ============================================================
   YASHASVI ENGINEERS - MASTER STYLESHEET
   ============================================================ */

/* ============================================================
   ROOT VARIABLES
   ============================================================ */
:root {
    --navy: #08245e;
    --blue: #087bc7;
    --cyan: #13b9e8;
    --orange: #f15a29;
    --ink: #102b52;
    --muted: #5c6f83;
    --paper: #f3f9fc;
    --line: #cfe2ee;
    --primary: #1a3c5e;
    --primary-dark: #0d2233;
    --primary-light: #2a5c8e;
    --secondary: #f15a29;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --glass-bg: rgba(26, 60, 94, 0.06);
    --glass-border: rgba(26, 60, 94, 0.08);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    --nav-blur: blur(20px);
    --gradient-primary: linear-gradient(135deg, #1a3c5e, #2a5c8e);
    --gradient-secondary: linear-gradient(135deg, #f15a29, #e84d1a);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --shadow: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.08);
    --shadow-xl: 0 25px 50px rgba(0,0,0,0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

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

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 3px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--primary);
    }

::selection {
    background: var(--secondary);
    color: white;
}

/* ============================================================
   TOP STRIP
   ============================================================ */
.top-strip {
    padding: 8px 0;
    background: var(--navy);
    color: #d8e7f3;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

    .top-strip .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

.top-strip-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

    .top-strip-left a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 0.7rem;
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
    }

        .top-strip-left a:hover {
            color: #ffffff;
        }

    .top-strip-left i {
        font-size: 0.65rem;
        color: var(--orange);
    }

.top-strip-divider {
    color: rgba(255, 255, 255, 0.15);
}

.top-strip-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .top-strip-right .social-link {
        color: rgba(255, 255, 255, 0.5);
        transition: all 0.3s ease;
        font-size: 0.8rem;
    }

        .top-strip-right .social-link:hover {
            color: #ffffff;
            transform: translateY(-1px);
        }

/* ============================================================
   NAVBAR / SITE HEADER
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: var(--nav-blur);
    -webkit-backdrop-filter: var(--nav-blur);
    color: var(--ink);
    box-shadow: 0 4px 18px rgba(8, 36, 94, 0.09);
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

    .site-header.scrolled {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
        padding: 0.35rem 0;
    }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 0.5rem;
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

    .brand img {
        width: 48px;
        height: 48px;
        object-fit: contain;
        background: #fff;
        border-radius: 4px;
        transition: transform 0.3s ease;
    }

    .brand:hover img {
        transform: scale(1.05);
    }

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand strong {
    display: block;
    font-size: 16px;
    letter-spacing: .2em;
    color: var(--navy);
}

.brand small {
    display: block;
    margin-top: 2px;
    color: var(--orange);
    font-size: 8px;
    letter-spacing: .32em;
    text-transform: uppercase;
}

/* Navigation */
.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

    .site-nav a {
        color: var(--gray-700);
        transition: color 0.3s ease;
        padding: 0.4rem 0.2rem;
        position: relative;
    }

        .site-nav a:hover {
            color: var(--blue);
        }

        .site-nav a.active {
            color: var(--navy);
        }

            .site-nav a.active::after {
                content: '';
                position: absolute;
                bottom: -2px;
                left: 0;
                width: 100%;
                height: 2px;
                background: var(--orange);
                border-radius: 2px;
            }

.nav-cta {
    padding: 10px 19px;
    background: var(--orange);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(241, 90, 41, 0.4);
        color: #fff;
    }

/* Menu Toggle (Mobile) */
.menu-toggle {
    display: none;
    border: 1px solid #ffffff55;
    background: transparent;
    color: var(--gray-700);
    padding: 10px 13px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .menu-toggle:hover {
        border-color: var(--blue);
        color: var(--blue);
    }

/* ============================================================
   NAV ACTIONS (Buttons)
   ============================================================ */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border-radius: 50px;
    font-weight: 600;
    padding: 0.4rem 1.2rem;
    font-size: 0.78rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: 0 4px 20px rgba(241, 90, 41, 0.3);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(241, 90, 41, 0.4);
        color: white;
    }

    .btn-primary i {
        color: rgba(255, 255, 255, 0.9);
    }

.btn-outline {
    background: transparent;
    border: 1px solid var(--gray-300);
    color: var(--gray-700);
}

    .btn-outline:hover {
        border-color: var(--primary);
        color: var(--primary);
        background: rgba(26, 60, 94, 0.03);
        transform: translateY(-2px);
    }

    .btn-outline i {
        color: var(--primary-light);
    }

.btn-secondary {
    background: var(--primary);
    color: white;
}

    .btn-secondary:hover {
        background: var(--primary-light);
        color: white;
        transform: translateY(-2px);
    }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    min-height: 720px;
    display: flex;
    align-items: center;
    background: var(--paper);
    background-image: linear-gradient(#cde4ef 1px, transparent 1px), linear-gradient(90deg, #cde4ef 1px, transparent 1px);
    background-size: 42px 42px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 80px 0;
}

.hero-copy .eyebrow {
    margin: 0 0 20px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.eyebrow:before {
    content: "";
    display: inline-block;
    width: 27px;
    height: 1px;
    background: currentColor;
    vertical-align: middle;
    margin: 0 10px 3px 0;
}

.hero-copy h1 {
    margin: 0;
    max-width: 670px;
    font-size: clamp(48px, 6vw, 84px);
    line-height: .98;
    letter-spacing: -.065em;
    color: var(--navy);
}

    .hero-copy h1 span {
        color: var(--blue);
    }

.hero-lede {
    max-width: 600px;
    margin: 30px 0 0;
    color: var(--muted);
    font-size: 17px;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 13px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid transparent;
    padding: 15px 20px;
    font-weight: 800;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.button-primary {
    background: var(--orange);
    color: #fff;
}

.button-secondary {
    border-color: var(--blue);
    color: var(--navy);
}

.button:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow: var(--shadow-lg);
}

.text-link {
    color: var(--blue);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .text-link:hover {
        color: var(--navy);
        text-decoration: underline;
    }

.proof-row {
    display: flex;
    gap: 38px;
    margin-top: 52px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

    .proof-row div {
        text-align: center;
    }

    .proof-row strong {
        display: block;
        font-size: 28px;
        color: var(--navy);
    }

    .proof-row span {
        display: block;
        color: var(--muted);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

.hero-mark {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 490px;
}

    .hero-mark:before {
        content: "";
        position: absolute;
        width: 430px;
        height: 430px;
        border-radius: 50%;
        background: radial-gradient(circle, #fff 0 48%, #d7f3fb 49% 64%, transparent 65%);
        box-shadow: 0 22px 50px rgba(8, 123, 199, 0.21);
    }

    .hero-mark img {
        position: relative;
        width: min(420px, 90%);
        height: auto;
        filter: drop-shadow(0 16px 25px rgba(8, 36, 94, 0.16));
    }

.hero-callout {
    position: absolute;
    right: 4%;
    bottom: 40px;
    padding: 15px 19px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(8, 36, 94, 0.09);
}

    .hero-callout small {
        display: block;
        color: var(--blue);
        font-size: 10px;
        font-weight: 800;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    .hero-callout strong {
        display: block;
        margin-top: 4px;
        font-size: 14px;
        color: var(--navy);
    }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

    .trust-grid > div {
        padding: 25px 20px;
        border-right: 1px solid var(--line);
    }

        .trust-grid > div:first-child {
            padding-left: 0;
        }

        .trust-grid > div:last-child {
            border-right: 0;
        }

    .trust-grid strong {
        display: block;
        font-size: 14px;
        color: var(--navy);
    }

    .trust-grid span {
        display: block;
        margin-top: 5px;
        color: var(--muted);
        font-size: 12px;
    }

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
    padding: 105px 0;
}

    .section h2 {
        margin: 0;
        font-size: clamp(36px, 4.5vw, 61px);
        line-height: 1.02;
        letter-spacing: -.05em;
        color: var(--navy);
    }

    .section p {
        color: var(--muted);
    }

.two-column {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;
}

.copy-block {
    max-width: 560px;
    color: var(--muted);
    font-size: 17px;
}

    .copy-block p {
        margin: 0 0 20px;
        line-height: 1.7;
    }

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 48px;
}

    .section-heading h2 {
        max-width: 600px;
    }

.section-note {
    max-width: 220px;
    color: var(--muted);
    font-size: 14px;
}

.section-machines,
.section-intro,
.section-industries,
.section-faq {
    background: #fff;
}

/* ============================================================
   MACHINE GRID
   ============================================================ */
.machine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
}

.machine-card {
    min-height: 245px;
    padding: 25px;
    background: #fff;
    transition: all 0.2s ease;
}

    .machine-card:hover {
        background: #f2fbfe;
        transform: translateY(-3px);
    }

.machine-index {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
}

.machine-icon {
    float: right;
    color: var(--orange);
    font-size: 25px;
}

.machine-card h3 {
    max-width: 245px;
    margin: 34px 0 10px;
    font-size: 20px;
    line-height: 1.15;
    color: var(--navy);
}

.machine-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.machine-card small {
    display: block;
    margin-top: 17px;
    color: #7890a3;
    font-size: 11px;
}

.machine-card a {
    display: block;
    margin-top: 20px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .machine-card a:hover {
        color: var(--navy);
    }

/* ============================================================
   BLUE SECTION
   ============================================================ */
.section-blue {
    background: var(--navy);
    color: #fff;
}

    .section-blue h2 {
        color: #fff;
    }

    .section-blue .section-lede {
        color: #c0d4e4;
    }

.eyebrow-light {
    color: #67d6f0;
}

.section-lede {
    max-width: 450px;
    margin-top: 26px;
    font-size: 16px;
}

.capability-list {
    border-top: 1px solid rgba(255, 255, 255, 0.24);
}

    .capability-list > div {
        display: grid;
        grid-template-columns: 45px 1fr;
        padding: 25px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    }

        .capability-list > div:last-child {
            border-bottom: 0;
        }

    .capability-list span {
        color: #65d7f2;
        font-size: 12px;
    }

    .capability-list strong {
        font-size: 20px;
        color: #fff;
    }

    .capability-list p {
        grid-column: 2;
        margin: 8px 0 0;
        color: #b8cbda;
        font-size: 14px;
    }

/* ============================================================
   INDUSTRY GRID
   ============================================================ */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
}

    .industry-grid article {
        min-height: 190px;
        padding: 22px;
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        background: #fff;
        transition: all 0.3s ease;
    }

        .industry-grid article:hover {
            background: var(--paper);
            transform: translateY(-2px);
        }

    .industry-grid span {
        color: var(--orange);
        font-size: 12px;
        font-weight: 800;
    }

    .industry-grid h3 {
        margin: 42px 0 7px;
        font-size: 20px;
        color: var(--navy);
    }

    .industry-grid p {
        margin: 0;
        color: var(--muted);
        font-size: 13px;
    }

/* ============================================================
   PROOF / STATS SECTION
   ============================================================ */
.section-proof {
    background: #f0f7fb;
}

.proof-heading {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: end;
}

    .proof-heading h2 span {
        color: var(--blue);
    }

    .proof-heading p {
        max-width: 340px;
        margin: 0;
        color: var(--muted);
    }

.proof-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 55px;
}

    .proof-cards div {
        padding: 25px;
        background: #fff;
        border-top: 3px solid var(--cyan);
        border-radius: 12px;
        text-align: center;
        transition: all 0.3s ease;
    }

        .proof-cards div:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

    .proof-cards strong {
        display: block;
        color: var(--navy);
        font-size: 31px;
    }

    .proof-cards span {
        display: block;
        margin-top: 8px;
        color: var(--muted);
        font-size: 12px;
    }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-list details {
    padding: 22px 0;
    border-top: 1px solid var(--line);
}

    .faq-list details:last-child {
        border-bottom: 1px solid var(--line);
    }

summary {
    cursor: pointer;
    font-weight: 800;
    color: var(--navy);
    outline: none;
}

    summary::-webkit-details-marker {
        color: var(--blue);
    }

details p {
    max-width: 620px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

/* ============================================================
   QUOTE SECTION
   ============================================================ */
.section-quote {
    background: var(--navy);
    color: #fff;
}

.quote-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 75px;
}

    .quote-grid h2 {
        max-width: 500px;
        color: #fff;
    }

    .quote-grid > div > p:not(.eyebrow) {
        max-width: 410px;
        color: #bed0df;
    }

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 35px;
    color: #6ed8f1;
    font-weight: 700;
}

    .contact-links a {
        color: #6ed8f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .contact-links a:hover {
            color: #fff;
        }

.quote-panel {
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    color: var(--ink);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* Quote Form */
.quote-form label {
    display: block;
    margin: 12px 0 6px;
    font-size: 12px;
    font-weight: 800;
    color: var(--navy);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 15px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    padding: 12px 13px;
    background: #f8fcfe;
    color: var(--ink);
    font: inherit;
    border-radius: 6px;
    transition: border-color 0.2s;
}

    .quote-form input:focus,
    .quote-form select:focus,
    .quote-form textarea:focus {
        border-color: var(--blue);
        outline: none;
        box-shadow: 0 0 0 3px rgba(8, 123, 199, 0.1);
    }

.quote-form textarea {
    resize: vertical;
    min-height: 100px;
}

.quote-form .field-validation-error,
.quote-form .validation-summary {
    display: block;
    color: #c63e2d;
    font-size: 11px;
    margin-top: 4px;
}

.quote-form .button {
    width: 100%;
    margin-top: 18px;
    border: 0;
    justify-content: center;
}

.consent {
    display: flex !important;
    align-items: flex-start;
    gap: 8px;
    color: var(--muted);
    font-size: 11px !important;
    font-weight: 400 !important;
    margin-top: 12px;
}

    .consent input {
        width: auto;
        margin-top: 3px;
    }

.success-message {
    padding: 35px 10px;
    text-align: center;
}

    .success-message strong {
        font-size: 28px;
        color: #28a745;
    }

    .success-message p {
        color: var(--muted);
    }

    .success-message a {
        color: var(--blue);
        font-weight: 800;
        text-decoration: none;
    }

        .success-message a:hover {
            text-decoration: underline;
        }

/* Sticky Inquiry Button */
.sticky-inquiry {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 100;
    padding: 13px 18px;
    border-radius: 50px;
    background: var(--orange);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(8, 36, 94, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}

    .sticky-inquiry:hover {
        transform: scale(1.05);
        box-shadow: 0 12px 32px rgba(241, 90, 41, 0.4);
        color: #fff;
    }

/* ============================================================
   FOOTER / SITE FOOTER
   ============================================================ */
.site-footer {
    padding: 55px 0 20px;
    background: #071b48;
    color: #d8e7f3;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.9fr;
    gap: 60px;
}

.brand-footer {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .brand-footer img {
        width: 48px;
        height: 48px;
        object-fit: contain;
        background: #fff;
        border-radius: 4px;
    }

    .brand-footer strong {
        font-size: 16px;
        letter-spacing: .2em;
    }

.site-footer p {
    max-width: 330px;
    color: #9eb6c8;
    font-size: 13px;
    line-height: 1.6;
}

.site-footer h2 {
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
}

.site-footer a:not(.brand) {
    display: block;
    margin: 10px 0;
    color: #9fdcf0;
    font-size: 13px;
    transition: color 0.3s ease;
}

    .site-footer a:not(.brand):hover {
        color: #fff;
    }

/* Footer Contact */
.footer-contact p {
    margin: 8px 0;
    color: #9eb6c8;
    font-size: 13px;
}

.footer-contact i {
    color: var(--orange);
    width: 20px;
}

.footer-contact a {
    color: #9eb6c8;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .footer-contact a:hover {
        color: #fff;
    }

/* Footer Social */
.footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 16px;
}

    .footer-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.06);
        border-radius: 50%;
        color: rgba(255, 255, 255, 0.6);
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.06);
        text-decoration: none;
    }

        .footer-social a:hover {
            background: var(--orange);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(241, 90, 41, 0.3);
            border-color: var(--orange);
        }

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 45px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: #8ca6bb;
    font-size: 11px;
    flex-wrap: wrap;
    gap: 0.8rem;
}

    .footer-bottom a {
        color: #8ca6bb;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-bottom a:hover {
            color: #fff;
        }

/* ============================================================
   PRODUCT / SERVICE PAGES
   ============================================================ */
.product-hero {
    padding: 110px 0;
    background: var(--paper);
    background-image: linear-gradient(#cde4ef 1px, transparent 1px), linear-gradient(90deg, #cde4ef 1px, transparent 1px);
    background-size: 42px 42px;
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.product-hero h1 {
    max-width: 700px;
    margin: 0;
    font-size: clamp(48px, 6vw, 82px);
    line-height: 1;
    letter-spacing: -.06em;
    color: var(--navy);
}

.product-lede {
    max-width: 620px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: 18px;
}

.product-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 390px;
}

    .product-visual:before {
        content: "";
        position: absolute;
        width: 340px;
        height: 340px;
        border-radius: 50%;
        background: #fff;
        box-shadow: 0 15px 50px rgba(8, 123, 199, 0.17);
    }

    .product-visual img {
        position: relative;
        width: min(330px, 90%);
        filter: drop-shadow(0 15px 25px rgba(8, 36, 94, 0.15));
    }

    .product-visual span {
        position: absolute;
        bottom: 15px;
        right: 0;
        padding: 12px 15px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 8px;
        color: var(--blue);
        font-size: 11px;
        font-weight: 800;
    }

.product-content,
.product-faq {
    background: #fff;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
}

    .product-detail-grid h2 {
        margin: 0;
        font-size: clamp(34px, 4vw, 55px);
        line-height: 1.05;
        letter-spacing: -.05em;
        color: var(--navy);
    }

    .product-detail-grid .copy-block {
        margin: 25px 0;
    }

.spec-panel {
    border-top: 2px solid var(--blue);
}

    .spec-panel h2 {
        margin: 0;
        padding: 20px 0;
        font-size: 22px;
    }

.spec-row {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 20px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    font-size: 14px;
}

    .spec-row span {
        color: var(--muted);
    }

    .spec-row strong {
        font-weight: 700;
        color: var(--navy);
    }

.product-blue {
    background: var(--navy);
    color: #fff;
}

    .product-blue h2 {
        color: #fff;
    }

.application-list {
    border-top: 1px solid rgba(255, 255, 255, 0.24);
}

    .application-list div {
        display: flex;
        gap: 15px;
        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    }

    .application-list span {
        color: #64d5ef;
        font-weight: 900;
    }

    .application-list strong {
        font-size: 17px;
        color: #fff;
    }

.product-faq {
    padding-bottom: 110px;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 992px) {
    .container {
        width: min(100% - 32px, 600px);
    }

    .top-strip {
        font-size: 9px;
        line-height: 1.45;
    }

        .top-strip span {
            margin: 0 5px;
        }

    .header-inner {
        min-height: 68px;
    }

    .brand img {
        width: 42px;
        height: 42px;
    }

    .brand strong {
        font-size: 14px;
    }

    .site-nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 68px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 15px 16px 20px;
        background: var(--navy);
        border-radius: 0 0 12px 12px;
        box-shadow: var(--shadow-lg);
    }

        .site-nav.is-open {
            display: flex;
        }

        .site-nav a {
            padding: 13px 5px;
            color: rgba(255, 255, 255, 0.8);
        }

            .site-nav a:hover {
                color: #fff;
            }

            .site-nav a.active {
                color: #fff;
            }

                .site-nav a.active::after {
                    background: var(--orange);
                }

    .nav-cta {
        text-align: center;
        margin-top: 8px;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        min-height: 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 70px 0;
    }

    .hero-copy {
        order: 2;
    }

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

    .hero-lede {
        font-size: 15px;
    }

    .hero-mark {
        min-height: 350px;
        order: -1;
    }

        .hero-mark:before {
            width: 300px;
            height: 300px;
        }

        .hero-mark img {
            width: 300px;
        }

    .hero-callout {
        right: 3%;
        bottom: 4px;
    }

    .proof-row {
        gap: 18px;
    }

        .proof-row strong {
            font-size: 22px;
        }

        .proof-row span {
            font-size: 8px;
        }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

        .trust-grid > div {
            padding: 18px 10px;
        }

            .trust-grid > div:first-child {
                padding-left: 10px;
            }

            .trust-grid > div:nth-child(2) {
                border-right: 0;
            }

            .trust-grid > div:nth-child(-n+2) {
                border-bottom: 1px solid var(--line);
            }

    .section {
        padding: 75px 0;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 70px 0;
    }

    .section-heading {
        display: block;
    }

        .section-heading .text-link,
        .section-note {
            display: block;
            margin-top: 18px;
        }

    .machine-grid {
        grid-template-columns: 1fr;
    }

    .machine-card {
        min-height: 210px;
    }

    .industry-grid {
        grid-template-columns: 1fr;
    }

    .proof-heading {
        display: block;
    }

        .proof-heading p {
            margin-top: 16px;
        }

    .proof-cards {
        grid-template-columns: 1fr 1fr;
        margin-top: 35px;
    }

    .quote-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 70px 0;
    }

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

    .product-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 70px 0;
    }

    .product-hero h1 {
        font-size: 52px;
    }

    .product-lede {
        font-size: 15px;
    }

    .product-visual {
        min-height: 300px;
    }

        .product-visual:before {
            width: 270px;
            height: 270px;
        }

        .product-visual img {
            width: 260px;
        }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 70px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-bottom {
        display: block;
        text-align: center;
    }

        .footer-bottom span {
            display: block;
            margin: 6px 0;
        }

    .sticky-inquiry {
        right: 16px;
        bottom: 16px;
        padding: 10px 14px;
        font-size: 10px;
    }

    .button-row {
        align-items: stretch;
    }

    .button {
        width: 100%;
        justify-content: center;
    }

    .text-link {
        margin: 3px 0;
        text-align: center;
    }

    .spec-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .product-hero-grid {
        padding-top: 30px;
    }
}

@media (max-width: 576px) {
    .container {
        width: min(100% - 16px, 100%);
        padding: 0 8px;
    }

    .top-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        font-size: 8px;
    }

    .top-strip-right {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .top-strip-left a span {
        display: none;
    }

    .brand img {
        width: 32px;
        height: 32px;
    }

    .brand strong {
        font-size: 12px;
        letter-spacing: .1em;
    }

    .brand small {
        font-size: 6px;
        letter-spacing: .2em;
    }

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

    .hero-lede {
        font-size: 13px;
    }

    .hero-mark {
        min-height: 250px;
    }

        .hero-mark:before {
            width: 220px;
            height: 220px;
        }

        .hero-mark img {
            width: 200px;
        }

    .proof-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .section h2 {
        font-size: 28px;
    }

    .machine-card h3 {
        font-size: 17px;
    }

    .proof-cards {
        grid-template-columns: 1fr;
    }

    .site-nav .nav-cta {
        display: block;
        text-align: center;
        margin-top: 8px;
        padding: 10px;
    }

    .sticky-inquiry {
        right: 10px;
        bottom: 10px;
        padding: 8px 12px;
        font-size: 10px;
    }

    .footer {
        padding: 30px 0 15px;
    }

    .footer-grid {
        text-align: center;
    }

    .brand-footer {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-gradient {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

.bg-gradient-secondary {
    background: var(--gradient-secondary);
}

.shadow-hover:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.transition-all {
    transition: var(--transition);
}

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--muted);
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.p-1 {
    padding: 0.5rem;
}

.p-2 {
    padding: 1rem;
}

.p-3 {
    padding: 1.5rem;
}

.p-4 {
    padding: 2rem;
}

.p-5 {
    padding: 3rem;
}

.d-flex {
    display: flex;
}

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

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.gap-1 {
    gap: 0.5rem;
}

.gap-2 {
    gap: 1rem;
}

.gap-3 {
    gap: 1.5rem;
}

.gap-4 {
    gap: 2rem;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.rounded {
    border-radius: var(--radius);
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

.rounded-xl {
    border-radius: var(--radius-xl);
}

.shadow-sm {
    box-shadow: var(--shadow);
}

.shadow {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.shadow-xl {
    box-shadow: var(--shadow-xl);
}

/* ============================================================
   ADMIN PANEL LINKS
   ============================================================ */
.top-strip-right .admin-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    transition: all 0.2s;
    font-size: 0.7rem;
}

    .top-strip-right .admin-link:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.15);
    }

.site-nav .nav-admin {
    color: #ffd700;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 1px solid #ffd700;
    border-radius: 0.375rem;
    transition: all 0.2s;
}

    .site-nav .nav-admin:hover {
        background: #ffd700;
        color: #1a3c5e;
    }

    .site-nav .nav-admin i {
        margin-right: 0.375rem;
    }

.footer-admin-link {
    display: inline-block;
    margin-top: 0.75rem;
    color: #ffd700;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

    .footer-admin-link:hover {
        color: #fff;
        text-decoration: underline;
    }

    .footer-admin-link i {
        margin-right: 0.375rem;
    }

.admin-footer-link {
    margin-left: 1rem;
}

    .admin-footer-link a {
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        font-size: 0.8rem;
    }

        .admin-footer-link a:hover {
            color: #fff;
            text-decoration: underline;
        }

        .admin-footer-link a i {
            margin-right: 0.25rem;
        }
/* Add this to your site.css to fix alignment issues */

/* ─── HEADER INNER ─── */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 1rem;
    flex-wrap: nowrap;
}

/* ─── BRAND ─── */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

    .brand img {
        width: 48px;
        height: 48px;
        object-fit: contain;
        background: #fff;
        border-radius: 4px;
        transition: transform 0.3s ease;
    }

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand strong {
    display: block;
    font-size: 16px;
    letter-spacing: .2em;
    color: var(--navy);
}

.brand small {
    display: block;
    margin-top: 2px;
    color: var(--orange);
    font-size: 8px;
    letter-spacing: .32em;
    text-transform: uppercase;
}

/* ─── SITE NAV ─── */
.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    flex: 1;
    justify-content: center;
}

    .site-nav a {
        color: var(--gray-700);
        transition: color 0.3s ease;
        padding: 0.4rem 0.2rem;
        position: relative;
        text-decoration: none;
    }

        .site-nav a:hover {
            color: var(--blue);
        }

        .site-nav a.active {
            color: var(--navy);
        }

            .site-nav a.active::after {
                content: '';
                position: absolute;
                bottom: -2px;
                left: 0;
                width: 100%;
                height: 2px;
                background: var(--orange);
                border-radius: 2px;
            }

    .site-nav .badge {
        font-size: 0.5rem;
        padding: 0.1rem 0.4rem;
        background: var(--orange);
        color: white;
        border-radius: 50px;
        font-weight: 600;
        margin-left: 4px;
    }

/* ─── NAV ACTIONS ─── */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* ─── MOBILE RESPONSIVE ─── */
@media (max-width: 992px) {
    .header-inner {
        flex-wrap: wrap;
        min-height: 68px;
    }

    .site-nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 68px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 15px 16px 20px;
        background: var(--navy);
        border-radius: 0 0 12px 12px;
        box-shadow: var(--shadow-lg);
        z-index: 100;
        flex: none;
        justify-content: flex-start;
    }

        .site-nav.is-open {
            display: flex;
        }

        .site-nav a {
            padding: 13px 5px;
            color: rgba(255, 255, 255, 0.8);
            text-transform: uppercase;
            font-size: 13px;
        }

            .site-nav a:hover {
                color: #fff;
            }

            .site-nav a.active {
                color: #fff;
            }

                .site-nav a.active::after {
                    background: var(--orange);
                }

    .menu-toggle {
        display: block;
    }

    .nav-actions {
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .brand img {
        width: 42px;
        height: 42px;
    }

    .brand strong {
        font-size: 14px;
    }

    .brand small {
        font-size: 7px;
    }

    .nav-actions .btn span {
        display: none;
    }

    .nav-actions .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .brand img {
        width: 32px;
        height: 32px;
    }

    .brand strong {
        font-size: 11px;
        letter-spacing: .1em;
    }

    .brand small {
        display: none;
    }

    .nav-actions .btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.6rem;
    }

        .nav-actions .btn i {
            font-size: 0.7rem;
        }
}
/* ============================================================
   FOOTER / SITE FOOTER
   ============================================================ */
.site-footer {
    padding: 55px 0 20px;
    background: #071b48;
    color: #d8e7f3;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

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

.footer-brand-col {
    max-width: 400px;
}

.brand-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

    .brand-footer img {
        width: 48px;
        height: 48px;
        object-fit: contain;
        background: #fff;
        border-radius: 4px;
    }

    .brand-footer strong {
        font-size: 16px;
        letter-spacing: .2em;
        color: #fff;
    }

.footer-description {
    color: #9eb6c8;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-column h4 {
    font-size: 13px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-column ul li {
        margin-bottom: 8px;
    }

        .footer-column ul li a {
            color: #9eb6c8;
            font-size: 13px;
            text-decoration: none;
            transition: color 0.3s ease;
            display: inline-block;
        }

            .footer-column ul li a:hover {
                color: #fff;
            }

/* Footer Contact */
.footer-contact p {
    margin: 6px 0;
    color: #9eb6c8;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--orange);
    width: 18px;
    font-size: 13px;
    text-align: center;
}

.footer-contact a {
    color: #9eb6c8;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .footer-contact a:hover {
        color: #fff;
    }

/* Footer Social */
.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

    .footer-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.06);
        border-radius: 50%;
        color: rgba(255, 255, 255, 0.6);
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.06);
        text-decoration: none;
        font-size: 14px;
    }

        .footer-social a:hover {
            background: var(--orange);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(241, 90, 41, 0.3);
            border-color: var(--orange);
        }

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #8ca6bb;
    font-size: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

    .footer-bottom span {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .footer-bottom a {
        color: #8ca6bb;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-bottom a:hover {
            color: #fff;
        }

/* ============================================================
   FOOTER RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .footer-description {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-brand-col {
        text-align: center;
    }

    .brand-footer {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-column h4 {
        text-align: center;
    }

    .footer-column ul li {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

        .footer-bottom span {
            flex-wrap: wrap;
            justify-content: center;
        }
}

@media (max-width: 576px) {
    .site-footer {
        padding: 30px 0 15px;
    }

    .footer-grid {
        gap: 20px;
    }

    .brand-footer img {
        width: 36px;
        height: 36px;
    }

    .brand-footer strong {
        font-size: 14px;
    }

    .footer-description {
        font-size: 12px;
    }

    .footer-contact p {
        font-size: 12px;
    }

    .footer-column h4 {
        font-size: 12px;
    }

    .footer-column ul li a {
        font-size: 12px;
    }

    .footer-social a {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .footer-bottom {
        font-size: 10px;
    }
}