/* ===================================================================
   LX Touch WordPress Theme — Main Stylesheet
   =================================================================== */

/* -------------------------------------------------------------------
   Custom Properties
   ------------------------------------------------------------------- */
:root {
    --clr-dark:      #081b33;
    --clr-dark-2:    #0d2a4d;
    --clr-dark-3:    #15406f;
    --clr-brand:     #f17000;
    --clr-brand-h:   #ff8c1a;
    --clr-accent:    #00b4d8;
    --clr-text:      #1e293b;
    --clr-muted:     #64748b;
    --clr-border:    #e2e8f0;
    --clr-surface:   #f8fafc;
    --clr-white:     #ffffff;

    --font-sans:     "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
    --font-heading:  "Inter", "Segoe UI", system-ui, sans-serif;

    --radius:        8px;
    --radius-lg:     16px;
    --shadow-sm:     0 2px 8px rgba(0,0,0,.06);
    --shadow-md:     0 8px 32px rgba(0,0,0,.10);
    --shadow-lg:     0 20px 60px rgba(0,0,0,.14);

    --header-h:      76px;
    --topbar-h:      36px;
    --transition:    0.3s cubic-bezier(.4,0,.2,1);
}

/* -------------------------------------------------------------------
   Reset & Base
   ------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-sans);
    color: var(--clr-text);
    background: var(--clr-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; height: auto; }

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

ul { list-style: none; }

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* -------------------------------------------------------------------
   Utility
   ------------------------------------------------------------------- */
.container {
    width: min(1240px, 94%);
    margin: 0 auto;
}

.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-brand);
    margin-bottom: 10px;
}

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 52px;
}

.section-head h2 {
    font-size: clamp(26px, 3.5vw, 40px);
    color: var(--clr-dark);
    margin-bottom: 12px;
}

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

.section-foot { text-align: center; margin-top: 44px; }

/* -------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--clr-brand);
    color: var(--clr-white);
    border-color: var(--clr-brand);
}
.btn--primary:hover {
    background: var(--clr-brand-h);
    border-color: var(--clr-brand-h);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--clr-white);
    border-color: rgba(255,255,255,.6);
}
.btn--outline:hover {
    background: rgba(255,255,255,.12);
    border-color: var(--clr-white);
}

.btn--ghost {
    background: transparent;
    color: var(--clr-brand);
    border-color: var(--clr-brand);
}
.btn--ghost:hover {
    background: var(--clr-brand);
    color: var(--clr-white);
}

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

/* -------------------------------------------------------------------
   Grid
   ------------------------------------------------------------------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* -------------------------------------------------------------------
   Topbar
   ------------------------------------------------------------------- */
.topbar {
    background: #f3f3f3;
    color: #565656;
    font-size: 13px;
    height: 48px;
    border-bottom: 1px solid #ececec;
}
.topbar__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 100%;
}
.topbar__inner a { color: inherit; }
.topbar__inner a:hover { color: var(--clr-white); }

/* -------------------------------------------------------------------
   Header
   ------------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    box-shadow: none;
    border-bottom: 1px solid #ececec;
    height: 92px;
    overflow: visible;
}

.header__inner {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 100%;
    overflow: visible;
}

/* Logo */
.site-branding { flex-shrink: 0; }
.site-branding img { max-height: 48px; width: auto; }
.site-title-link {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--clr-white);
    text-transform: uppercase;
}

