/* Shared stylesheet extracted from the original page. */
:root {
    --orange: #E85D04;
    --orange2: #F48C06;
    --dark: #1A1A1A;
    --dark2: #2C2C2C;
    --gray: #6B7280;
    --light-gray: #F4F4F4;
    --border: #E5E7EB;
    --white: #FFFFFF;
    --blue-accent: #0F4C81;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: #fff;
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body,
p,
span,
h1,
h2,
h3,
h4,
a,
li,
button,
input,
textarea {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.reveal {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.reveal.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.topbar {
    background: var(--dark);
    color: #ccc;
    font-size: 13px;
    padding: 8px 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px 12px;
    font-family: 'Open Sans', sans-serif;
}

.topbar-left {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    align-items: center;
}

.topbar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}

.topbar-left span svg {
    opacity: 0.7;
    flex-shrink: 0;
}

.topbar-right {
    display: flex;
    gap: 10px;
    align-items: center;
}

.topbar-right a {
    color: #aaa;
    text-decoration: none;
    width: 28px;
    height: 28px;
    border: 1px solid #444;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.2s;
}

.topbar-right a:hover {
    color: var(--orange);
    border-color: var(--orange);
}

nav {
    background: var(--white);
    border-bottom: 3px solid var(--orange);
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    gap: 12px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.main-logo {
    height: 75px;
    width: auto;
    object-fit: contain;
    max-width: 180px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 10px 14px;
    position: relative;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    border: 1px solid transparent;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--orange);
    transform: translateX(-50%);
    transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange2) 100%);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(232, 93, 4, 0.16);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 60%;
    background: #fff;
}

.btn-nav-quote {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.btn-nav-quote:hover {
    background: var(--orange2);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .btn-nav-quote {
        display: none;
    }

    .topbar-right,
    .topbar-left {
        display: none;
    }

    nav {
        padding: 0 18px;
        height: 72px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 72px;
        right: 0;
        width: min(88vw, 320px);
        height: calc(100vh - 72px);
        background: linear-gradient(180deg, #ffffff 0%, #fff8f2 100%);
        backdrop-filter: blur(14px);
        box-shadow: -12px 0 30px rgba(0, 0, 0, 0.16);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 24px 20px;
        gap: 8px;
        transform: translateX(110%);
        transition: transform 0.3s ease;
        z-index: 1200;
        border-left: 1px solid rgba(232, 93, 4, 0.14);
    }

    .nav-links.mobile-open {
        display: flex;
        transform: translateX(0);
    }

    .nav-links a {
        width: 100%;
        padding: 12px 14px;
        font-size: 14px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        color: var(--dark);
        border-radius: 12px;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: #fff;
        padding-left: 16px;
    }

    .nav-links a::after {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: 10px;
    background: rgba(232, 93, 4, 0.08);
    transition: background 0.2s ease;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--orange);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.active {
    background: rgba(232, 93, 4, 0.14);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1090;
    opacity: 0;
    pointer-events: none;
    display: none;
    transition: opacity 0.25s ease;
}

body.mobile-menu-open .mobile-nav-overlay {
    display: block;
    opacity: 1;
}

.hero {
    min-height: 88vh;
    background: linear-gradient(105deg, #1A1A1A 0%, #2C2C2C 40%, #111 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(232, 93, 4, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(232, 93, 4, 0.07) 1px, transparent 1px);
    background-size: 48px 48px;
}

.hero-gradient {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 55%;
    background: linear-gradient(135deg, rgba(232, 93, 4, 0.18) 0%, transparent 70%);
}

.hero-orange-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--orange);
}

.hero-content {
    position: relative;
    padding: 40px 60px;
    max-width: 680px;
    z-index: 2;
}

.hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-breadcrumb::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--orange);
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(38px, 5.5vw, 68px);
    line-height: 1.05;
    color: #fff;
    margin-bottom: 8px;
}

.hero h1 .line-orange {
    color: var(--orange);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 36px;
    line-height: 1.6;
    max-width: 520px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-primary,
.btn-ghost,
.btn-white {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--orange);
    color: #fff;
    border: 2px solid var(--orange);
    padding: 14px 32px;
}

