/*
 * Hensor Theme — main.css
 * CSS extracted from source HTML and adapted for WordPress.
 * --red / --blue from source → --st-theme-color-one / --st-theme-color-two
 * Color values set via PHP in header.php <style> block from ACF fields.
 */

:root {
    --st-theme-color-one: #C41230;
    --st-theme-color-two: #1B3B8F;
    /* Aliases for source HTML compat */
    --red: var(--st-theme-color-one);
    --blue: var(--st-theme-color-two);
    --red-dark: #9E0E26;
    --blue-dark: #122970;
    --dark: #111827;
    --ink: #1F2937;
    --mid: #6B7280;
    --border: #E5E7EB;
    --light: #F9FAFB;
    --white: #FFFFFF;
    --gold: #F9A61A;
    --max: 1600px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--ink); background: var(--white); overflow-x: hidden; }
img { display: block; max-width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── UTILITIES ─── */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 40px; }
.section-label { font-family: 'Barlow', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.section-title { font-family: 'Barlow', sans-serif; font-size: clamp(28px, 3.5vw, 48px); font-weight: 800; line-height: 1.15; color: var(--dark); }
.section-sub { font-size: 16px; line-height: 1.7; color: var(--mid); margin-top: 16px; max-width: 560px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; font-family: 'Barlow', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: 0.04em; border-radius: 2px; transition: all 0.25s var(--ease); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196, 18, 48, 0.35); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27, 59, 143, 0.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255, 255, 255, 0.7); }
.btn-outline:hover { background: rgba(255, 255, 255, 0.15); border-color: #fff; }
.btn-outline-dark { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline-dark:hover { background: var(--blue); color: #fff; }

/* ─── TOP BAR ─── */
#topbar { background: var(--blue); color: rgba(255, 255, 255, 0.85); font-size: 13px; padding: 0; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; height: 38px; }
.topbar-left { display: flex; align-items: center; gap: 24px; }
.topbar-item { display: flex; align-items: center; gap: 6px; color: rgba(255, 255, 255, 0.8); transition: color 0.2s; }
.topbar-item:hover { color: #fff; }
.topbar-item svg { width: 13px; height: 13px; flex-shrink: 0; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.social-link { display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.25); color: rgba(255, 255, 255, 0.75); transition: all 0.2s; }
.social-link:hover { border-color: #fff; color: #fff; background: rgba(255, 255, 255, 0.15); }
.social-link svg { width: 13px; height: 13px; }
.lang-btn { display: flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: 2px; border: 1px solid rgba(255, 255, 255, 0.3); color: rgba(255, 255, 255, 0.8); font-size: 12px; font-weight: 500; letter-spacing: 0.04em; cursor: pointer; transition: all 0.2s; }
.lang-btn:hover { border-color: #fff; color: #fff; }
.topbar-divider { width: 1px; height: 16px; background: rgba(255, 255, 255, 0.2); }

/* ─── NAVIGATION ─── */
#navbar { position: sticky; top: 0; z-index: 900; background: #fff; border-bottom: 1px solid var(--border); transition: box-shadow 0.3s; }
#navbar.scrolled { box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 48px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link { padding: 8px 14px; font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.03em; color: var(--ink); border-radius: 2px; transition: all 0.2s; position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px; height: 2px; background: var(--red); transform: scaleX(0); transition: transform 0.25s var(--ease); }
.nav-link:hover, .nav-link.active { color: var(--red); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 8px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.nav-hamburger span { width: 22px; height: 2px; background: var(--ink); transition: all 0.3s; display: block; }
.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #fff; z-index: 1000; flex-direction: column; padding: 80px 32px 32px; gap: 8px; overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mobile-close { position: absolute; top: 20px; right: 20px; padding: 8px; font-size: 24px; color: var(--ink); }
.mobile-link { padding: 14px 0; font-family: 'Barlow', sans-serif; font-size: 18px; font-weight: 700; border-bottom: 1px solid var(--border); color: var(--ink); }
.mobile-link:hover { color: var(--red); }

/* ─── HERO ─── */
#hero { position: relative; overflow: hidden; background: var(--dark); }
.hero-swiper { width: 100%; height: 100vh; min-height: 600px; max-height: 900px; }
.hero-slide { min-width: 100%; height: 100%; position: relative; display: flex; align-items: center; }
.hero-slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-slide-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(10, 14, 25, 0.82) 0%, rgba(10, 14, 25, 0.55) 50%, rgba(10, 14, 25, 0.25) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: rgba(196, 18, 48, 0.9); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; border-radius: 2px; margin-bottom: 24px; }
.hero-title { font-family: 'Barlow', sans-serif; font-size: clamp(36px, 5vw, 68px); font-weight: 800; line-height: 1.1; color: #fff; margin-bottom: 20px; }
.hero-title span { color: #F9A61A; }
.hero-desc { font-size: clamp(15px, 1.5vw, 18px); line-height: 1.7; color: rgba(255, 255, 255, 0.82); margin-bottom: 36px; max-width: 520px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-nav { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; align-items: center; gap: 12px; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.35); cursor: pointer; transition: all 0.3s; opacity: 1 !important; }
.hero-dot.swiper-pagination-bullet-active { background: #fff; width: 28px; border-radius: 4px; }
.swiper-pagination-hero { bottom: 40px !important;left: 50% !important; display: flex; justify-content: center; gap: 12px; }
.hero-arrow { position: absolute; top: 50%; z-index: 10; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; background: rgba(255, 255, 255, 0.15); border: 1px solid rgba(255, 255, 255, 0.3); color: #fff; display: flex; align-items: center; justify-content: center; transition: all 0.25s; backdrop-filter: blur(4px); }
.hero-arrow:hover { background: rgba(255, 255, 255, 0.3); }
.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }

/* ─── PRODUCTS ─── */
#products { padding: 100px 0; background: #fff; border-top: 4px solid var(--red); }
.products-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; margin-bottom: 48px; }
.products-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 48px; }
.tab-btn { padding: 14px 32px; font-family: 'Barlow', sans-serif; font-size: 15px; font-weight: 700; color: var(--mid); border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all 0.25s; cursor: pointer; }
.tab-btn.active { color: var(--red); border-bottom-color: var(--red); }
.tab-btn:hover { color: var(--ink); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.product-card { background: #fff; border-radius: 4px; overflow: hidden; box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08); transition: all 0.35s var(--ease); border-bottom: 3px solid transparent; }
.product-card:hover { transform: translateY(-7px); box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14); border-bottom-color: var(--red); }
.product-card-img { aspect-ratio: 3/2; overflow: hidden; position: relative; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-tag { position: absolute; top: 12px; left: 12px; padding: 4px 12px; background: var(--blue); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; border-radius: 2px; }
.product-card-body { padding: 24px; }
.product-card-name { font-family: 'Barlow', sans-serif; font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.product-card-name a { color: inherit; }
.product-card-name a:hover { color: var(--red); }
.product-card-desc { font-size: 14px; line-height: 1.65; color: var(--mid); margin-bottom: 20px; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 40px; }
.slider-btn { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--ink); transition: all 0.2s; cursor: pointer; }
.slider-btn:hover { border-color: var(--red); color: var(--red); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); transition: all 0.3s; cursor: pointer; opacity: 1 !important; }
.slider-dot.swiper-pagination-bullet-active { background: var(--red); width: 24px; border-radius: 4px; }

/* ─── ADVANTAGES ─── */
#advantages { padding: 100px 0; background: #0C1B35; position: relative; overflow: hidden; }
#advantages::before { content: ''; position: absolute; top: -120px; right: -80px; width: 480px; height: 480px; border-radius: 50%; border: 80px solid rgba(255, 255, 255, 0.03); pointer-events: none; }
#advantages::after { content: ''; position: absolute; bottom: -60px; left: -40px; width: 280px; height: 280px; border-radius: 50%; border: 50px solid rgba(255, 255, 255, 0.03); pointer-events: none; }
#advantages .section-label { color: #F9A61A; }
#advantages .section-title { color: #fff; }
#advantages .section-sub { color: rgba(255, 255, 255, 0.6); }
.adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
.adv-card { padding: 36px 32px; border: 1px solid rgba(255, 255, 255, 0.09); border-radius: 4px; background: rgba(255, 255, 255, 0.04); transition: all 0.35s var(--ease); position: relative; overflow: hidden; backdrop-filter: blur(4px); }
.adv-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--blue), var(--red)); opacity: 0; transition: opacity 0.35s; }
.adv-card:hover { border-color: transparent; transform: translateY(-6px); box-shadow: 0 20px 56px rgba(0, 0, 0, 0.4); }
.adv-card:hover::before { opacity: 1; }
.adv-card:hover .adv-icon, .adv-card:hover .adv-title, .adv-card:hover .adv-desc { color: #fff; }
.adv-card:hover .adv-icon-wrap { background: rgba(255, 255, 255, 0.18); }
.adv-icon-wrap { position: relative; z-index: 1; width: 52px; height: 52px; border-radius: 4px; background: rgba(255, 255, 255, 0.08); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: background 0.35s; }
.adv-icon { position: relative; z-index: 1; width: 26px; height: 26px; color: rgba(255, 255, 255, 0.75); transition: color 0.35s; }
.adv-icon svg { width: 26px; height: 26px; }
.adv-title { position: relative; z-index: 1; font-family: 'Barlow', sans-serif; font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 12px; transition: color 0.35s; }
.adv-desc { position: relative; z-index: 1; font-size: 14px; line-height: 1.7; color: rgba(255, 255, 255, 0.55); transition: color 0.35s; }

/* ─── APPLICATIONS ─── */
#applications { padding: 100px 0; background: #F4F7FB; }
.app-head { text-align: center; margin-bottom: 56px; }
.app-head .section-sub { margin: 0 auto; }
.app-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.app-card { position: relative; border-radius: 4px; overflow: hidden; aspect-ratio: 3/2; cursor: pointer; }
.app-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s var(--ease); }
.app-card:hover .app-card-bg { transform: scale(1.07); }
.app-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 14, 25, 0.85) 0%, rgba(10, 14, 25, 0.25) 60%, transparent 100%); transition: background 0.3s; }
.app-card:hover .app-card-overlay { background: linear-gradient(to top, rgba(10, 14, 25, 0.92) 0%, rgba(10, 14, 25, 0.5) 70%, rgba(10, 14, 25, 0.15) 100%); }
.app-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 24px; }
.app-card-cat { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255, 255, 255, 0.65); margin-bottom: 8px; }
.app-card-name { font-family: 'Barlow', sans-serif; font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.app-card-desc { font-size: 13px; line-height: 1.6; color: rgba(255, 255, 255, 0.75); max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), opacity 0.3s; opacity: 0; }
.app-card:hover .app-card-desc { max-height: 80px; opacity: 1; }