/* Nav */
.main-navigation { margin-left: auto; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu > li { position: relative; }

.main-navigation,
.main-navigation .nav-menu,
.main-navigation .nav-menu > li {
    overflow: visible;
}
.nav-menu > li > a {
    display: block;
    padding: 9px 8px;
    font-size: 14px;
    font-weight: 500;
    color: #111;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current_page_item > a {
    color: #2f67d9;
    background: transparent;
}

/* Dropdown */
.nav-menu .sub-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #f3f3f3;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0,0,0,.08);
    padding: 8px 0;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
/* Bridge pseudo-element fills the pixel gap so hover isn't lost moving to dropdown */
.nav-menu > li.menu-item-has-children > .sub-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
}
.nav-menu > li.menu-item-has-children:hover > .sub-menu,
.nav-menu > li.menu-item-has-children:focus-within > .sub-menu,
.nav-menu > li.menu-item-has-children.is-open > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.nav-menu .sub-menu li a {
    display: block;
    padding: 11px 18px;
    font-size: 15px;
    color: #333;
    font-weight: 500;
    transition: background var(--transition), color var(--transition);
}
.nav-menu .sub-menu li a:hover { background: #e9edf7; color: #2f67d9; }

.nav-menu .sub-menu--products {
    width: 240px;
    min-width: 240px;
    padding: 6px 0;
    display: block;
    background: #f3f3f3;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0,0,0,.08);
    position: absolute;
    left: 0;
    transform: none;
}

.nav-menu .sub-menu--products .sub-menu__overview {
    display: none;
}

.nav-menu .sub-menu--products .sub-menu__group {
    position: relative;
}

.nav-menu .sub-menu--products .sub-menu__group-link {
    display: block;
    padding: 11px 34px 11px 14px;
    font-size: 15px;
    color: #333;
    font-weight: 500;
    white-space: nowrap;
    line-height: 1.2;
    position: relative;
}

.nav-menu .sub-menu--products .sub-menu__group--has-children > .sub-menu__group-link::after {
    content: '\203A';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #666;
}

.nav-menu .sub-menu--products .sub-menu__group-link:hover {
    color: #2f67d9;
    background: #e9edf7;
}

.nav-menu .sub-menu--products .sub-menu__children {
    position: absolute;
    left: calc(100% + 8px);
    top: -8px;
    min-width: 280px;
    padding: 8px 0;
    margin: 0;
    background: #f3f3f3;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0,0,0,.08);
    display: none;
    z-index: 220;
}

.nav-menu .sub-menu--products .sub-menu__group:hover > .sub-menu__children,
.nav-menu .sub-menu--products .sub-menu__group:focus-within > .sub-menu__children {
    display: block;
}

.nav-menu .sub-menu--products .sub-menu__children a {
    padding: 11px 14px;
    font-size: 15px;
    color: #333;
    white-space: nowrap;
    display: block;
}

.nav-menu .sub-menu--products .sub-menu__children a:hover {
    color: #2f67d9;
    background: #e9edf7;
}

/* Keep only one header on mirror pages: hide mirrored raw header block in content */
body.lx-mirror-page .site-content [package-block-type="header"],
body.lx-mirror-page .site-content .header-position {
    display: none !important;
}

/* Header CTA */
.header-cta { margin-left: 16px; padding: 10px 20px; font-size: 14px; }

/* Mobile toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
}
.burger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-white);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.menu-toggle.is-open .burger:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open .burger:nth-child(2) { opacity: 0; }
.menu-toggle.is-open .burger:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
    background: #fff;
    border-top: 1px solid #ececec;
    padding: 12px 0 16px;
}
.mobile-nav .mobile-menu li a {
    display: block;
    padding: 11px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    border-bottom: 1px solid #f0f0f0;
}
.mobile-nav .mobile-menu li a:hover { background: #f5f6fa; color: #2f67d9; }

.mobile-nav .mobile-menu .sub-menu {
    padding-left: 14px;
    border-left: 1px solid #e6e9f1;
}

.mobile-nav .mobile-menu .sub-menu .sub-menu {
    padding-left: 12px;
    margin-top: 4px;
}

.mobile-nav .mobile-menu .sub-menu a {
    font-size: 14px;
    font-weight: 500;
    color: #4a4f59;
}

/* -------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 85% 18%, rgba(241,112,0,.24) 0, rgba(241,112,0,0) 32%),
        linear-gradient(130deg, var(--clr-dark) 0%, var(--clr-dark-3) 100%);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10,25,41,.92) 0%,
        rgba(10,25,41,.70) 60%,
        rgba(10,25,41,.40) 100%
    );
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    padding: 80px 0 80px;
}

.hero__content { max-width: 640px; }

.hero__title {
    font-size: clamp(32px, 5vw, 60px);
    color: var(--clr-white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero__title span { color: var(--clr-brand); }

.hero__desc {
    font-size: 17px;
    color: rgba(255,255,255,.80);
    margin-bottom: 36px;
    max-width: 52ch;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero badge cards */
.hero__badge-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero__badge {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 18px 24px;
    color: var(--clr-white);
    min-width: 180px;
    text-align: center;
}

.hero__badge-num {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--clr-brand);
    margin-bottom: 4px;
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.hero__scroll span {
    display: block;
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,.4);
    border-radius: 12px;
    position: relative;
}
.hero__scroll span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,.6);
    border-radius: 2px;
    animation: scroll-dot 1.6s ease-in-out infinite;
}
@keyframes scroll-dot { 0%,100% { opacity: 1; top: 6px; } 50% { opacity: 0; top: 18px; } }

