:root {
    --orange: #FDB92E;
    --orange-dark: #ffab00;
    --grey: #6f7175;
    --dark: #232323;
    --cream: #f6f2e8;
    --paper: #fffdf8;
    --line: #e6dccb;
    --text: #22252a;
    --muted: #6e7279;
    --shadow: 0 14px 38px rgba(25, 25, 25, .12);
    --radius: 18px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.6
}

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

img {
    max-width: 100%;
    display: block
}

.container {
    width: min(1180px, 92%);
    margin: auto
}

.top-strip {
    background: #2b2b2b;
    color: #eee;
    font-size: 13px
}

.top-strip .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 8px 0
}

.top-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap
}

.top-links a {
    color: #fff;
    opacity: .9
}

.main-header {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
    position: sticky;
    top: 0;
    z-index: 50
}

.brand-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 13px 0
}

.brand img {
    width: 320px;
    max-width: 72vw
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px
}

.mini-card {
    display: flex;
    gap: 14px;
    align-items: center;
    color: #555;
    font-size: 14px;
    transition: color .2s ease
}

.mini-card:hover {
    color: #222
}

.mini-card b {
    display: block;
    color: #222;
    font-size: 17px;
    line-height: 1.1
}

.mini-icon {
    flex: 0 0 45px;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff3e2;
    color: var(--orange)
}

.mini-icon svg {
    height: 20px;
    width: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.4
}

.nav-bar {
    background: var(--orange);
    border-top: 1px solid #ffa63e
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.nav {
    display: flex
}

.nav a {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: .4px;
    padding: 15px 20px;
    border-right: 1px solid rgba(255, 255, 255, .22)
}

.nav a:first-child {
    border-left: 1px solid rgba(255, 255, 255, .22)
}

.nav a:hover,
.nav a.active {
    background: var(--orange-dark)
}

.menu-btn {
    display: none;
    background: #fff;
    color: var(--orange);
    border: 0;
    border-radius: 6px;
    padding: 9px 13px;
    font-size: 21px
}

.search-pill {
    background: #fff;
    color: #777;
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 13px
}

.hero {
    position: relative;
    overflow: hidden;
    background: var(--cream)
}

.hero-slide {
    position: relative;
    min-height: 545px;
    display: grid;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: background-image .35s ease
}

.hero-slide:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(90deg, rgba(255, 253, 248, .5) 0%, rgba(255, 253, 248, .22) 38%, rgba(255, 253, 248, 0) 64%)
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: inherit
}

.hero-content {
    width: min(510px, 48vw)
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #fff;
    color: var(--orange);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    border: 1px solid var(--line)
}

.hero h1 {
    font-size: clamp(37px, 4.6vw, 68px);
    line-height: .96;
    margin: 18px 0 17px;
    color: #262626;
    text-transform: uppercase;
    letter-spacing: 1.5px
}

.hero h1 span {
    color: var(--orange)
}

.hero p {
    font-size: 18px;
    color: #60636a;
    max-width: 510px
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 3px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .4px;
    border: 2px solid transparent;
    cursor: pointer
}

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

.btn-orange:hover {
    background: var(--orange-dark)
}

.btn-dark {
    background: #333;
    color: #fff
}

.btn-outline {
    border-color: var(--orange);
    color: var(--orange);
    background: #fff
}

.dots {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    display: flex;
    gap: 9px
}

.dot {
    height: 11px;
    width: 11px;
    border-radius: 50%;
    background: #c7c0b2;
    border: 0
}

.dot.active {
    background: var(--orange);
    width: 30px;
    border-radius: 50px
}

.section {
    padding: 74px 0
}

.section.white {
    background: #fff
}

.section-title {
    text-align: center;
    margin: 0 auto 38px;
    max-width: 800px
}

.section-title.left {
    text-align: left;
    max-width: none
}

.kicker {
    font-size: 14px;
    color: var(--orange);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px
}

.section-title h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
    margin: 8px 0 12px;
    text-transform: uppercase
}

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

.category-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px
}

.category-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 24px;
    text-align: center;
    transition: .25s;
    position: relative;
    overflow: hidden
}

.category-card:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: var(--orange)
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow)
}

.cat-icon {
    width: 100%;
    aspect-ratio: 1/1;
    margin: 0 auto 20px;
    background: #fefefe;
    overflow: hidden
}

.cat-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.category-card h3 {
    text-transform: uppercase;
    font-size: 18px;
    margin: 0 0 8px
}

.about-wrap {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 45px;
    align-items: center
}

.about-img {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow)
}

.about-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover
}

.who-we-are-img img {
    aspect-ratio: 1402/1122
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 22px
}

.feature {
    background: #fff;
    border: 1px solid var(--line);
    padding: 16px 18px
}

.feature b {
    color: var(--orange);
    font-size: 22px
}

.products-bg {
    background: #fffdf8
}

.products-hero p {
    max-width: 620px;
    margin: 14px 0 0;
    color: #5f6369;
    font-size: 18px
}

