@layer components {
/* ---- HERO ---- */
.hero { position: relative; min-height: 520px; background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-800) 100%); overflow: hidden; display: flex; flex-direction: column; }
.hero__bg { position: absolute; inset: 0; opacity: .06; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.6) 1px, transparent 0); background-size: 28px 28px; }
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; padding: 72px 0 48px; min-height: 380px; }
.hero__content { max-width: 600px; }
.hero__title { font-size: 44px; font-weight: 800; color: #fff; line-height: 1.3; margin: 0 0 12px; letter-spacing: -.5px; }
.hero__accent { color: var(--gold-400); }
.hero__desc { font-size: 16px; color: rgba(255,255,255,.75); line-height: 1.7; margin: 0 0 24px; }
.hero__actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.hero__specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 20px; max-width: 400px; }
.hero__spec { display: flex; align-items: center; gap: 8px; padding: 8px 12px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: 8px; font-size: 13px; color: rgba(255,255,255,.85); }
.hero__spec strong { font-weight: 700; color: #fff; font-size: 14px; }
.hero__spec span { font-size: 12px; color: rgba(255,255,255,.6); }
.hero__tel { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.8); font-size: 14px; font-weight: 600; text-decoration: none; margin-left: 8px; }
.hero__product { }
.hero-card { display: block; width: 340px; border-radius: 14px; overflow: hidden; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); text-decoration: none; box-shadow: 0 8px 32px rgba(0,0,0,.18); transition: transform .3s, box-shadow .3s; }
.hero-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.22); }
.hero-card img { width: 100%; height: 240px; object-fit: cover; display: block; }
.hero-card__placeholder { width: 100%; height: 240px; display: flex; align-items: center; justify-content: center; font-size: 64px; font-weight: 900; color: rgba(255,255,255,.2); }
.hero-card__info { padding: 16px 20px; }
.hero-card__cat { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gold-400); }
.hero-card__info h3 { font-size: 15px; font-weight: 700; color: #fff; margin: 4px 0 0; line-height: 1.4; }
.hero__stats { position: relative; z-index: 2; padding: 0 0 48px; }
.hfade { opacity: 0; transform: translateY(16px); animation: fadeUp .5s ease forwards; animation-delay: var(--d, 0s); }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.tw-cursor { color: var(--gold-400); animation: blink .7s step-end infinite; font-weight: 300; }
@keyframes blink { 50% { opacity: 0; } }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); background: rgba(255,255,255,.96); border-radius: 12px; padding: 20px 0; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.stats__item { text-align: center; padding: 0 12px; border-right: 1px solid rgba(0,0,0,.07); }
.stats__item:last-child { border-right: none; }
.stats__val { font-size: 28px; font-weight: 800; color: var(--primary-600); white-space: nowrap; line-height: 1.2; }
.stats__label { font-size: 13px; color: var(--steel-600); margin-top: 2px; font-weight: 500; }
.hbtn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px; border-radius: 8px; font-size: 14px; font-weight: 700; text-decoration: none; transition: all .25s; cursor: pointer; border: none; }
.hbtn--primary { background: var(--gold-400); color: #1a1a2e; }
.hbtn--primary:hover { background: var(--gold-500); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(251,191,36,.25); }
.hbtn--outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.3); }
.hbtn--outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); }
.hbtn--gold { background: var(--gold-400); color: #1a1a2e; }
.hbtn--gold:hover { background: var(--gold-500); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(251,191,36,.25); }
.hbtn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.3); font-weight: 600; }
.hbtn--ghost:hover { background: rgba(255,255,255,.1); }
.hbtn--lg { padding: 12px 28px; font-size: 15px; }

.sec-header { margin-bottom: 40px; }
.sec-header--center { text-align: center; }
.sec-title { font-size: 28px; font-weight: 800; color: var(--steel-800); letter-spacing: -.5px; }
.sec-title--light { color: #fff; }
.sec-sub { font-size: 14px; color: var(--steel-500); margin-top: 6px; }
.sec-sub--light { color: rgba(255,255,255,.65); }
.sec-more { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--primary-600); text-decoration: none; }
.sec-more:hover { color: var(--primary-700); }