/* -------------------------------------------------------------------
   Stats Bar
   ------------------------------------------------------------------- */
.stats-bar {
    background: linear-gradient(180deg, #0f2f55 0%, #0b2443 100%);
    padding: 44px 0;
}

.stats-bar__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,.08);
    color: var(--clr-white);
}
.stat-item:last-child { border-right: none; }

.stat-item svg { color: var(--clr-brand); margin-bottom: 4px; }

.stat-item__num {
    font-size: 40px;
    font-weight: 800;
    color: var(--clr-brand);
    line-height: 1;
}

.stat-item span { font-size: 14px; color: rgba(255,255,255,.65); font-weight: 500; }

/* -------------------------------------------------------------------
   Section Common
   ------------------------------------------------------------------- */
.section { padding: 88px 0; }

.alt-bg { background: var(--clr-surface); }

.link-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--clr-brand);
    margin-top: 12px;
    transition: gap var(--transition);
}
.link-more:hover { gap: 10px; }

/* -------------------------------------------------------------------
   Services
   ------------------------------------------------------------------- */
.service-card {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.service-card__img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card__icon {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d2745, #174777);
    color: var(--clr-brand);
}

.service-card__body { padding: 22px; }

.service-card__body h3 {
    font-size: 18px;
    color: var(--clr-dark);
    margin-bottom: 10px;
}

.service-card__body p { color: var(--clr-muted); font-size: 14px; }

/* -------------------------------------------------------------------
   Products
   ------------------------------------------------------------------- */
.products { background: var(--clr-white); }

/* Filter tabs */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
    justify-content: center;
}

.filter-tab {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    border: 1.5px solid var(--clr-border);
    border-radius: 999px;
    background: var(--clr-white);
    color: var(--clr-muted);
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.filter-tab:hover,
.filter-tab.is-active {
    background: var(--clr-brand);
    border-color: var(--clr-brand);
    color: var(--clr-white);
}

/* Product card */
.product-card {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.product-card__img-link {
    position: relative;
    display: block;
    overflow: hidden;
}

.card__img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .card__img { transform: scale(1.05); }

.product-card__hover-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10,25,41,.55);
    color: var(--clr-white);
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transition: opacity var(--transition);
}
.product-card:hover .product-card__hover-btn { opacity: 1; }

.product-card__body { padding: 16px 18px 20px; flex: 1; }

.product-card__cat {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-brand);
    display: block;
    margin-bottom: 6px;
}

.product-card__body h3 { font-size: 16px; color: var(--clr-dark); margin-bottom: 8px; }
.product-card__body h3 a:hover { color: var(--clr-brand); }
.product-card__body p { font-size: 13px; color: var(--clr-muted); }

/* -------------------------------------------------------------------
   About
   ------------------------------------------------------------------- */
.about { background: var(--clr-white); }

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about__image-wrap { position: relative; }

.about__image-wrap img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about__img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--clr-dark);
}
.about__img-placeholder svg { width: 100%; height: 100%; }

.about__badges {
    position: absolute;
    bottom: -20px;
    right: -20px;
    display: flex;
    gap: 12px;
}

.about__badge {
    background: var(--clr-brand);
    color: var(--clr-white);
    border-radius: var(--radius);
    padding: 14px 18px;
    text-align: center;
    box-shadow: var(--shadow-md);
    min-width: 110px;
}
.about__badge strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}
.about__badge span { font-size: 12px; opacity: .9; }