.catalog-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 760px;
    margin: -8px auto 28px
}

.catalog-summary div {
    background: #fff;
    border: 1px solid var(--line);
    border-top: 4px solid var(--orange);
    padding: 16px;
    text-align: center
}

.catalog-summary strong {
    display: block;
    color: #252525;
    font-size: 30px;
    line-height: 1
}

.catalog-summary span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase
}

.product-toolbar {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px
}

.filter-btn {
    border: 1px solid var(--line);
    background: #fff;
    color: #565656;
    padding: 10px 17px;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.product-card {
    background: #fff;
    border: 1px solid var(--line);
    transition: .25s;
    position: relative;
    display: flex;
    flex-direction: column
}

.product-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px)
}

.product-img {
    height: 190px;
    background: #f6f2e8;
    display: grid;
    place-items: center;
    overflow: hidden;
    position: relative
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px;
    position: relative;
    z-index: 1;
    transition: transform .25s
}

.product-card:hover .product-img img {
    transform: scale(1.04)
}

.product-img:after {
    content: "";
    position: absolute;
    right: -45px;
    top: 0;
    width: 115px;
    height: 100%;
    background: var(--orange);
    transform: skewX(-17deg);
    opacity: .22
}

.photo-product {
    height: 220px
}

.product-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 10px 12px 0;
    background: #fff
}

.product-thumb {
    height: 54px;
    border: 1px solid var(--line);
    background: #f8f5ec;
    padding: 3px;
    cursor: pointer
}

.product-thumb.active,
.product-thumb:hover {
    border-color: var(--orange)
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.tool-shape {
    width: 130px;
    height: 150px;
    position: relative;
    z-index: 1
}

.tool-shape:before {
    content: "";
    position: absolute;
    left: 48px;
    bottom: 0;
    width: 36px;
    height: 105px;
    border-radius: 6px;
    background: linear-gradient(90deg, #c7c7c7, #fff, #818181, #e5e5e5)
}

.tool-shape:after {
    content: "";
    position: absolute;
    left: 35px;
    top: 5px;
    width: 62px;
    height: 72px;
    background: linear-gradient(90deg, #7c4427, #d98d56, #5d321f);
    clip-path: polygon(50% 0, 100% 100%, 0 100%)
}

.tool-shape.dark:after {
    background: linear-gradient(90deg, #111, #666, #111)
}

.tool-shape.drill:after {
    clip-path: polygon(44% 0, 70% 40%, 98% 100%, 0 100%, 26% 38%)
}

.tool-shape.insert:before {
    width: 86px;
    height: 86px;
    bottom: 35px;
    left: 22px;
    transform: rotate(45deg);
    background: linear-gradient(135deg, #cfcfcf, #fff, #888)
}

.tool-shape.insert:after {
    display: none
}

.product-body {
    padding: 18px;
    flex: 1
}

.product-body h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #252525;
    text-transform: uppercase
}

.product-type {
    display: inline-block;
    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .5px;
    margin-bottom: 8px;
    text-transform: uppercase
}

.product-body p {
    margin: 0 0 15px;
    color: #6b6f76;
    font-size: 14px
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 5px
}

.tag {
    display: inline-block;
    background: #fff3e2;
    color: #c26a00;
    border: 1px solid #ffd8a3;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 800;
    margin: 3px
}

.inquiry-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--line);
    padding: 13px 18px;
    font-weight: 800;
    color: var(--orange)
}

.band {
    background: #2d2d2d;
    color: #fff;
    position: relative;
    overflow: hidden
}

.band:before {
    content: "";
    position: absolute;
    right: -160px;
    top: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(247, 148, 29, .22)
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative
}

.process-card {
    background: #383838;
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 26px
}

.process-card .num {
    font-size: 38px;
    font-weight: 900;
    color: var(--orange);
    line-height: 1
}

.process-card h3 {
    text-transform: uppercase
}

.industries {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px
}

.industry {
    background: #fff;
    padding: 18px;
    text-align: center;
    border: 1px solid var(--line);
    font-weight: 800;
    color: #444
}

.contact-strip {
    background: var(--orange);
    color: #fff
}

.contact-strip .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 38px 0
}

.contact-strip h2 {
    font-size: 33px;
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase
}

.contact-page {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 30px
}

.info-box,
.form-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 28px;
    box-shadow: var(--shadow)
}

.info-box {
    display: flex;
    flex-direction: column
}

.info-line {
    display: flex;
    gap: 14px;
    margin-bottom: 18px
}

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