.btn-primary:hover {
    background: var(--orange2);
    border-color: var(--orange2);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 14px 32px;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #fff;
}

.hero-stats {
    display: flex;
    gap: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 36px;
}

.hero-stat .num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 38px;
    color: var(--orange);
    line-height: 1;
}

.hero-stat .label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 4px;
}

.trust-bar {
    background: var(--orange);
    padding: 0 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item:last-child {
    border-right: none;
}

.trust-item svg {
    flex-shrink: 0;
    opacity: 0.9;
}

.trust-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.trust-item p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 2px;
}

section {
    padding: 90px 60px;
}

section[id],
.product-detail[id] {
    scroll-margin-top: 110px;
}

@media (max-width: 768px) {
    section[id],
    .product-detail[id] {
        scroll-margin-top: 90px;
    }

    .hero-stats {
        gap: 18px;
        padding-top: 24px;
        flex-wrap: wrap;
    }

    .hero-stat .num {
        font-size: 24px;
    }

    .hero-stat .label {
        font-size: 10px;
        letter-spacing: 1px;
    }
}

.accessories-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.accessory-card {
    background: linear-gradient(145deg, #fff 0%, #f8fafc 100%);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.accessory-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(232, 93, 4, 0.25);
}

.acc-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(232, 93, 4, 0.1);
    color: var(--orange);
    font-size: 20px;
}

.acc-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}

.acc-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--orange);
    background: rgba(232, 93, 4, 0.08);
}

.why-choose-wrap {
    margin-top: 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.inline-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(232, 93, 4, 0.08);
    color: var(--dark2);
    font-size: 14px;
    font-weight: 600;
}

.detail-footer-note {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
    padding: 18px 24px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(232, 93, 4, 0.08), rgba(15, 76, 129, 0.06));
    color: var(--dark2);
    font-size: 14px;
    font-weight: 600;
}

.detail-footer-note span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-right {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 16px;
    width: min(100%, 420px);
    padding: 0 24px 0 0;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 16px 18px;
    backdrop-filter: blur(6px);
}

.hero-badge h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #fff;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-badge h4 i {
    color: var(--orange);
}

.hero-badge p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 14px;
}

.section-tag::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--orange);
    display: block;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-title span {
    color: var(--orange);
}

.section-desc {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    max-width: 600px;
}

.section-header {
    margin-bottom: 56px;
}

.underline-bar {
    width: 56px;
    height: 4px;
    background: var(--orange);
    margin: 12px 0 20px;
    border-radius: 2px;
}

.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-visual-box {
    background: var(--light-gray);
    border: 1px solid var(--border);
    border-top: 5px solid var(--orange);
    padding: 48px 40px;
    position: relative;
}

.about-visual-box blockquote {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.5;
    margin-bottom: 28px;
}

.about-visual-box blockquote span {
    color: var(--orange);
}

.about-visual-box p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.85;
    margin-bottom: 14px;
}