.cats-section { background: var(--bg-alt, #f8fafc); }
.cats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.cat-card { display: flex; flex-direction: column; align-items: center; padding: 28px 20px; border-radius: 12px; background: #fff; border: 1px solid var(--steel-100, #e2e8f0); text-decoration: none; transition: all .3s; }
.cat-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.06); border-color: var(--primary-200); }
.cat-card__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--primary-50); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.cat-card__icon svg { color: var(--primary-600); }
.cat-card__body h3 { font-size: 15px; font-weight: 700; color: var(--steel-800); margin-bottom: 4px; }
.cat-card__count { font-size: 12px; color: var(--steel-400); }
.cat-card__arrow { margin-top: auto; padding-top: 12px; color: var(--primary-600); opacity: 0; transition: opacity .3s; }
.cat-card:hover .cat-card__arrow { opacity: 1; }

.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }
.prod-card { display: block; border-radius: 12px; overflow: hidden; background: #fff; border: 1px solid var(--steel-100, #e2e8f0); text-decoration: none; transition: all .3s; position: relative; }
.prod-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.prod-card__img { height: 200px; overflow: hidden; background: var(--steel-50, #f8fafc); }
.prod-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.prod-card:hover .prod-card__img img { transform: scale(1.05); }
.prod-card__noimg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 36px; font-weight: 900; color: var(--steel-200); }
.prod-card__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.4); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; }
.prod-card:hover .prod-card__overlay { opacity: 1; }
.prod-card__body { padding: 16px 20px; }
.prod-card__tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 1px; color: var(--gold-600); text-transform: uppercase; margin-bottom: 6px; }
.prod-card__body h3 { font-size: 15px; font-weight: 700; color: var(--steel-800); margin-bottom: 4px; }
.prod-card__spec { font-size: 12px; color: var(--steel-500); }

.advantages { background: var(--primary-700); color: #fff; }
.advantages .sec-title { color: #fff; }
.advantages .sec-sub { color: rgba(255,255,255,.65); }
.adv-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.adv-card { padding: 28px 24px; border-radius: 12px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); transition: all .3s; }
.adv-card:hover { background: rgba(255,255,255,.14); transform: translateY(-3px); }
.adv-card__icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.adv-card__icon svg { color: var(--gold-400); }
.adv-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.adv-card p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.7; }
.adv-card__bar { width: 40px; height: 3px; background: var(--gold-400); border-radius: 2px; margin-top: 16px; }
.adv-card__num { position: absolute; top: 16px; right: 20px; font-size: 36px; font-weight: 900; color: rgba(255,255,255,.06); }