/* ─── PROJECTS ─── */
#projects { padding: 100px 0; background: #fff; border-top: 1px solid var(--border); }
.projects-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; margin-bottom: 48px; }
.projects-swiper { overflow: visible; }
.project-card { display: block; border-radius: 4px; overflow: hidden; position: relative; aspect-ratio: 3/2; cursor: pointer; }
.project-card-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s var(--ease); }
.project-card:hover .project-card-img { transform: scale(1.06); }
.project-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 14, 25, 0.90) 0%, transparent 65%); }
.project-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; }
.project-card-region { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255, 255, 255, 0.65); margin-bottom: 8px; }
.project-card-name { font-family: 'Barlow', sans-serif; font-size: 17px; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 6px; }
.project-card-tag { display: inline-block; padding: 3px 10px; background: var(--red); color: #fff; font-size: 11px; font-weight: 600; border-radius: 2px; margin-top: 6px; }

/* ─── FACTORY ─── */
#factory { padding: 100px 0; background: var(--dark); position: relative; }
.factory-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.factory-text .section-title { color: #fff; }
.factory-text .section-sub { color: rgba(255, 255, 255, 0.65); }
.factory-text .section-label { color: #F9A61A; }
.factory-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.factory-stat { border-left: 3px solid var(--red); padding-left: 16px; }
.factory-stat-num { font-family: 'Barlow', sans-serif; font-size: 36px; font-weight: 800; color: #fff; line-height: 1; }
.factory-stat-label { font-size: 13px; color: rgba(255, 255, 255, 0.55); margin-top: 4px; }
.factory-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.factory-photo { aspect-ratio: 3/2; border-radius: 4px; overflow: hidden; background: #222; }
.factory-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.factory-photo:hover img { transform: scale(1.05); }

/* ─── QUALITY ─── */
#quality { padding: 80px 0; background: #EEF3FF; border-top: 4px solid var(--blue); }
.quality-inner { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.quality-card { flex: 1; min-width: 200px; max-width: 260px; background: #fff; border-radius: 4px; border: 1px solid rgba(27, 59, 143, 0.12); padding: 32px 24px; text-align: center; transition: all 0.3s; box-shadow: 0 2px 12px rgba(27, 59, 143, 0.06); }
.quality-card:hover { border-color: var(--blue); box-shadow: 0 10px 36px rgba(27, 59, 143, 0.16); transform: translateY(-5px); }
.quality-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(27, 59, 143, 0.08); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.quality-icon svg { width: 28px; height: 28px; color: var(--blue); }
.quality-name { font-family: 'Barlow', sans-serif; font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.quality-desc { font-size: 13px; line-height: 1.65; color: var(--mid); }

/* ─── NEWS / BLOG ─── */
#news { padding: 100px 0; background: #F8F7F4; }
.news-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; margin-bottom: 48px; }
.news-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
.news-card { border-radius: 4px; overflow: hidden; background: #fff; border: 1px solid transparent; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07); transition: all 0.3s var(--ease); }
.news-card:hover { box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10); transform: translateY(-4px); }
.news-card-img { aspect-ratio: 3/2; overflow: hidden; position: relative; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.news-card:hover .news-card-img img { transform: scale(1.06); }
.news-card-cat { position: absolute; top: 14px; left: 14px; padding: 4px 12px; background: var(--blue); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; border-radius: 2px; }
.news-card-body { padding: 24px; }
.news-card-meta { font-size: 12px; color: var(--mid); margin-bottom: 10px; }
.news-card-title { font-family: 'Barlow', sans-serif; font-size: 17px; font-weight: 700; color: var(--dark); line-height: 1.4; margin-bottom: 12px; }
.news-card-title a { color: inherit; }
.news-card-title a:hover { color: var(--red); }
.news-card-excerpt { font-size: 14px; line-height: 1.65; color: var(--mid); margin-bottom: 20px; }
.news-card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--red); font-family: 'Barlow', sans-serif; letter-spacing: 0.04em; transition: gap 0.2s; }
.news-card-link:hover { gap: 10px; }

/* ─── INQUIRY / FORM ─── */
#inquiry { padding: 100px 0; background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, #1e4fc4 100%); }
.inquiry-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.inquiry-text .section-label { color: rgba(255, 255, 255, 0.7); }
.inquiry-text .section-title { color: #fff; }
.inquiry-text .section-sub { color: rgba(255, 255, 255, 0.7); }
.inquiry-points { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.inquiry-point { display: flex; align-items: center; gap: 12px; font-size: 15px; color: rgba(255, 255, 255, 0.85); }
.inquiry-point-dot { width: 8px; height: 8px; border-radius: 50%; background: #F9A61A; flex-shrink: 0; }
.inquiry-form { background: #fff; border-radius: 6px; padding: 48px 40px; }
.form-title { font-family: 'Barlow', sans-serif; font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.form-sub { font-size: 14px; color: var(--mid); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.form-control { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 3px; font-size: 14px; font-family: 'Inter', sans-serif; color: var(--ink); background: #fff; transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(27, 59, 143, 0.10); }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; padding: 15px; background: var(--red); color: #fff; font-family: 'Barlow', sans-serif; font-size: 16px; font-weight: 700; letter-spacing: 0.05em; border-radius: 3px; transition: all 0.25s; cursor: pointer; margin-top: 8px; border: none; }
.form-submit:hover { background: var(--red-dark); box-shadow: 0 8px 24px rgba(196, 18, 48, 0.35); }

/* ─── FOOTER ─── */
#footer { background: #0D1320; color: rgba(255, 255, 255, 0.65); }
.footer-top { padding: 72px 0 48px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 44px; width: auto; }
.footer-intro { font-size: 14px; line-height: 1.7; margin-bottom: 20px; color: rgba(255, 255, 255, 0.55); }
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-social-link { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.2); display: flex; align-items: center; justify-content: center; color: rgba(255, 255, 255, 0.6); transition: all 0.2s; }
.footer-social-link:hover { border-color: var(--red); color: var(--red); }
.footer-social-link svg { width: 14px; height: 14px; }
.footer-col-title { font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; margin-bottom: 20px; }
.footer-link { display: block; font-size: 14px; color: rgba(255, 255, 255, 0.55); padding: 5px 0; transition: color 0.2s; }
.footer-link:hover { color: #fff; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 14px; color: rgba(255, 255, 255, 0.6); }
.footer-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: rgba(255, 255, 255, 0.4); }
.footer-contact-item a { color: inherit; }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 13px; color: rgba(255, 255, 255, 0.35); }
.footer-copy a { color: inherit; }
.footer-badge { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255, 255, 255, 0.3); }
.footer-badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--red); display: inline-block; }

/* ─── INNER PAGE BANNER ─── */
.inner-banner { position: relative; height: 300px; background: var(--dark); display: flex; align-items: center; }
.inner-banner-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.inner-banner-bg::after { content: ''; position: absolute; inset: 0; background: rgba(10, 14, 25, 0.65); }
.inner-banner-content { position: relative; z-index: 2; }
.inner-banner-content h1 { font-family: 'Barlow', sans-serif; font-size: clamp(32px, 4vw, 56px); font-weight: 800; color: #fff; }

/* ─── BREADCRUMB ─── */
.hensor-breadcrumb { background: var(--light); border-bottom: 1px solid var(--border); padding: 16px 0; }
.hensor-breadcrumb ul { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.hensor-breadcrumb li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--mid); }
.hensor-breadcrumb a { color: var(--ink); transition: color 0.2s; }
.hensor-breadcrumb a:hover { color: var(--red); }
.hensor-breadcrumb h1 { font-size: 14px; font-weight: 400; display: inline; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
    .adv-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 960px) {
    .container { padding: 0 24px; }
    .app-grid { grid-template-columns: 1fr 1fr; }
    .news-grid { grid-template-columns: 1fr 1fr; }
    .inquiry-inner { grid-template-columns: 1fr; gap: 48px; }
    .factory-inner { grid-template-columns: 1fr; gap: 40px; }
    .factory-gallery { height: 360px; }
}

@media (max-width: 700px) {
    #topbar { display: none; }
    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    .hero-title { font-size: 32px; }
    .app-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .adv-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .factory-gallery { grid-template-columns: 1fr 1fr; height: auto; }
    .quality-inner { flex-direction: column; }
    .inquiry-form { padding: 32px 24px; }
    .hero-arrow { display: none; }
}

/* ===== Page: 404 ===== */
.nf{min-height:58vh;display:flex;align-items:center;justify-content:center;text-align:center;padding:80px 0;background:linear-gradient(180deg,var(--light) 0%,#fff 100%)}
.nf-code{font-family:'Barlow',sans-serif;font-weight:800;font-size:clamp(110px,22vw,220px);line-height:.9;letter-spacing:-.02em;background:linear-gradient(135deg,var(--blue),var(--red));-webkit-background-clip:text;background-clip:text;color:transparent;margin-bottom:10px}
.nf-title{font-family:'Barlow',sans-serif;font-weight:800;font-size:clamp(22px,3vw,34px);color:var(--dark);margin-bottom:12px}
.nf-text{font-size:1rem;color:var(--mid);line-height:1.7;max-width:440px;margin:0 auto 32px}
.nf-actions{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}
@media(max-width:480px){.nf-actions{flex-direction:column;width:100%;max-width:280px;margin:0 auto}.nf-actions .btn{justify-content:center}}

/* ===== Inner Page Banner (shared) ===== */
.page-banner{position:relative;min-height:300px;display:flex;align-items:flex-end;background:linear-gradient(135deg,var(--blue-dark),var(--dark));overflow:hidden}
.page-banner-bg{position:absolute;inset:0;background-size:cover;background-position:center}
.page-banner-bg::after{content:'';position:absolute;inset:0;background:linear-gradient(105deg,rgba(10,14,25,.9) 0%,rgba(10,14,25,.55) 55%,rgba(10,14,25,.25) 100%)}
.page-banner-content{position:relative;z-index:2;width:100%;padding:48px 0}
.banner-label{display:inline-block;background:var(--gold);color:#111;font-family:'Barlow',sans-serif;font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;padding:4px 12px;border-radius:2px;margin-bottom:14px}
.page-banner-title{font-family:'Barlow',sans-serif;font-size:clamp(28px,4.5vw,48px);font-weight:800;color:#fff;line-height:1.1;margin-bottom:14px;max-width:780px}
.page-banner-desc{font-size:16px;line-height:1.7;color:rgba(255,255,255,.78);max-width:580px}
.breadcrumb{display:flex;align-items:center;gap:8px;font-size:13px;color:rgba(255,255,255,.6);flex-wrap:wrap;margin-top:14px}
.breadcrumb a{color:rgba(255,255,255,.6);transition:color .2s}
.breadcrumb a:hover{color:#fff}
.breadcrumb .sep{color:rgba(255,255,255,.35)}
@media(max-width:700px){.page-banner{min-height:240px}}

/* ===== Page: Privacy Policy ===== */
.policy-wrap{max-width:880px;margin:0 auto;padding:64px 40px}
.policy-body h2{font-family:'Barlow',sans-serif;font-weight:700;font-size:1.3rem;color:var(--dark);margin:36px 0 14px;padding-bottom:10px;border-bottom:2px solid var(--border)}
.policy-body h2:first-child{margin-top:0}
.policy-body h3{font-family:'Barlow',sans-serif;font-weight:700;font-size:1.08rem;color:var(--dark);margin:22px 0 10px}
.policy-body p{font-size:.96rem;color:#374151;line-height:1.85;margin-bottom:14px}
.policy-body ul,.policy-body ol{margin:0 0 14px 20px}
.policy-body li{font-size:.96rem;color:#374151;line-height:1.85;margin-bottom:6px}
.policy-body li::marker{color:var(--blue)}
.policy-body strong{color:var(--dark)}
.policy-body a{color:var(--blue);text-decoration:underline;text-underline-offset:3px}
.policy-body .info-box{background:var(--light);border:1px solid var(--border);border-radius:10px;padding:18px 20px;margin:16px 0;font-size:.92rem;color:var(--ink)}
@media(max-width:700px){.policy-wrap{padding:44px 24px}}

/* ===== Page: Thanks ===== */
.thanks-hero{padding:64px 0;background:linear-gradient(135deg,#EFF6FF 0%,#DBEAFE 50%,#EFF6FF 100%)}
.thanks-card{background:#fff;border-radius:16px;padding:56px 48px;max-width:680px;width:100%;margin:0 auto;text-align:center;box-shadow:0 20px 60px rgba(27,59,143,.12);border:1px solid var(--border)}
.thanks-card .check-circle{width:80px;height:80px;border-radius:50%;background:linear-gradient(135deg,#10B981,#059669);display:flex;align-items:center;justify-content:center;margin:0 auto 24px;box-shadow:0 8px 24px rgba(16,185,129,.3)}
.thanks-card .check-circle svg{width:36px;height:36px;fill:none;stroke:#fff;stroke-width:3;stroke-linecap:round;stroke-linejoin:round}
.thanks-card h1{font-family:'Barlow',sans-serif;font-weight:800;font-size:2rem;color:var(--dark);margin-bottom:12px}
.thanks-card .subtitle{font-size:1.05rem;color:var(--mid);margin-bottom:28px;line-height:1.7}
.timeline-mini{border-top:1px solid var(--border);padding-top:24px;margin-bottom:28px;text-align:left}
.timeline-mini h3{font-family:'Barlow',sans-serif;font-weight:700;font-size:.92rem;color:var(--dark);margin-bottom:16px;text-align:center;text-transform:uppercase;letter-spacing:.08em}
.timeline-mini .tl-item{display:flex;align-items:flex-start;gap:12px;margin-bottom:14px}
.timeline-mini .tl-dot{width:28px;height:28px;border-radius:50%;background:var(--blue);color:#fff;font-size:.75rem;font-weight:700;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.timeline-mini .tl-dot.done{background:#10B981}
.timeline-mini .tl-text strong{display:block;font-size:.9rem;color:var(--dark);margin-bottom:2px}
.timeline-mini .tl-text span{font-size:.83rem;color:var(--mid)}
.thanks-actions{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.btn-light{background:var(--light);color:var(--ink);border:1px solid var(--border)}
.btn-light:hover{background:var(--border)}
.next-section{max-width:var(--max);margin:64px auto;padding:0 40px}
.next-section h2{font-family:'Barlow',sans-serif;font-weight:800;font-size:1.6rem;color:var(--dark);text-align:center;margin-bottom:36px}
.next-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.next-card{border:1px solid var(--border);border-radius:12px;padding:24px;text-align:center;transition:border-color .2s,box-shadow .2s}
.next-card:hover{border-color:var(--blue);box-shadow:0 4px 16px rgba(27,59,143,.1)}
.next-card .nc-icon{font-size:2rem;margin-bottom:12px}
.next-card .nc-title{font-family:'Barlow',sans-serif;font-weight:700;font-size:1rem;color:var(--dark);margin-bottom:6px}
.next-card .nc-desc{font-size:.86rem;color:var(--mid);line-height:1.65;margin-bottom:14px}
.next-card .nc-link{display:inline-flex;align-items:center;gap:5px;font-size:.87rem;font-weight:600;color:var(--blue)}
@media(max-width:960px){.next-section{padding:0 24px}}
@media(max-width:700px){.thanks-card{padding:36px 24px}.next-grid{grid-template-columns:1fr}}

/* ===== Page: Search ===== */
.search-header{background:var(--light);border-bottom:1px solid var(--border);padding:32px 0}
.sh-inner h1{font-family:'Barlow',sans-serif;font-weight:800;font-size:1.4rem;color:var(--dark);margin-bottom:16px}
.search-form{display:flex;max-width:640px;border:2px solid var(--border);border-radius:10px;overflow:hidden;background:#fff;transition:border-color .2s}
.search-form:focus-within{border-color:var(--blue)}
.search-form input{flex:1;border:none;padding:13px 16px;font-size:1rem;outline:none;font-family:'Inter',sans-serif}
.search-form button{background:var(--blue);border:none;padding:13px 24px;color:#fff;cursor:pointer;font-size:1rem;font-weight:600;font-family:'Barlow',sans-serif;transition:background .2s}
.search-form button:hover{background:var(--blue-dark)}
.search-meta{margin-top:10px;font-size:.85rem;color:var(--mid)}
.search-meta strong{color:var(--dark)}
.search-results{max-width:920px;margin:0 auto;padding:48px 40px}
.result-item{display:flex;gap:16px;padding:20px 0;border-bottom:1px solid var(--border)}
.result-item:last-child{border-bottom:none}
.result-thumb{width:110px;height:78px;border-radius:8px;overflow:hidden;flex-shrink:0;background:var(--light)}
.result-thumb img{width:100%;height:100%;object-fit:cover}
.result-type{font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--blue);margin-bottom:4px}
.result-title{font-family:'Barlow',sans-serif;font-weight:700;font-size:1.05rem;color:var(--dark);margin-bottom:5px;line-height:1.3}
.result-title a:hover{color:var(--blue)}
.result-excerpt{font-size:.88rem;color:var(--mid);line-height:1.65}
.no-results{text-align:center;padding:60px 0;font-size:1rem;color:var(--mid)}
.search-results .st__blog__pagination ul{display:flex;gap:6px;justify-content:center;margin-top:36px;flex-wrap:wrap;list-style:none;padding:0}
.search-results .st__blog__pagination a{display:flex;align-items:center;justify-content:center;min-width:38px;height:38px;padding:0 12px;border:1px solid var(--border);border-radius:8px;font-size:.9rem;font-weight:500;color:var(--ink);transition:all .2s}
.search-results .st__blog__pagination a.active,.search-results .st__blog__pagination a:hover{background:var(--blue);color:#fff;border-color:var(--blue)}
@media(max-width:700px){.search-results{padding:36px 24px}.result-thumb{width:84px;height:62px}}

/* ===== Page: About ===== */
.about-intro{padding:96px 0;background:#fff;border-top:4px solid var(--red)}
.about-intro-inner{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
.about-text .section-sub{max-width:none}
.about-text p{font-size:15px;line-height:1.8;color:var(--mid);margin-top:16px}
.about-text-actions{display:flex;gap:16px;flex-wrap:wrap;margin-top:36px}
.about-img-wrap{position:relative;border-radius:6px;overflow:hidden;background:linear-gradient(135deg,var(--blue-dark),var(--dark))}
.about-img-wrap img{width:100%;height:520px;object-fit:cover}
.about-img-badge{position:absolute;bottom:28px;left:28px;background:var(--blue);color:#fff;padding:16px 24px;border-radius:4px;max-width:200px}
.about-img-badge-num{font-family:'Barlow',sans-serif;font-size:32px;font-weight:800;line-height:1}
.about-img-badge-text{font-size:13px;line-height:1.4;margin-top:4px;opacity:.85}
.about-stats{padding:72px 0;background:#0C1B35;position:relative;overflow:hidden}
.about-stats::before{content:'';position:absolute;top:-80px;right:-60px;width:360px;height:360px;border-radius:50%;border:60px solid rgba(255,255,255,.03);pointer-events:none}
.about-stats .stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:rgba(255,255,255,.08)}
.about-stats .stat-item{background:#0C1B35;padding:44px 36px;text-align:center}
.about-stats .stat-num{font-family:'Barlow',sans-serif;font-size:clamp(36px,4vw,56px);font-weight:800;color:#fff;line-height:1}
.about-stats .stat-num span{color:var(--gold)}
.about-stats .stat-label{font-size:14px;color:rgba(255,255,255,.55);margin-top:8px;line-height:1.4}
.about-why{padding:96px 0;background:var(--light)}
.why-head{text-align:center;max-width:660px;margin:0 auto 56px}
.why-head .section-sub{margin:16px auto 0}
.why-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.why-item{padding:32px;background:#fff;border-radius:8px;border:1px solid var(--border);transition:all .3s var(--ease)}
.why-item:hover{box-shadow:0 14px 38px rgba(0,0,0,.08);border-color:rgba(196,18,48,.2);transform:translateY(-4px)}
.why-icon{width:52px;height:52px;border-radius:8px;background:linear-gradient(135deg,var(--blue),var(--blue-dark));display:flex;align-items:center;justify-content:center;margin-bottom:20px}
.why-icon svg{width:24px;height:24px;color:#fff}
.why-title{font-family:'Barlow',sans-serif;font-size:17px;font-weight:700;color:var(--dark);margin-bottom:8px}
.why-desc{font-size:14px;line-height:1.7;color:var(--mid)}
.about-timeline{padding:96px 0;background:#fff;border-top:1px solid var(--border)}
.timeline-head{text-align:center;max-width:640px;margin:0 auto 64px}
.timeline-head .section-sub{margin:16px auto 0}
.about-timeline .timeline{position:relative;max-width:820px;margin:0 auto;padding-left:6px}
.about-timeline .timeline::before{content:'';position:absolute;left:6px;top:6px;bottom:6px;width:2px;background:linear-gradient(180deg,var(--red),var(--blue))}
.about-timeline .tl-item{position:relative;padding:0 0 44px 44px}
.about-timeline .tl-item:last-child{padding-bottom:0}
.about-timeline .tl-item::before{content:'';position:absolute;left:-1px;top:4px;width:16px;height:16px;border-radius:50%;background:var(--red);border:3px solid #fff;box-shadow:0 0 0 3px rgba(196,18,48,.18)}
.about-timeline .tl-year{display:inline-block;font-family:'Barlow',sans-serif;font-size:13px;font-weight:700;color:#fff;background:var(--red);padding:4px 12px;border-radius:2px;margin-bottom:12px}
.about-timeline .tl-content-title{font-family:'Barlow',sans-serif;font-size:18px;font-weight:700;color:var(--dark);margin-bottom:8px}
.about-timeline .tl-content-desc{font-size:14px;line-height:1.75;color:var(--mid)}
.about-factory{padding:96px 0;background:#0C1B35}
.about-factory .section-label{color:var(--gold)}
.about-factory .section-title{color:#fff}
.about-factory .section-sub{color:rgba(255,255,255,.6)}
.factory-head{display:flex;justify-content:space-between;align-items:flex-end;flex-wrap:wrap;gap:24px;margin-bottom:48px}
.factory-head .section-sub{max-width:560px}
.about-factory .factory-gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.about-factory .fac-photo{border-radius:8px;overflow:hidden;aspect-ratio:4/3;background:#1a2a44}
.about-factory .fac-photo img{width:100%;height:100%;object-fit:cover;transition:transform .5s var(--ease)}
.about-factory .fac-photo:hover img{transform:scale(1.06)}
.about-certs{padding:80px 0;background:var(--light);border-top:1px solid var(--border)}
.certs-head{text-align:center;max-width:640px;margin:0 auto 56px}
.certs-head .section-sub{margin:16px auto 0}
.certs-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.cert-card{background:#fff;border-radius:6px;border:1px solid var(--border);padding:36px 24px;text-align:center;transition:all .3s var(--ease)}
.cert-card:hover{box-shadow:0 10px 36px rgba(0,0,0,.1);transform:translateY(-5px);border-color:rgba(27,59,143,.25)}
.cert-icon{width:64px;height:64px;margin:0 auto 20px;border-radius:50%;background:rgba(27,59,143,.07);display:flex;align-items:center;justify-content:center}
.cert-icon svg{width:32px;height:32px;color:var(--blue)}
.cert-name{font-family:'Barlow',sans-serif;font-size:16px;font-weight:800;color:var(--dark);margin-bottom:8px}
.cert-desc{font-size:13px;line-height:1.65;color:var(--mid)}
.cert-badge{display:inline-block;margin-top:12px;padding:4px 12px;background:rgba(27,59,143,.08);color:var(--blue);font-size:11px;font-weight:700;border-radius:2px;letter-spacing:.06em}
.cta-strip{padding:80px 0;background:linear-gradient(135deg,var(--blue-dark) 0%,var(--blue) 60%,#1e4fc4 100%)}
.cta-strip-inner{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:40px}
.cta-strip-text .section-label{color:rgba(255,255,255,.65)}
.cta-strip-text .section-title{color:#fff}
.cta-strip-text .section-sub{color:rgba(255,255,255,.72);max-width:480px}
.cta-btns{display:flex;gap:16px;flex-wrap:wrap;flex-shrink:0}
@media(max-width:1200px){.certs-grid{grid-template-columns:1fr 1fr}}
@media(max-width:960px){.about-intro-inner{grid-template-columns:1fr;gap:48px}.about-img-wrap img{height:380px}.about-stats .stats-grid{grid-template-columns:1fr 1fr}.why-grid{grid-template-columns:1fr}.about-factory .factory-gallery{grid-template-columns:1fr 1fr}}
@media(max-width:700px){.about-stats .stats-grid{grid-template-columns:1fr 1fr}.about-factory .factory-gallery{grid-template-columns:1fr}.certs-grid{grid-template-columns:1fr 1fr}.cta-strip-inner{flex-direction:column}.cta-btns{width:100%;flex-direction:column}.cta-btns .btn{justify-content:center}}

/* ===== Page: Contact ===== */
.contact-main{padding:80px 0;background:#fff}
.contact-inner{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:start}
.contact-info .section-sub{max-width:none}
.contact-info-list{margin-top:32px;display:flex;flex-direction:column;gap:18px}
.contact-info-item{display:flex;align-items:flex-start;gap:14px}
.contact-info-item .ci-icon{width:44px;height:44px;flex-shrink:0;border-radius:8px;background:rgba(27,59,143,.08);display:flex;align-items:center;justify-content:center}
.contact-info-item .ci-icon svg{width:20px;height:20px;color:var(--blue)}
.contact-info-item .ci-text{font-size:15px;color:var(--ink);line-height:1.5;padding-top:4px}
.contact-info-item .ci-text a:hover{color:var(--blue)}
.contact-form-wrap{background:var(--light);border:1px solid var(--border);border-radius:12px;padding:40px}
.contact-form-wrap .form-title{font-family:'Barlow',sans-serif;font-size:20px;font-weight:800;color:var(--dark);margin-bottom:24px}
.contact-form-wrap .wpcf7 p{margin:0 0 16px}
.contact-form-wrap .wpcf7-form-control-wrap{display:block}
.contact-form-wrap input[type=text],.contact-form-wrap input[type=email],.contact-form-wrap input[type=tel],.contact-form-wrap select,.contact-form-wrap textarea{width:100%;padding:12px 14px;border:1px solid var(--border);border-radius:6px;font-size:14px;font-family:'Inter',sans-serif;color:var(--ink);background:#fff;outline:none;transition:border-color .2s}
.contact-form-wrap input:focus,.contact-form-wrap select:focus,.contact-form-wrap textarea:focus{border-color:var(--blue)}
.contact-form-wrap textarea{min-height:120px;resize:vertical}
.contact-form-wrap .wpcf7-submit{width:100%;background:var(--red);color:#fff;border:none;padding:14px;border-radius:2px;font-family:'Barlow',sans-serif;font-weight:700;font-size:15px;letter-spacing:.04em;cursor:pointer;transition:background .2s}
.contact-form-wrap .wpcf7-submit:hover{background:var(--red-dark)}
@media(max-width:960px){.contact-inner{grid-template-columns:1fr;gap:40px}.contact-form-wrap{padding:32px 24px}}

/* ===== Page: Products / Category ===== */
.cat-filter-bar{padding:24px 0;background:var(--light);border-bottom:1px solid var(--border)}
.cat-filter-bar .container{display:flex;gap:12px;flex-wrap:wrap}
.cat-filter-bar .btn{padding:8px 20px;font-size:13px}
.cat-products{padding:72px 0}
.cat-desc{font-size:15px;color:var(--mid);line-height:1.7;max-width:760px;margin-bottom:40px}
.product-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.cat-pagination{margin-top:48px;display:flex;justify-content:center}
.cat-pagination .page-numbers{display:inline-flex;align-items:center;justify-content:center;min-width:40px;height:40px;padding:0 12px;margin:0 4px;border:1px solid var(--border);border-radius:8px;font-size:.9rem;font-weight:500;color:var(--ink);transition:all .2s}
.cat-pagination .page-numbers.current,.cat-pagination a.page-numbers:hover{background:var(--blue);color:#fff;border-color:var(--blue)}
@media(max-width:960px){.product-grid{grid-template-columns:1fr 1fr}}
@media(max-width:700px){.product-grid{grid-template-columns:1fr}}

/* ===== CPT Archives ===== */
.archive-section{padding:72px 0}
.app-grid,.sol-grid,.blog-grid,.cases-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
/* service + solution cards */
.app-card,.sol-card{background:#fff;border:1px solid var(--border);border-radius:8px;overflow:hidden;display:flex;flex-direction:column;transition:all .3s var(--ease)}
.app-card:hover,.sol-card:hover{transform:translateY(-5px);box-shadow:0 16px 40px rgba(0,0,0,.1)}
.ac-img,.sc-img{position:relative;aspect-ratio:16/10;overflow:hidden;background:var(--light)}
.ac-img img,.sc-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s var(--ease)}
.app-card:hover .ac-img img,.sol-card:hover .sc-img img{transform:scale(1.06)}
.ac-badge,.sc-badge{position:absolute;top:12px;left:12px;background:var(--gold);color:#111;font-size:11px;font-weight:700;letter-spacing:.06em;padding:4px 10px;border-radius:2px}
.ac-body,.sc-body{padding:24px 26px;display:flex;flex-direction:column;flex:1}
.ac-title,.sc-title{font-family:'Barlow',sans-serif;font-weight:800;font-size:18px;color:var(--dark);margin-bottom:10px;line-height:1.3}
.ac-title a:hover,.sc-title a:hover{color:var(--red)}
.ac-desc,.sc-desc{font-size:14px;color:var(--mid);line-height:1.7;flex:1}
.ac-link,.sc-link{display:inline-flex;align-items:center;gap:6px;margin-top:16px;font-family:'Barlow',sans-serif;font-weight:700;font-size:14px;color:var(--blue)}
.ac-link svg,.sc-link svg{transition:transform .2s}
.app-card:hover .ac-link svg,.sol-card:hover .sc-link svg{transform:translateX(4px)}
/* case cards (image overlay) */
.case-card{border-radius:6px;overflow:hidden;position:relative;aspect-ratio:4/3;display:block}
.case-card-bg{position:absolute;inset:0;background-size:cover;background-position:center;transition:transform .6s var(--ease)}
.case-card:hover .case-card-bg{transform:scale(1.06)}
.case-card-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(10,14,25,.92) 0%,rgba(10,14,25,.4) 60%,rgba(10,14,25,.05) 100%)}
.case-card-link-hint{position:absolute;top:16px;right:16px;width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.15);border:1px solid rgba(255,255,255,.3);display:flex;align-items:center;justify-content:center;color:#fff;opacity:0;transition:opacity .3s}
.case-card:hover .case-card-link-hint{opacity:1}
.case-card-link-hint svg{width:16px;height:16px}
.case-card-body{position:absolute;bottom:0;left:0;right:0;padding:28px;z-index:1}
.case-card-region{display:inline-flex;align-items:center;gap:6px;font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.6);margin-bottom:8px}
.case-card-region svg{width:12px;height:12px}
.case-card-name{font-family:'Barlow',sans-serif;font-size:18px;font-weight:700;color:#fff;line-height:1.3;margin-bottom:10px}
.case-card-tags{display:flex;flex-wrap:wrap;gap:6px}
.case-tag{font-size:11px;font-weight:600;padding:3px 9px;border-radius:3px}
.case-tag.tag-red{background:var(--red);color:#fff}
.case-tag.tag-dark{background:rgba(255,255,255,.15);color:#fff}
/* blog cards */
.post-card{background:#fff;border:1px solid var(--border);border-radius:8px;overflow:hidden;display:flex;flex-direction:column;transition:all .3s var(--ease)}
.post-card:hover{transform:translateY(-5px);box-shadow:0 16px 40px rgba(0,0,0,.1)}
.post-card-img{position:relative;aspect-ratio:16/10;overflow:hidden;background:var(--light)}
.post-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s var(--ease)}
.post-card:hover .post-card-img img{transform:scale(1.06)}
.post-card-cat{position:absolute;top:12px;left:12px;background:var(--blue);color:#fff;font-size:11px;font-weight:700;letter-spacing:.06em;padding:4px 10px;border-radius:2px}
.post-card-body{padding:22px 24px;display:flex;flex-direction:column;flex:1}
.post-meta{font-size:12px;color:var(--mid);margin-bottom:10px}
.post-title{font-family:'Barlow',sans-serif;font-weight:700;font-size:17px;color:var(--dark);line-height:1.35;margin-bottom:10px}
.post-card:hover .post-title{color:var(--red)}
.post-excerpt{font-size:13.5px;color:var(--mid);line-height:1.7;flex:1}
.post-link{display:inline-flex;align-items:center;gap:6px;margin-top:16px;font-family:'Barlow',sans-serif;font-weight:700;font-size:14px;color:var(--blue)}
.post-link svg{width:14px;height:14px;transition:transform .2s}
.post-card:hover .post-link svg{transform:translateX(4px)}
@media(max-width:960px){.app-grid,.sol-grid,.blog-grid,.cases-grid{grid-template-columns:1fr 1fr}}
@media(max-width:700px){.app-grid,.sol-grid,.blog-grid,.cases-grid{grid-template-columns:1fr}}

/* ===== CPT Singles ===== */
.single-section{padding:72px 0}
.single-layout{display:grid;grid-template-columns:1fr 340px;gap:52px;align-items:start}
.single-hero{border-radius:8px;overflow:hidden;aspect-ratio:16/9;margin-bottom:32px;background:var(--light)}
.single-hero img{width:100%;height:100%;object-fit:cover}
.single-main .article-meta{font-size:13px;color:var(--mid);margin-bottom:18px}
.single-body{font-size:16px;line-height:1.85;color:#374151}
.single-body h2{font-family:'Barlow',sans-serif;font-weight:700;font-size:1.5rem;color:var(--dark);margin:36px 0 14px}
.single-body h3{font-family:'Barlow',sans-serif;font-weight:700;font-size:1.2rem;color:var(--dark);margin:26px 0 12px}
.single-body p{margin-bottom:18px}
.single-body ul,.single-body ol{margin:0 0 18px 22px}
.single-body li{margin-bottom:8px}
.single-body li::marker{color:var(--blue)}
.single-body img{border-radius:8px;margin:20px 0}
.single-body a{color:var(--blue);text-decoration:underline;text-underline-offset:3px}
.single-body table{width:100%;border-collapse:collapse;margin:20px 0;font-size:.92rem}
.single-body table th{background:var(--blue);color:#fff;padding:10px 14px;text-align:left}
.single-body table td{padding:9px 14px;border-bottom:1px solid var(--border)}
.single-body blockquote{margin:24px 0;padding:18px 24px;background:var(--light);border-left:4px solid var(--red);border-radius:0 6px 6px 0}
.single-body blockquote p{margin:0;color:var(--ink)}
.single-body h2:first-child,.single-body p:first-child{margin-top:0}
.case-gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:32px}
.case-gallery a{border-radius:6px;overflow:hidden;aspect-ratio:4/3;display:block}
.case-gallery img{width:100%;height:100%;object-fit:cover;transition:transform .4s var(--ease)}
.case-gallery a:hover img{transform:scale(1.05)}
.single-aside{position:sticky;top:90px;display:flex;flex-direction:column;gap:24px}
.aside-card{background:#fff;border:1px solid var(--border);border-radius:10px;overflow:hidden}
.aside-card .aside-head{background:var(--blue);color:#fff;padding:14px 18px;font-family:'Barlow',sans-serif;font-weight:700;font-size:14px;letter-spacing:.04em}
.aside-list{padding:8px 0}
.aside-list li{border-bottom:1px solid var(--border)}
.aside-list li:last-child{border-bottom:none}
.aside-list a{display:block;padding:12px 18px;font-size:14px;color:var(--ink);transition:all .2s}
.aside-list a:hover{background:var(--light);color:var(--blue)}
.facts-table{width:100%;border-collapse:collapse}
.facts-table tr{border-bottom:1px solid var(--border)}
.facts-table tr:last-child{border-bottom:none}
.facts-table td{padding:12px 18px;font-size:14px}
.facts-table td:first-child{color:var(--mid);width:46%}
.facts-table td:last-child{color:var(--dark);font-weight:600}
.aside-cta{background:linear-gradient(135deg,var(--red),#8B0E1F);border:none;padding:26px;text-align:center;color:#fff}
.aside-cta h4{font-family:'Barlow',sans-serif;font-weight:800;font-size:17px;margin-bottom:8px}
.aside-cta p{font-size:13.5px;color:rgba(255,255,255,.85);line-height:1.6;margin-bottom:18px}
.related-section{padding:80px 0;background:var(--light);border-top:1px solid var(--border)}
@media(max-width:960px){.single-layout{grid-template-columns:1fr;gap:40px}.single-aside{position:static;flex-direction:row;flex-wrap:wrap}.single-aside .aside-card{flex:1;min-width:260px}.case-gallery{grid-template-columns:1fr 1fr}}
@media(max-width:700px){.single-aside{flex-direction:column}}

/* ===== Page: Products (intro + category cards + FAQ) ===== */
.products-intro{padding:80px 0 64px;background:#fff;border-top:4px solid var(--red)}
.products-intro-head{display:flex;justify-content:space-between;align-items:flex-end;flex-wrap:wrap;gap:24px;margin-bottom:56px}
.products-intro-head .section-sub{max-width:500px;margin-top:0}
.cat-cards{display:grid;grid-template-columns:1fr 1fr;gap:28px}
.cat-card{position:relative;border-radius:6px;overflow:hidden;aspect-ratio:16/8;display:block;text-decoration:none}
.cat-card-bg{position:absolute;inset:0;background-size:cover;background-position:center;transition:transform .6s ease}
.cat-card:hover .cat-card-bg{transform:scale(1.05)}
.cat-card-overlay{position:absolute;inset:0;background:linear-gradient(to right,rgba(10,14,25,.90) 0%,rgba(10,14,25,.60) 55%,rgba(10,14,25,.15) 100%)}
.cat-card-body{position:absolute;bottom:0;left:0;padding:40px 44px;right:0}
.cat-card-tag{display:inline-block;padding:4px 12px;background:var(--red);color:#fff;font-size:11px;font-weight:700;letter-spacing:.10em;text-transform:uppercase;border-radius:2px;margin-bottom:14px}
.cat-card-title{font-family:'Barlow',sans-serif;font-size:clamp(22px,2.5vw,30px);font-weight:800;color:#fff;line-height:1.15;margin-bottom:10px}
.cat-card-desc{font-size:14px;line-height:1.65;color:rgba(255,255,255,.78);max-width:360px;margin-bottom:20px}
.cat-card-link{display:inline-flex;align-items:center;gap:8px;font-family:'Barlow',sans-serif;font-size:13px;font-weight:700;letter-spacing:.06em;color:#fff;border-bottom:2px solid rgba(255,255,255,.4);padding-bottom:3px;transition:border-color .2s}
.cat-card:hover .cat-card-link{border-color:#fff}
.cat-card-link svg{width:14px;height:14px;transition:transform .2s}
.cat-card:hover .cat-card-link svg{transform:translateX(4px)}
.faq-section{padding:80px 0;background:#fff;border-top:1px solid var(--border)}
.faq-inner{display:grid;grid-template-columns:1fr 1.6fr;gap:80px;align-items:start}
.faq-side .section-sub{margin-top:16px}
.faq-side-note{margin-top:32px;padding:24px;background:var(--light);border-left:3px solid var(--red);border-radius:0 4px 4px 0}
.faq-side-note p{font-size:14px;line-height:1.7;color:var(--mid)}
.faq-side-note strong{color:var(--ink)}
.faq-list{display:flex;flex-direction:column;gap:12px}
.faq-item{background:var(--light);border-radius:4px;border:1px solid var(--border);overflow:hidden;transition:box-shadow .2s,border-color .2s}
.faq-item.open{box-shadow:0 4px 20px rgba(0,0,0,.08);border-color:rgba(196,18,48,.2)}
.faq-q{display:flex;align-items:center;justify-content:space-between;padding:20px 24px;cursor:pointer;gap:16px;user-select:none}
.faq-q-text{font-family:'Barlow',sans-serif;font-size:15px;font-weight:700;color:var(--dark);line-height:1.35}
.faq-icon{width:28px;height:28px;border-radius:50%;border:2px solid var(--border);display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:all .25s;background:#fff}
.faq-item.open .faq-icon{background:var(--red);border-color:var(--red)}
.faq-icon svg{width:14px;height:14px;color:var(--mid);transition:all .25s}
.faq-item.open .faq-icon svg{color:#fff;transform:rotate(45deg)}
.faq-a{display:none;padding:0 24px 20px;font-size:14px;line-height:1.78;color:var(--mid)}
.faq-item.open .faq-a{display:block}
@media(max-width:1200px){.cat-cards{grid-template-columns:1fr}.faq-inner{grid-template-columns:1fr;gap:48px}}
@media(max-width:700px){.cat-card-body{padding:24px 28px}}

/* ===== Page: Contact (cards) ===== */
.contact-cards-section{padding:72px 0;background:#fff;border-top:4px solid var(--red)}
.contact-cards-head{text-align:center;margin-bottom:56px}
.contact-cards-head .section-sub{margin:0 auto}
.contact-cards-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.contact-card{background:var(--light);border-radius:6px;border:1px solid var(--border);padding:36px 28px;text-align:center;transition:all .3s ease;position:relative;overflow:hidden}
.contact-card::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:var(--border);transition:background .3s}
.contact-card:hover{box-shadow:0 10px 36px rgba(0,0,0,.10);transform:translateY(-5px);border-color:rgba(196,18,48,.15)}
.contact-card:hover::before{background:var(--red)}
.contact-card-icon{width:60px;height:60px;margin:0 auto 20px;border-radius:50%;background:rgba(27,59,143,.08);display:flex;align-items:center;justify-content:center;transition:background .3s}
.contact-card:hover .contact-card-icon{background:rgba(196,18,48,.08)}
.contact-card-icon svg{width:28px;height:28px;color:var(--blue);transition:color .3s}
.contact-card:hover .contact-card-icon svg{color:var(--red)}
.contact-card-title{font-family:'Barlow',sans-serif;font-size:15px;font-weight:700;color:var(--dark);margin-bottom:12px}
.contact-card-detail{font-size:15px;font-weight:600;color:var(--ink);margin-bottom:4px}
.contact-card-note{font-size:13px;color:var(--mid);line-height:1.5}
.contact-card-link{display:inline-flex;align-items:center;gap:6px;font-size:13px;font-weight:700;color:var(--red);margin-top:12px;transition:gap .2s}
.contact-card-link:hover{gap:10px}
@media(max-width:1100px){.contact-cards-grid{grid-template-columns:1fr 1fr}}
@media(max-width:560px){.contact-cards-grid{grid-template-columns:1fr}}

/* ===== Archive: Service (intro/stats/process/industries) ===== */
.intro-section{padding:96px 0;background:#fff;border-top:4px solid var(--red)}
.intro-inner{display:grid;grid-template-columns:1fr 1fr;gap:72px;align-items:center}
.intro-text p{font-size:15px;line-height:1.8;color:var(--mid);margin-top:16px}
.check-list{list-style:none;margin-top:24px;display:flex;flex-direction:column;gap:10px}
.check-list li{display:flex;align-items:flex-start;gap:10px;font-size:15px;color:var(--ink)}
.check-list li::before{content:"\2713";color:var(--blue);font-weight:700;flex-shrink:0;margin-top:1px}
.intro-img-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.ig{border-radius:6px;overflow:hidden;background:var(--light)}
.ig img{width:100%;height:100%;object-fit:cover}
.ig:first-child{grid-column:span 2;aspect-ratio:16/7}
.ig:not(:first-child){aspect-ratio:4/3}
.stats-bar{background:#0C1B35;padding:64px 0;position:relative;overflow:hidden}
.stats-bar::before{content:'';position:absolute;top:-80px;right:-60px;width:360px;height:360px;border-radius:50%;border:60px solid rgba(255,255,255,.03);pointer-events:none}
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:rgba(255,255,255,.08)}
.stat-item{background:#0C1B35;padding:44px 36px;text-align:center}
.stat-num{font-family:'Barlow',sans-serif;font-size:clamp(36px,4vw,56px);font-weight:800;color:#fff;line-height:1}
.stat-num span{color:#F9A61A}
.stat-label{font-size:14px;color:rgba(255,255,255,.55);margin-top:8px;line-height:1.4}
.app-section{padding:96px 0;background:#fff}
.section-center{text-align:center;margin-bottom:60px}
.section-center .section-sub{margin:0 auto}
.app-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.process-section{padding:96px 0;background:var(--light)}
.process-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:0;margin-top:56px;position:relative}
.process-steps::before{content:'';position:absolute;top:38px;left:calc(12.5% + 24px);right:calc(12.5% + 24px);height:2px;background:linear-gradient(90deg,var(--blue),#F9A61A);z-index:0}
.ps-item{text-align:center;position:relative;z-index:1;padding:0 16px}
.ps-num{width:76px;height:76px;border-radius:50%;background:var(--blue);color:#fff;font-family:'Barlow',sans-serif;font-weight:800;font-size:22px;display:flex;align-items:center;justify-content:center;margin:0 auto 20px;box-shadow:0 4px 16px rgba(27,59,143,.3);position:relative;z-index:2}
.ps-num.gold{background:#F9A61A;color:#111}
.ps-title{font-family:'Barlow',sans-serif;font-weight:700;font-size:16px;color:var(--dark);margin-bottom:8px}
.ps-desc{font-size:14px;color:var(--mid);line-height:1.65}
.industries-section{padding:96px 0;background:#fff}
.ind-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:48px}
.ind-card{background:var(--light);border:1px solid var(--border);border-radius:6px;padding:28px 24px;text-align:center;transition:all .3s ease}
.ind-card:hover{background:#fff;border-color:var(--blue);box-shadow:0 8px 24px rgba(27,59,143,.1);transform:translateY(-4px)}
.ind-icon{font-size:2rem;margin-bottom:12px}
.ind-title{font-family:'Barlow',sans-serif;font-weight:700;font-size:15px;color:var(--dark);margin-bottom:6px}
.ind-desc{font-size:13px;color:var(--mid);line-height:1.6}
@media(max-width:960px){.intro-inner{grid-template-columns:1fr}.app-grid{grid-template-columns:1fr 1fr}.process-steps{grid-template-columns:1fr 1fr;gap:28px}.process-steps::before{display:none}.ind-grid{grid-template-columns:1fr 1fr}.stats-grid{grid-template-columns:1fr 1fr}}
@media(max-width:700px){.app-grid{grid-template-columns:1fr}}
@media(max-width:480px){.ind-grid{grid-template-columns:1fr 1fr}}

/* ===== Archive: Solution (split/process-timeline/capability/why) ===== */
.split-section{padding:96px 0;background:#fff;border-top:4px solid var(--red)}
.split-inner{display:grid;grid-template-columns:1fr 1fr;gap:72px;align-items:center}
.split-text p{font-size:15px;color:var(--mid);line-height:1.8;margin-top:16px}
.feature-list{margin-top:28px;display:flex;flex-direction:column;list-style:none}
.feature-list li{display:flex;align-items:flex-start;gap:14px;padding:14px 0;border-bottom:1px solid var(--border)}
.feature-list li:last-child{border-bottom:none}
.fi{width:36px;height:36px;background:var(--blue);border-radius:4px;display:flex;align-items:center;justify-content:center;flex-shrink:0;color:#fff;font-size:15px}
.ft{font-size:14px;color:var(--ink)}
.ft strong{display:block;font-family:'Barlow',sans-serif;font-size:15px;font-weight:700;margin-bottom:2px;color:var(--dark)}
.split-imgs{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.si{border-radius:6px;overflow:hidden;background:var(--light)}
.si img{width:100%;height:100%;object-fit:cover}
.si:first-child{grid-column:span 2;aspect-ratio:16/7}
.si:not(:first-child){aspect-ratio:4/3}
.solutions-section{padding:96px 0;background:var(--light)}
.sc-tag{background:var(--light);border:1px solid var(--border);font-size:12px;font-weight:600;padding:4px 10px;border-radius:2px;color:var(--ink)}
.proc-timeline{display:grid;grid-template-columns:repeat(5,1fr);gap:0;margin-top:60px;position:relative}
.proc-timeline::before{content:'';position:absolute;top:36px;left:10%;right:10%;height:2px;background:linear-gradient(90deg,var(--blue),#F9A61A);z-index:0}
.pt-item{text-align:center;position:relative;z-index:1;padding:0 10px}
.pt-dot{width:72px;height:72px;border-radius:50%;background:#fff;border:3px solid var(--blue);color:var(--blue);font-family:'Barlow',sans-serif;font-weight:800;font-size:18px;display:flex;align-items:center;justify-content:center;margin:0 auto 18px;position:relative;z-index:2;transition:all .2s ease}
.pt-item:hover .pt-dot{background:var(--blue);color:#fff;box-shadow:0 4px 16px rgba(27,59,143,.3)}
.pt-dot.gold{border-color:#F9A61A;color:#F9A61A}
.pt-item:hover .pt-dot.gold{background:#F9A61A;color:#111}
.pt-title{font-family:'Barlow',sans-serif;font-weight:700;font-size:15px;color:var(--dark);margin-bottom:6px}
.pt-desc{font-size:13px;color:var(--mid);line-height:1.6}
.cap-section{background:#0C1B35;padding:96px 0}
.cap-inner{display:grid;grid-template-columns:1fr 1fr;gap:72px;align-items:center}
.cap-text h2{font-family:'Barlow',sans-serif;font-weight:800;font-size:clamp(24px,3vw,40px);color:#fff;line-height:1.2;margin-bottom:16px}
.cap-text p{font-size:15px;color:rgba(255,255,255,.72);line-height:1.8;margin-bottom:16px}
.cap-items{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:8px}
.cap-item{background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.12);border-radius:4px;padding:18px 20px}
.ci-num{font-family:'Barlow',sans-serif;font-weight:800;font-size:clamp(22px,2.5vw,32px);color:#F9A61A;margin-bottom:4px}
.ci-label{font-size:13px;color:rgba(255,255,255,.65)}
.cap-gallery{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.cg-item{border-radius:6px;overflow:hidden;background:#1a2a48}
.cg-item img{width:100%;height:100%;object-fit:cover}
.cg-item:first-child{grid-column:span 2;aspect-ratio:16/7}
.cg-item:not(:first-child){aspect-ratio:4/3}
.why-section{padding:96px 0;background:var(--light)}
.why-section .why-grid{grid-template-columns:repeat(3,1fr);margin-top:56px}
.why-card{padding:32px 28px;border:1px solid var(--border);border-radius:6px;background:#fff;transition:all .3s ease}
.why-card:hover{border-color:var(--blue);box-shadow:0 8px 28px rgba(27,59,143,.1);transform:translateY(-4px)}
.why-section .why-icon{font-size:1.4rem}
.why-card h3{font-family:'Barlow',sans-serif;font-weight:700;font-size:17px;color:var(--dark);margin-bottom:8px}
.why-card p{font-size:14px;color:var(--mid);line-height:1.7}
@media(max-width:960px){.split-inner{grid-template-columns:1fr}.proc-timeline{grid-template-columns:1fr 1fr;gap:24px}.proc-timeline::before{display:none}.cap-inner{grid-template-columns:1fr}.why-section .why-grid{grid-template-columns:1fr 1fr}}
@media(max-width:700px){.why-section .why-grid{grid-template-columns:1fr}}