.about-contact-strip {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.contact-row .icon-circle {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    color: #fff;
    box-shadow: 0 8px 18px rgba(232, 93, 4, 0.18);
}

.contact-row strong {
    font-weight: 700;
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
}

.contact-row span {
    color: var(--gray);
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: var(--dark2);
}

.why-list li i,
.feature-list i,
.spec-list i,
.app-list i {
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(232, 93, 4, 0.12);
    padding: 4px;
    font-size: 11px;
}

.products {
    background: var(--light-gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.product-card:hover .product-top {
    background: var(--orange);
}

.product-top {
    padding: 0;
    overflow: hidden;
    background: transparent;
}

.product-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.product-body {
    padding: 24px;
}

.product-num {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-body p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-details {
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--orange);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-details::after {
    content: '→';
}

.btn-details:hover {
    color: var(--dark);
}

.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.service-card {
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 36px 32px;
    display: flex;
    gap: 24px;
    transition: border-color 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--orange);
    transition: width 0.4s;
}

.service-card:hover {
    border-color: rgba(232, 93, 4, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
}

.service-card:hover::before {
    width: 100%;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(232, 93, 4, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.service-icon i,
.industry-card .i-icon i,
.why-point .wp-icon i,
.cdetail .cd-icon i,
.contact-row .icon-circle i,
.tick i,
.hero-badge h4 i {
    color: var(--orange);
}

.contact-row .icon-circle i {
    color: #fff;
    font-size: 15px;
}

.service-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.75;
}

.industries {
    background: var(--dark);
}

.industries .section-title {
    color: #fff;
}

.industries .section-desc {
    color: rgba(255, 255, 255, 0.5);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.industry-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 32px 16px 24px;
    text-align: center;
    transition: all 0.3s;
    cursor: default;
}

.industry-card:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-4px);
}

.industry-card .i-icon {
    font-size: 38px;
    margin-bottom: 16px;
    display: block;
}

.industry-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

.vision-mission {
    background: var(--light-gray);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.vm-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 5px solid var(--orange);
    border-radius: 6px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}

.vm-card .vm-big {
    position: absolute;
    right: 24px;
    bottom: -20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 120px;
    color: rgba(232, 93, 4, 0.05);
    line-height: 1;
    pointer-events: none;
}

.vm-card .vm-tag {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 12px;
}

.vm-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 26px;
    color: var(--dark);
    margin-bottom: 20px;
}

.vm-card p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    font-style: italic;
}

.why-choose {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.why-left .big-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(32px, 4vw, 52px);
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 24px;
}

.why-left .big-text span {
    color: var(--orange);
}

.why-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-point {
    background: var(--light-gray);
    border: 1px solid var(--border);
    border-left: 4px solid var(--orange);
    border-radius: 4px;
    padding: 20px 18px;
}

.why-point .wp-icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.why-point h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.why-point p {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.5;
}

.cta-banner {
    background: var(--orange);
    padding: 72px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.cta-banner::after {
    content: 'HYDROMEK';
    position: absolute;
    right: -20px;
    bottom: -30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.06);
    letter-spacing: 4px;
    pointer-events: none;
}

.cta-banner h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(24px, 3vw, 40px);
    color: #fff;
    line-height: 1.2;
}

.cta-banner p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}

.btn-white {
    background: #fff;
    color: var(--orange);
    border: 2px solid #fff;
    padding: 16px 40px;
}

.btn-white:hover {
    background: transparent;
    color: #fff;
}

.contact {
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
}

.contact-box {
    background: var(--dark);
    border-radius: 8px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}

.contact-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--orange);
}

.contact-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: #fff;
    margin-bottom: 8px;
}

.contact-box .tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 36px;
}

.cdetail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.cdetail .cd-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(232, 93, 4, 0.15);
    border: 1px solid rgba(232, 93, 4, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.cdetail h4 {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.cdetail p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.cdetail a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.cdetail a:hover {
    color: var(--orange);
}

.contact-tagline {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

.contact-form {
    background: var(--white);
    border-radius: 8px;
    padding: 48px 40px;
    border: 1px solid var(--border);
}

.contact-form h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 6px;
}

.cf-sub {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark2);
    margin-bottom: 7px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border: 1px solid var(--border);
    background: var(--light-gray);
    color: var(--dark);
    padding: 13px 16px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--orange);
    background: #fff;
}

.form-group textarea {
    height: 110px;
    resize: none;
}