.about__content { padding-left: 20px; }
.about__content h2 {
    font-size: clamp(26px, 3vw, 38px);
    color: var(--clr-dark);
    margin-bottom: 18px;
}
.about__content > p { color: var(--clr-muted); margin-bottom: 24px; }

.about__checklist { margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.about__checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--clr-text);
}
.about__checklist li::before {
    content: '✓';
    width: 22px;
    height: 22px;
    background: rgba(232,93,4,.12);
    color: var(--clr-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

/* -------------------------------------------------------------------
   Cases
   ------------------------------------------------------------------- */
.case-card {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.case-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.case-card__img-link {
    position: relative;
    display: block;
    overflow: hidden;
}

.case-card__img-link .card__img {
    height: 220px;
    transition: transform 0.5s ease;
}
.case-card:hover .card__img { transform: scale(1.05); }

.case-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,25,41,.55);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    font-weight: 600;
    font-size: 14px;
    opacity: 0;
    transition: opacity var(--transition);
}
.case-card:hover .case-card__overlay { opacity: 1; }

.case-card__body { padding: 18px; }
.case-card__body h3 { font-size: 17px; color: var(--clr-dark); margin-bottom: 8px; }
.case-card__body h3 a:hover { color: var(--clr-brand); }
.case-card__body p { font-size: 14px; color: var(--clr-muted); }

/* -------------------------------------------------------------------
   News
   ------------------------------------------------------------------- */
.news-card {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.news-card__img-link img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.news-card:hover .news-card__img-link img { transform: scale(1.04); }

.news-card__body { padding: 18px 20px 22px; }

.news-card__date {
    font-size: 12px;
    color: var(--clr-muted);
    display: block;
    margin-bottom: 8px;
}

.news-card__body h3 { font-size: 17px; color: var(--clr-dark); margin-bottom: 10px; }
.news-card__body h3 a:hover { color: var(--clr-brand); }
.news-card__body p { font-size: 14px; color: var(--clr-muted); margin-bottom: 4px; }

/* -------------------------------------------------------------------
   Contact Section
   ------------------------------------------------------------------- */
.contact-section {
    background: linear-gradient(135deg, #07192d 0%, #0e2f53 100%);
    color: var(--clr-white);
}

.contact-section .eyebrow { color: var(--clr-brand); }

.contact-section__inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: start;
}

.contact-section__info h2 {
    font-size: clamp(26px, 3vw, 38px);
    color: var(--clr-white);
    margin-bottom: 16px;
}

.contact-section__info > p { color: rgba(255,255,255,.70); margin-bottom: 30px; }

.contact-info-list { display: flex; flex-direction: column; gap: 14px; }
.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: rgba(255,255,255,.75);
}
.contact-info-list li svg { flex-shrink: 0; color: var(--clr-brand); margin-top: 2px; }
.contact-info-list li a { color: rgba(255,255,255,.75); }
.contact-info-list li a:hover { color: var(--clr-white); }

/* Form */
.contact-section__form {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.lx-form { display: flex; flex-direction: column; gap: 18px; }

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

.lx-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--clr-text);
}

.lx-form input,
.lx-form textarea,
.lx-form select {
    width: 100%;
    margin-top: 6px;
    padding: 11px 14px;
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius);
    font: inherit;
    font-size: 14px;
    color: var(--clr-text);
    background: var(--clr-white);
    transition: border-color var(--transition);
}
.lx-form input:focus,
.lx-form textarea:focus,
.lx-form select:focus {
    outline: none;
    border-color: var(--clr-brand);
}

.lx-form__success {
    color: #15803d;
    background: #dcfce7;
    border: 1px solid #bbf7d0;
    border-radius: var(--radius);
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
}

/* CF7 overrides */
.wpcf7-form .wpcf7-form-control-wrap { display: block; margin-top: 6px; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius);
    font: inherit;
    font-size: 14px;
    transition: border-color var(--transition);
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus { outline: none; border-color: var(--clr-brand); }
.wpcf7-submit {
    width: 100%;
    padding: 13px;
    background: var(--clr-brand);
    color: var(--clr-white);
    border: none;
    border-radius: var(--radius);
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition);
}
.wpcf7-submit:hover { background: var(--clr-brand-h); }