.flow-section { background: var(--bg-alt, #f8fafc); }
.cats-section { background: var(--bg-alt, #f8fafc); }
.flow-steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; position: relative; }
.flow-step { text-align: center; padding: 24px 16px; border-radius: 12px; background: #fff; border: 1px solid var(--steel-100, #e2e8f0); position: relative; transition: all .3s; }
.flow-step:hover { transform: translateY(-3px); box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.flow-step__num { position: absolute; top: 8px; right: 12px; font-size: 28px; font-weight: 900; color: rgba(0,0,0,.04); }
.flow-step__icon { width: 44px; height: 44px; border-radius: 50%; background: var(--primary-50); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-size: 22px; }
.flow-step h4 { font-size: 15px; font-weight: 700; color: var(--steel-800); margin-bottom: 6px; }
.flow-step p { font-size: 12px; color: var(--steel-500); line-height: 1.5; }
.flow-step__arrow { margin-top: 12px; color: var(--steel-300); }
.section { padding: 60px 0; }
.section-alt { background: var(--bg-alt, #f8fafc); }
.showcase__float { display: none; }
.showcase__side { display: none; }
.showcase__glow { display: none; }
.showcase__placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 48px; font-weight: 900; color: rgba(255,255,255,.2); }


.news-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.news-main { display: block; border-radius: 12px; overflow: hidden; background: #fff; border: 1px solid var(--steel-100, #e2e8f0); text-decoration: none; transition: all .3s; }
.news-main:hover { box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.news-main__img { height: 260px; overflow: hidden; }
.news-main__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.news-main:hover .news-main__img img { transform: scale(1.04); }
.news-main__noimg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; letter-spacing: 4px; color: var(--steel-200); background: var(--steel-50); }
.news-main__body { padding: 20px 24px; }
.news-main__meta { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.news-main__body h3 { font-size: 18px; font-weight: 700; color: var(--steel-800); margin-bottom: 6px; }
.news-main__body p { font-size: 13px; color: var(--steel-500); line-height: 1.7; }
.news-list { display: flex; flex-direction: column; gap: 12px; }
.news-item { display: flex; gap: 12px; padding: 12px; border-radius: 10px; background: #fff; border: 1px solid var(--steel-100, #e2e8f0); text-decoration: none; transition: all .3s; }
.news-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,.04); border-color: var(--primary-200); }
.news-item__thumb { width: 80px; height: 60px; border-radius: 6px; overflow: hidden; flex-shrink: 0; background: var(--steel-50, #f8fafc); }
.news-item__thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-item__thumb-ph { width: 80px; height: 60px; border-radius: 6px; background: var(--primary-50); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 900; color: var(--steel-200); flex-shrink: 0; }
.ndate { font-size: 20px; font-weight: 800; color: var(--primary-600); line-height: 1; }
.news-item__ym { font-size: 10px; color: var(--steel-400); margin-top: 2px; }
.news-item__day { font-size: 10px; color: var(--steel-400); }
.news-item__body h4 { font-size: 14px; font-weight: 700; color: var(--steel-800); margin-bottom: 2px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-item__body p { font-size: 12px; color: var(--steel-500); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-item__meta { font-size: 11px; color: var(--steel-400); margin-top: 4px; }
.ntag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 1px; padding: 2px 8px; border-radius: 4px; }
.ntag--gold { color: var(--gold-600); background: rgba(232,168,56,.1); }
.nmore { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--primary-600); text-decoration: none; margin-top: 16px; }

.hbtn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; border-radius: 8px; font-size: 13px; font-weight: 700; text-decoration: none; transition: all .3s; cursor: pointer; border: none; }
.hbtn--gold { background: var(--gold-400); color: var(--primary-800); }
.hbtn--gold:hover { background: var(--gold-500); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(251,191,36,.3); }
.hbtn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.35); font-weight: 600; }
.hbtn--ghost:hover { background: rgba(255,255,255,.2); }
.hbtn--lg { padding: 14px 32px; font-size: 15px; }

.cta { position: relative; padding: 60px 0; background: var(--primary-50); overflow: hidden; }
.cta__bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-50) 100%); }
.cta__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.cta__text h2 { font-size: 26px; font-weight: 800; color: var(--primary-800); margin-bottom: 6px; }
.cta__text p { font-size: 14px; color: var(--steel-500); }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta .hbtn--gold { background: var(--primary-600); color: #fff; }
.cta .hbtn--gold:hover { background: var(--primary-700); box-shadow: 0 4px 16px rgba(0,82,155,.2); }
.cta .hbtn--ghost { background: #fff; color: var(--primary-600); border: 1px solid var(--primary-200); }
.cta .hbtn--ghost:hover { background: var(--primary-50); }

.section--dark { background: var(--primary-700); color: #fff; }

@media (max-width: 1024px) {
    .hero__inner { grid-template-columns: 1fr; gap: 32px; padding: 88px 0 40px; }
    .hero__title { font-size: 34px; }
    .hero-card { width: 100%; max-width: 400px; }
    .cats-grid { grid-template-columns: repeat(3, 1fr); }
    .news-layout { grid-template-columns: 1fr; }
    .adv-grid { grid-template-columns: repeat(2, 1fr); }
    .flow-steps { grid-template-columns: repeat(3, 1fr); row-gap: 24px; }
    .flow-steps::before { display: none; }
}

@media (max-width: 768px) {
    .hero__inner { grid-template-columns: 1fr; padding: 88px 0 32px; min-height: auto; }
    .hero__title { font-size: 28px; }
    .hero__actions { flex-direction: column; align-items: flex-start; }
    .hero-card { width: 100%; max-width: 320px; }
    .hero-card img { height: 180px; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .stats__val { font-size: 24px; }
    .cats-grid { grid-template-columns: repeat(2, 1fr); }
    .adv-grid { grid-template-columns: 1fr; }
    .flow-steps { grid-template-columns: repeat(2, 1fr); }
    .cta__inner { flex-direction: column; text-align: center; }
    .cta__actions { justify-content: center; }
}

.friend-links-section { background: var(--steel-50, #f8fafc); padding: 32px 0; }
.fl-header { margin-bottom: 12px; }
.fl-header span { font-size: 14px; font-weight: 700; color: var(--steel-600); letter-spacing: .5px; }
.fl-list { display: flex; flex-wrap: wrap; gap: 8px 24px; align-items: center; }
.fl-item { font-size: 14px; color: var(--steel-600); text-decoration: none; transition: color .2s; padding: 4px 0; }
.fl-item:hover { color: var(--primary-600); text-decoration: underline; }