.field {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.field.full {
    grid-column: 1/-1
}

.field label {
    font-weight: 800;
    font-size: 13px;
    color: #555;
    text-transform: uppercase
}

.field input,
.field select,
.field textarea {
    border: 1px solid #ddd;
    padding: 13px 12px;
    border-radius: 2px;
    font: inherit;
    background: #fff
}

.field textarea {
    min-height: 120px;
    resize: vertical
}

.footer {
    background: #222;
    color: #d8d8d8;
    padding: 48px 0 18px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 28px
}

.footer-brand p {
    margin-top: 18px
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    /* background: #fff; */
    border-radius: 4px;
    padding: 12px 16px;
    max-width: 300px
}

.footer-logo img {
    width: 260px;
    max-width: 100%;
    height: auto
}

.footer h3,
.footer h4 {
    color: #fff;
    margin-top: 0;
    text-transform: uppercase
}

.footer a {
    display: block;
    color: #d8d8d8;
    margin: 8px 0
}

.footer a:hover {
    color: var(--orange)
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 32px;
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 13px
}

.floating-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.float-btn {
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18)
}

.float-btn svg {
    width: 28px;
    height: 28px;
    fill: currentColor
}

.float-btn.call {
    background: var(--orange)
}

.page-hero {
    background-color: #f6f2e8;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 300px;
    display: grid;
    align-items: center;
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 253, 248, .86) 0%, rgba(255, 253, 248, .58) 38%, rgba(255, 253, 248, .08) 74%);
    pointer-events: none
}

.page-hero .container {
    position: relative;
    z-index: 1
}

.about-hero {
    background-image: url('../banner/about.png')
}

.contact-hero {
    background-image: url('../banner/contact_us.png')
}

.products-hero {
    background-image: url('../banner/product.png')
}

.page-hero h1 {
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1;
    margin: 0;
    text-transform: uppercase
}

.breadcrumb {
    font-weight: 800;
    color: var(--orange);
    text-transform: uppercase
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 18px
}

.modal.active {
    display: flex
}

.modal-box {
    background: #fff;
    max-width: 560px;
    width: 100%;
    padding: 26px;
    position: relative;
    border-top: 6px solid var(--orange)
}

.close-modal {
    position: absolute;
    right: 14px;
    top: 10px;
    background: transparent;
    border: 0;
    font-size: 30px;
    cursor: pointer
}

.mini-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.mini-product {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line)
}

.mini-thumb {
    height: 60px;
    width: 60px;
    background: #f6f2e8;
    border-radius: 50%;
    position: relative
}

.mini-thumb:before {
    content: "";
    position: absolute;
    left: 26px;
    top: 8px;
    width: 12px;
    height: 44px;
    background: linear-gradient(90deg, #bbb, #fff, #888)
}

.mini-thumb:after {
    content: "";
    position: absolute;
    left: 20px;
    top: 4px;
    width: 24px;
    height: 28px;
    background: var(--orange);
    clip-path: polygon(50% 0, 100% 100%, 0 100%)
}

.requirement-visual {
    /* flex: 1;
    min-height: 255px;
    margin-top: 18px;
    border: 1px solid var(--line);
    overflow: hidden;
    background: #202020 */
    display: flex;
    justify-content: center;
}

.requirement-visual img {
    display: block;
    width: 84%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

@media (max-width:980px) {
    .header-actions {
        display: none
    }

    .hero-grid,
    .about-wrap,
    .contact-page {
        grid-template-columns: 1fr
    }

    .category-row,
    .product-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .catalog-summary {
        grid-template-columns: repeat(3, 1fr)
    }

    .industries {
        grid-template-columns: repeat(3, 1fr)
    }

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

    .mini-products {
        grid-template-columns: 1fr 1fr
    }

    .requirement-visual {
        min-height: 280px
    }

    .search-pill {
        display: none
    }
}

@media (max-width:720px) {

    .top-strip .container,
    .brand-row,
    .contact-strip .container,
    .copyright {
        flex-direction: column;
        text-align: center
    }

    .brand-row {
        align-items: center
    }

    .menu-btn {
        display: block;
        margin: 9px 0
    }

    .nav-inner {
        flex-direction: column
    }

    .nav {
        display: none;
        flex-direction: column;
        width: 100%
    }

    .nav.open {
        display: flex
    }

    .nav a {
        border: 0;
        border-top: 1px solid rgba(255, 255, 255, .22);
        text-align: center
    }

    .hero-slide {
        min-height: 470px;
        padding: 38px 0;
        background-position: left center
    }

    .hero-content {
        width: min(520px, 86vw)
    }

    .page-hero {
        min-height: 220px
    }

    .page-hero::before {
        background: linear-gradient(90deg, rgba(255, 253, 248, .92) 0%, rgba(255, 253, 248, .74) 54%, rgba(255, 253, 248, .28) 100%)
    }

    .category-row,
    .product-grid,
    .process-grid,
    .feature-grid,
    .industries,
    .form-grid,
    .footer-grid,
    .catalog-summary,
    .mini-products {
        grid-template-columns: 1fr
    }

    .product-img,
    .photo-product {
        height: 210px
    }

    .section {
        padding: 50px 0
    }

    .floating-actions {
        left: 14px;
        right: 14px;
        bottom: 12px;
        flex-direction: row;
        justify-content: center
    }

    .brand img {
        width: 270px
    }

    .footer-logo {
        justify-content: center;
        margin: 0 auto
    }

    .requirement-visual {
        min-height: 220px
    }
}