/* -------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------- */
.site-footer { background: var(--clr-dark); color: rgba(255,255,255,.75); }

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding: 64px 0 48px;
}

.footer__brand .footer-logo-text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-white);
    display: block;
    margin-bottom: 14px;
}
.footer__brand img { max-height: 44px; margin-bottom: 14px; filter: brightness(2); }
.footer__brand p { font-size: 14px; line-height: 1.7; }

.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.65);
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.footer__social a:hover { background: var(--clr-brand); border-color: var(--clr-brand); color: var(--clr-white); }

.footer__col h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.footer-menu { display: flex; flex-direction: column; gap: 9px; }
.footer-menu li a {
    font-size: 14px;
    color: rgba(255,255,255,.65);
    transition: color var(--transition), padding-left var(--transition);
}
.footer-menu li a:hover { color: var(--clr-white); padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}
.footer-contact li svg { flex-shrink: 0; color: var(--clr-brand); margin-top: 2px; }
.footer-contact li a { color: rgba(255,255,255,.65); }
.footer-contact li a:hover { color: var(--clr-white); }

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 18px 0;
}
.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: rgba(255,255,255,.4);
}
.footer__bottom-inner a { color: rgba(255,255,255,.4); }
.footer__bottom-inner a:hover { color: rgba(255,255,255,.8); }

/* -------------------------------------------------------------------
   Inner Pages
   ------------------------------------------------------------------- */
.page-banner {
    background: linear-gradient(135deg, var(--clr-dark), var(--clr-dark-3));
    padding: 60px 0 50px;
    text-align: center;
    color: var(--clr-white);
}
.page-banner h1 { font-size: clamp(28px, 4vw, 46px); color: var(--clr-white); margin-bottom: 10px; }
.page-banner .breadcrumb { color: rgba(255,255,255,.55); font-size: 14px; }
.page-banner .breadcrumb a { color: rgba(255,255,255,.55); }
.page-banner .breadcrumb a:hover { color: var(--clr-white); }

.content-area { padding: 72px 0; }

.content-main { max-width: 860px; }

.prose h2,
.prose h3,
.prose h4 { margin: 1.5em 0 .6em; color: var(--clr-dark); }
.prose p,
.prose ul,
.prose ol { margin-bottom: 1em; color: var(--clr-muted); line-height: 1.75; }
.prose ul { list-style: disc; padding-left: 1.4em; }
.prose ol { list-style: decimal; padding-left: 1.4em; }
.prose img { border-radius: var(--radius); margin: 1.4em 0; }

/* Single product */
.single-product-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.single-product__gallery img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.single-product__info h1 { font-size: clamp(24px, 3vw, 36px); color: var(--clr-dark); margin-bottom: 16px; }
.single-product__info .cat-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(232,93,4,.10);
    color: var(--clr-brand);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.product-meta { margin-top: 28px; }
.product-meta__item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--clr-border);
    font-size: 14px;
}
.product-meta__item span:first-child { font-weight: 600; color: var(--clr-text); }
.product-meta__item span:last-child { color: var(--clr-muted); }

/* Archive grid */
.archive-grid { padding: 72px 0; }
.archive-header { margin-bottom: 40px; }
.archive-header h1 { font-size: clamp(26px, 3vw, 38px); color: var(--clr-dark); }

/* -------------------------------------------------------------------
   Mirror Product Page (Reference Match)
   ------------------------------------------------------------------- */
body.page-id-926 .topbar,
body.page-id-926 .site-header {
    box-shadow: none;
    color: #3a3a3a;
}