.form-group select option {
    background: #fff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

footer {
    background: linear-gradient(180deg, var(--dark2) 0%, #111 100%);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 60px 28px;
}

.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1200;
}

.floating-buttons a {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-buttons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.floating-buttons i {
    font-size: 24px;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.call-btn {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange2) 100%);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand p {
    margin: 16px 0 20px;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
}

.f-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.f-socials a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
}

.f-socials a i {
    font-size: 14px;
    display: inline-block;
}

.f-socials a:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--orange);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.footer-bottom a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--orange);
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .about-grid,
    .contact-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-content {
        padding: 32px 32px 24px;
    }

    .trust-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .topbar {
        padding: 10px 16px;
    }

    .topbar-left {
        gap: 8px 12px;
        width: 100%;
    }

    .topbar-left span {
        font-size: 11px;
        width: 100%;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }
    nav {
        padding: 0 18px;
        height: 72px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 24px 0 40px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .hero-content,
    .hero-right {
        width: 100%;
        padding: 20px 16px 0;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-stats,
    .trust-bar,
    .products-grid,
    .industries-grid,
    .vm-grid,
    .why-points,
    .contact-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-right {
        padding: 20px;
    }

    .hero-badge {
        padding: 16px 18px;
    }

    section,
    .cta-banner,
    footer {
        padding: 56px 16px;
    }

    .product-detail {
        padding: 56px 16px;
    }

    .trust-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 16px 12px;
    }

    .trust-item:last-child {
        border-bottom: none;
    }

    .product-card,
    .service-card,
    .vm-card,
    .contact-box,
    .contact-form,
    .detail-card,
    .why-choose-wrap {
        padding: 20px 16px;
    }

    .about-visual-box,
    .contact-box,
    .contact-form {
        padding: 28px 20px;
    }

    .service-card {
        flex-direction: column;
        gap: 16px;
    }

    .contact-row {
        align-items: flex-start;
        gap: 10px;
    }

    .about-contact-strip {
        gap: 14px;
        margin-top: 24px;
    }

    .about-visual-box blockquote {
        font-size: 18px;
        line-height: 1.45;
    }

    .why-list li {
        align-items: flex-start;
    }

    .product-img {
        height: 180px;
    }

    .accessories-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .detail-footer-note {
        border-radius: 16px;
        padding: 14px 16px;
        gap: 10px;
        font-size: 13px;
    }

    .cta-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-white {
        width: 100%;
        text-align: center;
    }

    .floating-buttons {
        right: 14px;
        bottom: 14px;
        gap: 10px;
    }

    .floating-buttons a {
        width: 50px;
        height: 50px;
    }

    .floating-buttons i {
        font-size: 20px;
    }

    .main-logo {
        height: 60px;
        max-width: 140px;
    }

    .hero h1 {
        font-size: 34px;
        line-height: 1.08;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .hero-btns {
        gap: 12px;
        margin-bottom: 28px;
    }

    .btn-primary,
    .btn-ghost,
    .btn-white {
        width: 100%;
        text-align: center;
        padding: 13px 18px;
    }
}

.product-detail {
    padding: 90px 60px;
    background: linear-gradient(180deg, #fff 0%, var(--light-gray) 100%);
}

.product-detail .section-header {
    margin-bottom: 44px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.detail-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.detail-card.full-width {
    grid-column: 1 / -1;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.card-header i {
    color: var(--orange);
    font-size: 18px;
}

.card-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
}

.feature-list,
.spec-list,
.app-list {
    list-style: none;
    display: grid;
    gap: 12px;
}

.feature-list li,
.spec-list li,
.app-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

.feature-list i,
.spec-list i,
.app-list i {
    color: var(--orange);
    margin-top: 3px;
    flex-shrink: 0;
    display: inline-block;
}

@media (max-width: 1024px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .product-detail {
        padding: 72px 28px;
    }
}

@media (max-width: 768px) {
    .product-detail {
        padding: 64px 20px;
    }

    .detail-card {
        padding: 22px 18px;
    }

    .card-header {
        margin-bottom: 16px;
        gap: 10px;
    }

    .feature-list li,
    .spec-list li,
    .app-list li {
        font-size: 14px;
        line-height: 1.75;
    }

    .detail-footer-note {
        border-radius: 18px;
        padding: 14px 16px;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .topbar {
        padding: 10px 14px;
    }

    .topbar-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .topbar-left span {
        font-size: 10px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-desc {
        font-size: 14px;
    }

    .products-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .detail-grid {
        gap: 16px;
    }

    .product-img {
        height: 160px;
    }

    .contact-row .icon-circle {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .about-visual-box blockquote {
        font-size: 16px;
    }

    .accessory-card {
        padding: 18px 16px;
        gap: 10px;
    }

    .acc-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .acc-name {
        font-size: 15px;
    }

    .detail-footer-note {
        margin-top: 22px;
        gap: 8px;
    }

    .feature-list,
    .spec-list,
    .app-list {
        gap: 10px;
    }
}