body.page-id-926 .topbar { background: #f3f3f3; }

body.page-id-926 .site-header { background: #fff; }

body.page-id-926 .topbar {
    height: 48px;
    font-size: 14px;
    border-bottom: 1px solid #ececec;
}

body.page-id-926 .topbar__inner {
    height: 100%;
    justify-content: flex-start;
}

body.page-id-926 .topbar__promo {
    color: #565656;
    font-weight: 500;
}

body.page-id-926 .site-header {
    height: 92px;
    position: relative;
    border-bottom: 1px solid #ececec;
}

body.page-id-926 .header__inner {
    height: 100%;
    gap: 24px;
}

body.page-id-926 .site-branding img {
    max-height: 68px;
}

body.page-id-926 .main-navigation {
    margin-left: auto;
    width: 100%;
}

body.page-id-926 .nav-menu {
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 2px;
}

body.page-id-926 .nav-menu > li > a {
    color: #111;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    padding: 9px 8px;
    background: transparent;
    white-space: nowrap;
}

body.page-id-926 .nav-menu > li > a:hover,
body.page-id-926 .nav-menu > li > a.is-current {
    color: #2f67d9;
    background: transparent;
}

body.page-id-926 .nav-menu > li.menu-item-has-children > a {
    padding-bottom: 16px;
    margin-bottom: -8px;
}

body.page-id-926 .nav-menu .sub-menu {
    top: calc(100% - 2px);
    background: #f3f3f3;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0,0,0,.08);
}

body.page-id-926 .nav-menu .sub-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

body.page-id-926 .nav-menu .sub-menu li a {
    color: #333;
    font-size: 15px;
    font-weight: 500;
    padding: 11px 18px;
}

body.page-id-926 .nav-menu .sub-menu li a:hover {
    background: #e9edf7;
}

body.page-id-926 .archive-grid {
    padding: 32px 0 72px;
    background: #f5f5f5;
}

body.page-id-926 .lx-ref-products__head {
    margin-bottom: 24px;
}

body.page-id-926 .lx-ref-products__head h1 {
    color: #2f323a;
    font-size: clamp(40px, 4.2vw, 56px);
    margin-bottom: 10px;
    letter-spacing: -.02em;
    line-height: 1.06;
}

body.page-id-926 .lx-ref-products__head p {
    color: #5e6168;
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 10px;
    max-width: 1220px;
}

body.page-id-926 .lx-ref-products__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 20px;
    align-items: start;
}

body.page-id-926 .lx-ref-products__main {
    min-width: 0;
}

body.page-id-926 .filter-tabs,
body.page-id-926 .lx-ref-products__filters {
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 24px;
}

body.page-id-926 .filter-tab {
    border-radius: 6px;
    border-color: #d9dde6;
    color: #4a4f59;
    background: #fff;
    font-size: 13px;
    padding: 7px 14px;
}

body.page-id-926 .filter-tab:hover,
body.page-id-926 .filter-tab.is-active {
    background: #4c7de0;
    border-color: #4c7de0;
    color: #fff;
}

body.page-id-926 .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

body.page-id-926 .product-card {
    border-radius: 0;
    border: 1px solid #dadde4;
    box-shadow: none;
    background: #fff;
}

body.page-id-926 .product-card:hover {
    transform: none;
    box-shadow: none;
}

body.page-id-926 .card__img {
    height: 210px;
    object-fit: cover;
}

body.page-id-926 .product-card__hover-btn {
    display: none;
}

body.page-id-926 .product-card__body {
    padding: 10px 10px 12px;
}

body.page-id-926 .product-card__cat {
    color: #2f67d9;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 4px;
}

body.page-id-926 .product-card__body h3 {
    font-size: 13px;
    color: #2f323a;
    margin-bottom: 6px;
    line-height: 1.38;
}

body.page-id-926 .product-card__body p {
    font-size: 12px;
    color: #686d78;
    line-height: 1.6;
}

body.page-id-926 .lx-ref-products__aside {
    position: relative;
}

body.page-id-926 .lx-ref-inquiry {
    position: sticky;
    top: 20px;
    background: #fff;
    border: 1px solid #d8dce6;
    padding: 16px;
}

body.page-id-926 .lx-ref-inquiry h2 {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #2f323a;
}

body.page-id-926 .lx-ref-inquiry form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

body.page-id-926 .lx-ref-inquiry label span {
    display: block;
    font-size: 12px;
    color: #5c6270;
    margin-bottom: 4px;
}

body.page-id-926 .lx-ref-inquiry input,
body.page-id-926 .lx-ref-inquiry textarea {
    width: 100%;
    border: 1px solid #cfd5e3;
    background: #fff;
    padding: 10px;
    font-size: 13px;
    color: #2f323a;
    border-radius: 0;
}

body.page-id-926 .lx-ref-inquiry textarea {
    resize: vertical;
    min-height: 108px;
}

body.page-id-926 .lx-ref-inquiry button {
    border: 0;
    background: #2f67d9;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 12px;
    cursor: pointer;
}

body.page-id-926 .lx-ref-inquiry button:hover {
    background: #2456bd;
}

/* Pagination */
.lx-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 48px;
}
.lx-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    color: var(--clr-text);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.lx-pagination .page-numbers:hover,
.lx-pagination .page-numbers.current {
    background: var(--clr-brand);
    color: var(--clr-white);
    border-color: var(--clr-brand);
}

body.page-id-926 .lx-pagination {
    justify-content: flex-start;
    margin-top: 32px;
}

body.page-id-926 .lx-pagination .page-numbers {
    width: 34px;
    height: 34px;
    border-radius: 0;
    border: 1px solid #d2d8e5;
    font-size: 13px;
    color: #586071;
}

body.page-id-926 .lx-pagination .page-numbers:hover,
body.page-id-926 .lx-pagination .page-numbers.current {
    background: #2f67d9;
    border-color: #2f67d9;
    color: #fff;
}

/* -------------------------------------------------------------------
   Scroll Reveal Animations
   ------------------------------------------------------------------- */
[data-animate] {
    opacity: 0;
    transition: opacity .6s ease, transform .6s ease;
}
[data-animate="fade-up"]    { transform: translateY(30px); }
[data-animate="fade-left"]  { transform: translateX(-30px); }
[data-animate="fade-right"] { transform: translateX(30px); }
[data-animate].animated     { opacity: 1; transform: none; }

/* -------------------------------------------------------------------
   Responsive
   ------------------------------------------------------------------- */
@media (max-width: 1100px) {
    .footer__top { grid-template-columns: 1fr 1fr; }
    .grid--4 { grid-template-columns: repeat(3, 1fr); }

    body.page-id-926 .lx-ref-products__layout {
        grid-template-columns: minmax(0, 1fr);
    }

    body.page-id-926 .lx-ref-products__aside {
        max-width: 460px;
    }
}

@media (max-width: 900px) {
    :root { --header-h: 64px; }

    .topbar { display: none; }

    .main-navigation,
    .header-cta { display: none; }

    body.page-id-926 .topbar {
        display: block;
        height: auto;
        padding: 10px 0;
    }

    body.page-id-926 .site-header {
        height: 74px;
    }

    body.page-id-926 .site-branding img {
        max-height: 54px;
    }

    body.page-id-926 .archive-grid {
        padding: 20px 0 50px;
    }

    body.page-id-926 .lx-ref-products__head h1 {
        font-size: clamp(32px, 9vw, 44px);
    }

    body.page-id-926 .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    body.page-id-926 .card__img {
        height: 170px;
    }

    .menu-toggle { display: flex; }

    .hero__inner { grid-template-columns: 1fr; }
    .hero__badge-wrap { flex-direction: row; flex-wrap: wrap; }

    .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }

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

    .about__inner { grid-template-columns: 1fr; }
    .about__content { padding-left: 0; }
    .about__badges { bottom: 12px; right: 12px; }

    body.page-id-926 .site-header {
        height: 72px;
    }

    body.page-id-926 .site-branding img {
        max-height: 48px;
    }

    .contact-section__inner { grid-template-columns: 1fr; }

    .single-product-wrap { grid-template-columns: 1fr; }

    .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer__bottom-inner { flex-direction: column; text-align: center; }

    .nav-menu .sub-menu--products {
        min-width: 0;
        width: min(92vw, 520px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .nav-menu .sub-menu--products {
        grid-template-columns: 1fr;
    }

    .section { padding: 60px 0; }

    .hero { min-height: 520px; }
    .hero__inner { padding: 60px 0; }

    .grid--2,
    .grid--3,
    .grid--4 { grid-template-columns: 1fr; }

    .lx-form__row { grid-template-columns: 1fr; }

    .contact-section__form { padding: 24px; }

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

    .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
}
