/* ===== VARIABLES ===== */
:root {
    --primary: #1e3a6b;
    --primary-dark: #142a52;
    --accent: #1a7a3c;
    --accent-dark: #15662f;
    --accent-light: #e8f5ee;
    --bg: #f4f6f9;
    --bg-white: #ffffff;
    --text: #1a202c;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --border: #e2e8f0;
    --success: #16a34a;
    --warning: #d97706;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
    --shadow: 0 4px 16px rgba(0,0,0,.10);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.14);
    --radius: 10px;
    --radius-lg: 16px;
    --transition: .2s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, sans-serif; font-size: 15px; line-height: 1.6; color: var(--text); background: var(--bg); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: 15px; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }
.section-sm { padding: 40px 0; }

/* ===== TOPBAR ===== */
.topbar { background: var(--primary-dark); color: rgba(255,255,255,.75); font-size: 13px; padding: 7px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar a { color: rgba(255,255,255,.8); transition: color var(--transition); }
.topbar a:hover { color: #fff; }
.topbar-phone { font-weight: 600; color: #fff !important; }

/* ===== HEADER ===== */
.header { background: var(--bg-white); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 1000; }
.header .container { display: flex; align-items: center; gap: 20px; height: 70px; }

/* Logo */
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 60px; width: auto; display: block; max-width: 220px; }
.footer-logo-img { height: 52px; width: auto; display: block; max-width: 200px; filter: brightness(0) invert(1); }

/* Nav */
.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-link { padding: 8px 14px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--text); transition: all var(--transition); white-space: nowrap; }
.nav-link:hover { background: var(--bg); color: var(--primary); }
.nav-dropdown { position: relative; }
.nav-dropdown .arrow { font-size: 10px; margin-left: 2px; }
.dropdown-menu { display: none; position: absolute; top: calc(100% + 8px); left: 0; background: var(--bg-white); border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid var(--border); min-width: 240px; padding: 8px; z-index: 200; }
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 9px 14px; border-radius: 7px; font-size: 14px; color: var(--text); transition: all var(--transition); }
.dropdown-menu a:hover { background: var(--bg); color: var(--primary); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-call { display: flex; align-items: center; gap: 6px; padding: 9px 18px; background: var(--accent); color: #fff; border-radius: 8px; font-size: 13px; font-weight: 600; transition: all var(--transition); white-space: nowrap; }
.btn-call:hover { background: var(--accent-dark); transform: translateY(-1px); }
.cart-btn { position: relative; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; background: var(--bg); border-radius: 8px; color: var(--text); transition: all var(--transition); }
.cart-btn:hover { background: var(--primary); color: #fff; }
.cart-count { position: absolute; top: 4px; right: 4px; background: var(--accent); color: #fff; width: 18px; height: 18px; border-radius: 50%; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.cart-count:empty, .cart-count[data-count="0"] { display: none; }
.burger { display: none; flex-direction: column; gap: 5px; width: 36px; height: 36px; align-items: center; justify-content: center; }
.burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }

/* ===== HERO ===== */
.hero { background: linear-gradient(135deg, var(--primary) 0%, #2d5499 60%, #1a3a6b 100%); color: #fff; padding: 80px 0 90px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -60px; right: -80px; width: 500px; height: 500px; background: rgba(255,255,255,.04); border-radius: 50%; }
.hero::after { content: ''; position: absolute; bottom: -100px; left: -60px; width: 350px; height: 350px; background: rgba(255,255,255,.03); border-radius: 50%; }
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); padding: 6px 14px; border-radius: 50px; font-size: 13px; font-weight: 500; margin-bottom: 20px; }
.hero h1 { font-size: clamp(28px, 4vw, 46px); font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.hero h1 span { color: #ffa040; }
.hero-sub { font-size: 16px; color: rgba(255,255,255,.8); margin-bottom: 36px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.hero-stat { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); padding: 16px; text-align: center; }
.hero-stat-num { font-size: 28px; font-weight: 800; color: #ffa040; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,.7); margin-top: 4px; }
.hero-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-card { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); padding: 20px; transition: transform var(--transition); }
.hero-card:hover { transform: translateY(-4px); }
.hero-card-icon { font-size: 32px; margin-bottom: 10px; }
.hero-card h3 { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.hero-card p { font-size: 12px; color: rgba(255,255,255,.65); }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 9px; font-size: 15px; font-weight: 600; transition: all var(--transition); cursor: pointer; border: 2px solid transparent; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,122,60,.35); }
.btn-secondary { background: var(--bg-white); color: var(--primary); }
.btn-secondary:hover { background: var(--bg); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: var(--bg); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }
.btn-cart { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-cart:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(30,58,107,.35); }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--bg-white); border-bottom: 1px solid var(--border); padding: 20px 0; }
.trust-bar .container { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; }
.trust-icon { font-size: 22px; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 48px; }
.section-label { display: inline-block; background: var(--accent-light); color: var(--accent); font-size: 13px; font-weight: 600; padding: 5px 14px; border-radius: 50px; margin-bottom: 12px; }
.section-header h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.section-header p { font-size: 16px; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ===== CATEGORIES ===== */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.category-card { background: var(--bg-white); border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 32px 20px 24px; text-align: center; transition: all var(--transition); cursor: pointer; }
.category-card:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: 0 12px 32px rgba(26,122,60,.14); }
.category-icon { display: flex; align-items: center; justify-content: center; width: 80px; height: 80px; margin: 0 auto 18px; background: var(--accent-light); border-radius: 20px; transition: all var(--transition); color: var(--accent); }
.category-card:hover .category-icon { background: var(--accent); color: #fff; }
.category-icon svg { width: 44px; height: 44px; transition: color var(--transition); }
.category-card h3 { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 8px; line-height: 1.3; }
.category-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.category-count { display: inline-block; background: var(--bg); color: var(--text-muted); font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 50px; margin-top: 12px; }

/* ===== SUBCATEGORY GRID (catalog parent category) ===== */
.subcats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 20px; }
.subcat-card { background: var(--bg-white); border: 2px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; color: inherit; transition: all var(--transition); display: flex; flex-direction: column; text-align: center; }
.subcat-card:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: 0 12px 32px rgba(26,122,60,.14); }
.subcat-card-header { padding: 32px 20px 24px; background: var(--accent-light); display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.subcat-card:hover .subcat-card-header { background: var(--accent); }
.subcat-card-icon { font-size: 42px; line-height: 1; display: block; }
.subcat-card-body { padding: 16px 12px 20px; flex: 1; display: flex; flex-direction: column; gap: 6px; align-items: center; }
.subcat-card-name { font-size: 15px; font-weight: 700; color: var(--primary); line-height: 1.3; }
.subcat-card-count { font-size: 12px; color: var(--text-muted); background: var(--bg); padding: 2px 10px; border-radius: 50px; display: inline-block; margin-top: 4px; }

/* ===== PRODUCT CARD ===== */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.product-card { background: var(--bg-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--border); overflow: hidden; transition: all var(--transition); display: flex; flex-direction: column; position: relative; }
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: #c8d6e8; }
/* Full-card click overlay */
.card-full-link { position: absolute; inset: 0; z-index: 1; }
/* Badge outside overflow:hidden so image scale doesn't cover it */
.product-img-wrap { position: relative; }
.product-badge { position: absolute; top: 10px; left: 10px; z-index: 3; background: #ffa040; color: #fff; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 50px; pointer-events: none; }
.product-badge.badge-order { background: var(--warning); }
.product-img { aspect-ratio: 4/3; overflow: hidden; background: var(--bg); display: flex; align-items: center; justify-content: center; }
.product-img img { width: 100%; height: 100%; object-fit: contain; padding: 16px; transition: transform .3s ease; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-img-placeholder { font-size: 60px; color: var(--text-light); }
.product-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-category { font-size: 12px; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
.product-name { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 8px; line-height: 1.4; flex: 1; }
.product-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-price { font-size: 20px; font-weight: 800; color: var(--accent); margin-bottom: 14px; }
.product-price.price-request { font-size: 14px; color: var(--text-muted); font-weight: 500; }
.product-actions { display: flex; gap: 8px; margin-top: auto; position: relative; z-index: 2; }
.product-actions .btn { flex: 1; font-size: 13px; padding: 10px 14px; }
.availability { font-size: 12px; font-weight: 500; margin-bottom: 12px; }
.in-stock { color: var(--success); }
.on-order { color: var(--warning); }
.out-stock { color: #ef4444; }

/* ===== PRODUCT PAGE ===== */
.product-detail { background: var(--bg-white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.product-gallery { position: sticky; top: 90px; }
.product-main-img { background: var(--bg); border-radius: var(--radius); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; overflow: hidden; margin-bottom: 12px; }
.product-main-img img { max-height: 380px; object-fit: contain; padding: 20px; }
.product-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.product-thumb { width: 72px; height: 72px; border-radius: 8px; border: 2px solid var(--border); overflow: hidden; cursor: pointer; background: var(--bg); transition: border-color var(--transition); }
.product-thumb.active, .product-thumb:hover { border-color: var(--accent); }
.product-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.product-info-title { font-size: 26px; font-weight: 800; color: var(--primary); margin-bottom: 12px; line-height: 1.3; }
.product-info-meta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 20px; }
.product-code { font-size: 13px; color: var(--text-muted); }
.product-info-price { font-size: 34px; font-weight: 800; color: var(--accent); margin-bottom: 8px; }
.product-info-price.price-request { font-size: 18px; color: var(--text-muted); font-weight: 500; }
.product-info-desc { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.product-qty { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.qty-input { display: flex; align-items: center; border: 2px solid var(--border); border-radius: 9px; overflow: hidden; }
.qty-btn { width: 38px; height: 42px; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 600; color: var(--text-muted); transition: all var(--transition); }
.qty-btn:hover { background: var(--bg); color: var(--primary); }
.qty-field { width: 52px; text-align: center; border: none; outline: none; font-size: 16px; font-weight: 700; padding: 0; }
.product-info-actions { display: flex; gap: 12px; margin-bottom: 28px; }
.product-specs { margin-top: 32px; }
.specs-title { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 16px; }
.specs-table { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.specs-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.specs-row:nth-child(even) { background: var(--bg); }
.specs-row:first-child { background: var(--primary); color: #fff; font-weight: 600; }
.specs-cell { padding: 11px 16px; font-size: 14px; border-bottom: 1px solid var(--border); }
.specs-cell:first-child { border-right: 1px solid var(--border); font-weight: 500; }

/* ===== BREADCRUMB ===== */
.breadcrumb { padding: 14px 0; font-size: 13px; color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 8px; }

/* ===== CATALOG ===== */
.catalog-layout { display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start; }
.sidebar { background: var(--bg-white); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); position: sticky; top: 90px; }
.sidebar-title { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 16px; }
.sidebar-cats { display: flex; flex-direction: column; gap: 4px; }
.sidebar-cat { padding: 9px 14px; border-radius: 8px; font-size: 14px; color: var(--text); transition: all var(--transition); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.sidebar-cat:hover, .sidebar-cat.active { background: var(--accent-light); color: var(--accent); font-weight: 600; }
.sidebar-cat-count { font-size: 12px; font-weight: 400; color: var(--text-light); }
.sidebar-cat.active .sidebar-cat-count { color: var(--accent); }
.sidebar-divider { height: 1px; background: var(--border); margin: 16px 0; }
.filter-group { margin-bottom: 16px; }
.filter-group-title { font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
.filter-checkbox { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text); padding: 5px 0; cursor: pointer; user-select: none; }
.filter-checkbox input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--accent); cursor: pointer; flex-shrink: 0; }
.filter-apply-btn { width: 100%; margin-top: 4px; }
.filter-reset-btn { width: 100%; margin-top: 6px; text-align: center; }
.catalog-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.catalog-count { font-size: 14px; color: var(--text-muted); }
.catalog-sort { padding: 8px 14px; border: 1px solid var(--border); border-radius: 8px; font-size: 14px; background: var(--bg-white); outline: none; }

/* ===== CART ===== */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }
.cart-table { background: var(--bg-white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.cart-table-head { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 40px; gap: 12px; padding: 14px 20px; background: var(--bg); font-size: 13px; font-weight: 600; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.cart-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 40px; gap: 12px; padding: 18px 20px; align-items: center; border-bottom: 1px solid var(--border); }
.cart-row:last-child { border-bottom: none; }
.cart-product { display: flex; align-items: center; gap: 14px; }
.cart-img { width: 64px; height: 64px; border-radius: 8px; object-fit: contain; background: var(--bg); padding: 6px; border: 1px solid var(--border); flex-shrink: 0; }
.cart-product-name { font-size: 14px; font-weight: 600; color: var(--primary); line-height: 1.4; }
.cart-product-cat { font-size: 12px; color: var(--text-muted); margin-top: 3px; }
.cart-price { font-size: 15px; font-weight: 600; color: var(--text); }
.cart-subtotal { font-size: 15px; font-weight: 700; color: var(--accent); }
.cart-remove { color: var(--text-light); transition: color var(--transition); font-size: 18px; line-height: 1; }
.cart-remove:hover { color: #ef4444; }
.cart-summary { background: var(--bg-white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); position: sticky; top: 90px; }
.cart-summary h3 { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.summary-row:last-of-type { border-bottom: none; }
.summary-total { font-size: 22px; font-weight: 800; color: var(--accent); }
.cart-empty { text-align: center; padding: 80px 40px; background: var(--bg-white); border-radius: var(--radius-lg); }
.cart-empty-icon { font-size: 64px; margin-bottom: 20px; }
.cart-empty h2 { font-size: 22px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.cart-empty p { color: var(--text-muted); margin-bottom: 24px; }

/* ===== CHECKOUT ===== */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start; }
.checkout-form { background: var(--bg-white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.form-section { margin-bottom: 32px; }
.form-section-title { font-size: 17px; font-weight: 700; color: var(--primary); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--border); display: flex; align-items: center; gap: 10px; }
.form-section-title span { background: var(--primary); color: #fff; width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-label .req { color: var(--accent); }
.form-control { padding: 12px 16px; border: 2px solid var(--border); border-radius: 9px; font-size: 15px; outline: none; transition: border-color var(--transition); background: var(--bg-white); }
.form-control:focus { border-color: var(--primary); }
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { resize: vertical; min-height: 80px; }
.form-hint { font-size: 12px; color: var(--text-muted); }
.radio-group { display: flex; flex-direction: column; gap: 10px; }
.radio-option { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; border: 2px solid var(--border); border-radius: 9px; cursor: pointer; transition: border-color var(--transition); }
.radio-option:has(input:checked) { border-color: var(--primary); background: #f0f4ff; }
.radio-option input { margin-top: 2px; accent-color: var(--primary); flex-shrink: 0; }
.radio-label { font-size: 14px; font-weight: 600; color: var(--text); }
.radio-desc { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.checkout-order { background: var(--bg-white); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); position: sticky; top: 90px; }
.order-product { display: flex; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); }
.order-product img { width: 52px; height: 52px; object-fit: contain; border-radius: 8px; background: var(--bg); padding: 4px; border: 1px solid var(--border); }
.order-product-info { flex: 1; }
.order-product-name { font-size: 13px; font-weight: 600; color: var(--primary); line-height: 1.4; }
.order-product-qty { font-size: 12px; color: var(--text-muted); }
.order-product-price { font-size: 14px; font-weight: 700; color: var(--text); white-space: nowrap; }

/* ===== FEATURES ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: var(--bg-white); border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; border: 1px solid var(--border); transition: all var(--transition); }
.feature-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon { font-size: 40px; margin-bottom: 14px; }
.feature-card h3 { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ===== CTA BANNER ===== */
.cta-banner { background: linear-gradient(135deg, var(--primary), #2d5499); color: #fff; padding: 60px 0; }
.cta-content { text-align: center; }
.cta-content h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; margin-bottom: 12px; }
.cta-content p { font-size: 16px; color: rgba(255,255,255,.8); margin-bottom: 30px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: #0f1f3d; color: rgba(255,255,255,.75); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.footer-logo { display: inline-block; margin-bottom: 16px; }
.footer-about p { font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
.footer-contacts { display: flex; flex-direction: column; gap: 6px; }
.footer-contacts a { color: rgba(255,255,255,.75); font-size: 14px; transition: color var(--transition); }
.footer-contacts a:hover { color: #fff; }
.footer-nav h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-nav ul { display: flex; flex-direction: column; gap: 8px; }
.footer-nav ul li a { font-size: 14px; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-nav ul li a:hover { color: #fff; }
.footer-nav address { font-style: normal; font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.8; }
.footer-nav address strong { color: rgba(255,255,255,.85); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,.4); flex-wrap: wrap; gap: 10px; }

/* ===== ADMIN ===== */
.admin-body { background: #f1f5f9; }
.admin-topbar { background: var(--primary); color: #fff; padding: 14px 24px; display: flex; justify-content: space-between; align-items: center; }
.admin-logo { font-size: 16px; font-weight: 700; }
.admin-user { font-size: 14px; color: rgba(255,255,255,.8); display: flex; align-items: center; gap: 12px; }
.admin-layout { display: flex; min-height: calc(100vh - 52px); }
.admin-sidebar { width: 240px; background: var(--bg-white); border-right: 1px solid var(--border); padding: 20px 0; flex-shrink: 0; }
.admin-nav a { display: flex; align-items: center; gap: 10px; padding: 11px 20px; font-size: 14px; font-weight: 500; color: var(--text); transition: all var(--transition); border-left: 3px solid transparent; }
.admin-nav a:hover, .admin-nav a.active { background: var(--accent-light); color: var(--accent); border-left-color: var(--accent); }
.admin-content { flex: 1; padding: 32px; overflow-x: auto; }
.admin-page-title { font-size: 22px; font-weight: 700; color: var(--primary); margin-bottom: 24px; }
.admin-card { background: var(--bg-white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; margin-bottom: 24px; }
.admin-card-header { padding: 16px 20px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.admin-card-header h3 { font-size: 15px; font-weight: 700; color: var(--primary); }
.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.admin-table th { padding: 12px 16px; text-align: left; background: var(--bg); font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; border-bottom: 1px solid var(--border); }
.admin-table td { padding: 13px 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--bg); }
.badge { display: inline-block; padding: 3px 10px; border-radius: 50px; font-size: 12px; font-weight: 600; }
.badge-success { background: #dcfce7; color: #16a34a; }
.badge-warning { background: #fef9c3; color: #ca8a04; }
.badge-danger { background: #fee2e2; color: #dc2626; }
.badge-info { background: #dbeafe; color: #2563eb; }
.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 28px; }
.stat-card { background: var(--bg-white); border-radius: var(--radius); border: 1px solid var(--border); padding: 22px; }
.stat-card-num { font-size: 32px; font-weight: 800; color: var(--primary); }
.stat-card-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.stat-card-icon { font-size: 28px; float: right; margin-top: -8px; }
.admin-actions { display: flex; gap: 8px; }
.btn-icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 7px; font-size: 16px; transition: all var(--transition); }
.btn-edit { background: #dbeafe; color: #2563eb; }
.btn-edit:hover { background: #bfdbfe; }
.btn-delete { background: #fee2e2; color: #dc2626; }
.btn-delete:hover { background: #fecaca; }

/* ===== SEARCH BAR ===== */
.search-bar { background: var(--bg-white); border-radius: var(--radius-lg); padding: 20px; margin-bottom: 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); display: flex; gap: 12px; }
.search-bar input { flex: 1; padding: 12px 16px; border: 2px solid var(--border); border-radius: 9px; font-size: 15px; outline: none; }
.search-bar input:focus { border-color: var(--primary); }

/* ===== TOAST ===== */
.toast { position: fixed; bottom: 24px; right: 24px; background: #1e293b; color: #fff; padding: 14px 20px; border-radius: 10px; font-size: 14px; font-weight: 500; z-index: 9999; transform: translateY(80px); opacity: 0; transition: all .3s ease; pointer-events: none; max-width: 300px; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast.toast-success { background: #15803d; }
.toast.toast-error { background: #dc2626; }

/* ===== PAGE TITLES ===== */
.page-hero { background: var(--primary); color: #fff; padding: 40px 0; }
.page-hero h1 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; margin-bottom: 6px; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 15px; }
.page-content { padding: 50px 0; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 60px; }
.about-text h2 { font-size: 28px; font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.about-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.about-nums { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.about-num { text-align: center; background: var(--bg-white); border-radius: var(--radius); padding: 24px 16px; border: 1px solid var(--border); }
.about-num-val { font-size: 36px; font-weight: 800; color: var(--accent); }
.about-num-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ===== SUCCESS PAGE ===== */
.success-box { max-width: 560px; margin: 80px auto; text-align: center; background: var(--bg-white); border-radius: var(--radius-lg); padding: 60px 40px; box-shadow: var(--shadow); }
.success-icon { font-size: 80px; margin-bottom: 24px; }
.success-box h1 { font-size: 28px; font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.success-box p { color: var(--text-muted); font-size: 16px; margin-bottom: 8px; }
.success-order { background: var(--bg); border-radius: var(--radius); padding: 20px; margin: 24px 0; font-size: 15px; }

/* ===== PAGINATION ===== */
.pagination { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 40px; max-width: 100%; }
.page-btn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 14px; font-weight: 600; border: 1px solid var(--border); color: var(--text); transition: all var(--transition); background: var(--bg-white); cursor: pointer; }
.page-btn:hover, .page-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.page-dots { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--text-muted); }

/* ===== LOADER ===== */
.loading { text-align: center; padding: 60px; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════
   PRODUCT LANDING PAGE
═══════════════════════════════════════════════════════ */

/* Hero section wrapper */
.planding-hero { background: var(--bg); padding: 40px 0; }

/* Product trust row */
.product-trust-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.product-trust-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); }
.product-trust-item svg { color: var(--accent); flex-shrink: 0; }


/* Generic landing section */
.planding-section { padding: 64px 0; }
.planding-section-alt { background: var(--bg); }
.planding-section-head { text-align: center; margin-bottom: 48px; }
.planding-section-head h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.planding-section-head p { font-size: 16px; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ── Benefits strip ─────────────────────────────────── */
.planding-benefits { background: var(--primary); padding: 40px 0; }
.planding-benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.15); border-radius: var(--radius-lg); overflow: hidden; }
.planding-benefit-card { background: rgba(255,255,255,.07); padding: 28px 24px; display: flex; gap: 16px; align-items: flex-start; transition: background var(--transition); }
.planding-benefit-card:hover { background: rgba(255,255,255,.13); }
.planding-benefit-icon { font-size: 32px; flex-shrink: 0; line-height: 1; }
.planding-benefit-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.planding-benefit-desc { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.5; }

/* ── Specs layout ───────────────────────────────────── */
.planding-specs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.planding-features-list { display: flex; flex-direction: column; gap: 12px; }
.planding-features-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--text); line-height: 1.5; }
.planding-feature-check { width: 22px; height: 22px; background: var(--accent-light); color: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }

/* ── Audience grid ──────────────────────────────────── */
.planding-audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.planding-audience-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 22px; transition: all var(--transition); }
.planding-audience-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow); }
.planding-audience-icon { font-size: 36px; margin-bottom: 12px; }
.planding-audience-title { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.planding-audience-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── Use cases ──────────────────────────────────────── */
.planding-usecase-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.planding-usecase-card { background: var(--bg); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; border: 1px solid var(--border); transition: all var(--transition); }
.planding-usecase-card:hover { border-color: var(--primary); background: var(--bg-white); transform: translateY(-4px); box-shadow: var(--shadow); }
.planding-usecase-icon { font-size: 44px; margin-bottom: 16px; }
.planding-usecase-title { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.planding-usecase-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── Why Orizon ─────────────────────────────────────── */
.planding-why { background: linear-gradient(135deg, var(--primary) 0%, #2d5499 60%, #1a3a6b 100%); padding: 64px 0; }
.planding-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.planding-why-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; transition: background var(--transition); }
.planding-why-card:hover { background: rgba(255,255,255,.14); }
.planding-why-num { font-size: 42px; font-weight: 900; color: #ffa040; line-height: 1; margin-bottom: 6px; }
.planding-why-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.9); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px; }
.planding-why-card p { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ── CTA ────────────────────────────────────────────── */
.planding-cta { background: var(--accent); padding: 60px 0; }
.planding-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.planding-cta-text h2 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 800; color: #fff; margin-bottom: 10px; }
.planding-cta-text p { font-size: 15px; color: rgba(255,255,255,.85); max-width: 520px; line-height: 1.6; }
.planding-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════
   GALLERY — ZOOM + NAVIGATION
═══════════════════════════════════════════════════════ */

/* Main image wrapper — must be position:relative */
.product-main-img { position: relative; }
.product-main-img img { cursor: zoom-in; }

/* Zoom button */
.gallery-zoom-btn { position: absolute; top: 12px; right: 12px; width: 38px; height: 38px; background: rgba(255,255,255,.9); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--primary); border: 1px solid var(--border); cursor: pointer; transition: all var(--transition); z-index: 5; opacity: 0; }
.product-main-img:hover .gallery-zoom-btn { opacity: 1; }
.gallery-zoom-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Prev/Next arrows on main image */
.gallery-nav { position: absolute; inset: 0; display: flex; align-items: center; justify-content: space-between; pointer-events: none; padding: 0 8px; z-index: 4; }
.gallery-arrow { width: 36px; height: 36px; background: rgba(255,255,255,.9); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; line-height: 1; color: var(--primary); cursor: pointer; transition: all var(--transition); pointer-events: all; opacity: 0; }
.product-main-img:hover .gallery-arrow { opacity: 1; }
.gallery-arrow:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Dot indicators */
.gallery-dots { position: absolute; bottom: 10px; left: 0; right: 0; display: flex; justify-content: center; gap: 6px; z-index: 4; }
.gallery-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.55); border: 1px solid rgba(0,0,0,.15); cursor: pointer; transition: all var(--transition); }
.gallery-dot.active, .gallery-dot:hover { background: var(--accent); border-color: var(--accent); transform: scale(1.25); }

/* ═══════════════════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════════════════ */
.gallery-lightbox { display: none; position: fixed; inset: 0; z-index: 10000; background: rgba(0,0,0,.93); align-items: center; justify-content: center; }
.gallery-lightbox.active { display: flex; }

.lightbox-img-wrap { max-width: 92vw; max-height: 86vh; display: flex; align-items: center; justify-content: center; }
.lightbox-img-wrap img { max-width: 90vw; max-height: 84vh; object-fit: contain; border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0,0,0,.5); user-select: none; }

.lightbox-close { position: absolute; top: 16px; right: 20px; width: 44px; height: 44px; background: rgba(255,255,255,.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; cursor: pointer; transition: background var(--transition); z-index: 2; }
.lightbox-close:hover { background: rgba(255,255,255,.25); }

.lightbox-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; background: rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; line-height: 1; color: #fff; cursor: pointer; transition: background var(--transition); z-index: 2; }
.lightbox-arrow:hover { background: rgba(255,255,255,.25); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-counter { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); background: rgba(255,255,255,.12); color: rgba(255,255,255,.85); padding: 5px 16px; border-radius: 50px; font-size: 13px; font-weight: 600; white-space: nowrap; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — LANDING PAGE
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .planding-benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .planding-why-grid { grid-template-columns: repeat(2, 1fr); }
    .planding-usecase-grid { grid-template-columns: repeat(2, 1fr); }
    .planding-audience-grid { grid-template-columns: repeat(2, 1fr); }
    .planding-cta-inner { flex-direction: column; text-align: center; }
    .planding-cta-text p { margin: 0 auto; }
}
@media (max-width: 768px) {
    .planding-benefits-grid { grid-template-columns: 1fr; }
    .planding-why-grid { grid-template-columns: repeat(2, 1fr); }
    .planding-audience-grid { grid-template-columns: 1fr; }
    .planding-usecase-grid { grid-template-columns: 1fr 1fr; }
    .planding-section { padding: 44px 0; }
    .planding-section-head { margin-bottom: 32px; }
    .lightbox-prev { left: 6px; }
    .lightbox-next { right: 6px; }
    .lightbox-arrow { width: 42px; height: 42px; font-size: 26px; }
}
@media (max-width: 480px) {
    .planding-usecase-grid { grid-template-columns: 1fr; }
    .planding-why-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .catalog-layout { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stat-cards { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 768px) {
    .topbar { display: none; }
    .nav { display: none; position: fixed; inset: 0; background: var(--bg-white); z-index: 999; flex-direction: column; align-items: flex-start; padding: 80px 24px 24px; gap: 0; overflow-y: auto; }
    .nav.open { display: flex; }
    .nav-link { width: 100%; padding: 14px 0; font-size: 16px; border-bottom: 1px solid var(--border); border-radius: 0; }
    .nav-dropdown .dropdown-menu { display: flex; flex-direction: column; position: static; box-shadow: none; border: none; padding: 0 16px; }
    .burger { display: flex; }
    .btn-call { display: none; }
    .hero { padding: 50px 0 60px; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product-detail-grid { grid-template-columns: 1fr; }
    .product-gallery { position: static; }
    .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
    .cart-table-head { display: none; }
    .cart-row { grid-template-columns: 1fr; gap: 8px; position: relative; padding: 16px; }
    .cart-remove { position: absolute; top: 16px; right: 16px; }
    .form-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-nums { grid-template-columns: repeat(3, 1fr); }
    .section { padding: 40px 0; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .hero-stat-num { font-size: 22px; }
    .categories-grid { grid-template-columns: 1fr 1fr; }
    .about-nums { grid-template-columns: 1fr; }
    .stat-cards { grid-template-columns: 1fr; }
    .admin-layout { flex-direction: column; }
    .admin-sidebar { width: 100%; }
}

/* ===== SERVICES ===== */

/* Services listing page */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 0; }
.service-card { display: flex; flex-direction: column; background: var(--bg-white); border-radius: var(--radius-lg); padding: 32px 28px; border: 1px solid var(--border); text-decoration: none; color: var(--text); transition: all var(--transition); }
.service-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-3px); }
.service-card-icon { font-size: 40px; margin-bottom: 16px; }
.service-card-title { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 10px; line-height: 1.3; }
.service-card-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; flex: 1; margin-bottom: 20px; }
.service-card-link { font-size: 14px; font-weight: 600; color: var(--accent); display: flex; align-items: center; gap: 4px; }
.service-card:hover .service-card-link { gap: 8px; }

/* Service landing hero */
.svc-hero { background: linear-gradient(135deg, var(--primary) 0%, #2d5499 60%, #1a3a6b 100%); color: #fff; padding: 64px 0 56px; }
.svc-hero-inner { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.svc-hero-icon { font-size: 48px; margin-bottom: 16px; }
.svc-hero h1 { font-size: clamp(24px, 3.5vw, 38px); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.svc-hero-desc { font-size: 16px; color: rgba(255,255,255,.82); line-height: 1.7; margin-bottom: 28px; max-width: 620px; }
.svc-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); }
.btn-outline-white { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.svc-hero-stats { display: flex; flex-direction: column; gap: 16px; min-width: 180px; }
.svc-stat { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); padding: 18px 22px; text-align: center; }
.svc-stat-num { font-size: 22px; font-weight: 800; color: #ffa040; }
.svc-stat-label { font-size: 12px; color: rgba(255,255,255,.7); margin-top: 4px; }

/* Service page sections */
.svc-section { margin-bottom: 48px; }
.svc-section-title { font-size: 22px; font-weight: 800; color: var(--primary); margin-bottom: 24px; }

/* Problems checklist */
.svc-problems-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.svc-problem-item { display: flex; gap: 12px; align-items: flex-start; background: var(--bg-white); border-radius: var(--radius); padding: 14px 18px; border: 1px solid var(--border); font-size: 14px; line-height: 1.5; }
.svc-problem-check { color: var(--success); font-size: 16px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* Advantages */
.svc-advantages-section { background: var(--bg-white); border-radius: var(--radius-lg); padding: 40px; border: 1px solid var(--border); }
.svc-advantages-section .svc-section-title { margin-bottom: 28px; }
.svc-advantages-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.svc-advantage { display: flex; gap: 16px; align-items: flex-start; }
.svc-advantage-icon { font-size: 28px; flex-shrink: 0; line-height: 1; }
.svc-advantage-title { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.svc-advantage-text { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

/* Clients */
.svc-clients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.svc-client-item { background: var(--accent-light); border-radius: var(--radius); padding: 14px 18px; font-size: 14px; font-weight: 500; color: var(--primary); border: 1px solid rgba(26,122,60,.15); }

/* Steps */
.svc-steps { display: flex; flex-direction: column; gap: 0; counter-reset: none; }
.svc-step { display: flex; gap: 20px; align-items: flex-start; padding: 24px 0; border-bottom: 1px solid var(--border); }
.svc-step:last-child { border-bottom: none; }
.svc-step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: #fff; font-size: 18px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.svc-step-title { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.svc-step-text { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

/* Inline CTA */
.svc-cta-box { background: linear-gradient(135deg, var(--primary) 0%, #2d5499 100%); border-radius: var(--radius-lg); padding: 40px; text-align: center; color: #fff; margin-bottom: 48px; }
.svc-cta-box h2 { font-size: 24px; font-weight: 800; margin-bottom: 10px; }
.svc-cta-box p { font-size: 15px; color: rgba(255,255,255,.8); margin-bottom: 24px; }
.svc-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Other services */
.svc-other-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.svc-other-card { display: flex; align-items: center; gap: 12px; background: var(--bg-white); border-radius: var(--radius); padding: 16px 20px; border: 1px solid var(--border); color: var(--text); font-size: 14px; font-weight: 500; transition: all var(--transition); text-decoration: none; }
.svc-other-card:hover { border-color: var(--primary); color: var(--primary); transform: translateX(4px); }
.svc-other-icon { font-size: 22px; flex-shrink: 0; }
.svc-other-arrow { margin-left: auto; color: var(--text-muted); transition: color var(--transition); }
.svc-other-card:hover .svc-other-arrow { color: var(--primary); }

/* Services responsive */
@media (max-width: 900px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .svc-hero-inner { grid-template-columns: 1fr; gap: 32px; }
    .svc-hero-stats { flex-direction: row; min-width: auto; }
    .svc-stat { flex: 1; }
    .svc-advantages-grid { grid-template-columns: 1fr; }
    .svc-clients-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
    .svc-problems-grid { grid-template-columns: 1fr; }
    .svc-clients-grid { grid-template-columns: 1fr; }
    .svc-other-grid { grid-template-columns: 1fr; }
    .svc-hero-stats { flex-direction: column; }
    .svc-cta-box { padding: 28px 20px; }
}

/* ===== COOPERATION ===== */

/* Hero */
.coop-hero { background: linear-gradient(135deg, #1a3a6b 0%, #1e4d8c 50%, #0f5c3a 100%); color: #fff; padding: 64px 0 56px; }
.coop-hero-inner { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.coop-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); border-radius: 24px; padding: 6px 16px; font-size: 13px; font-weight: 600; letter-spacing: .4px; margin-bottom: 20px; }
.coop-hero h1 { font-size: clamp(26px, 4vw, 44px); font-weight: 800; line-height: 1.15; margin-bottom: 18px; }
.coop-hero-desc { font-size: 16px; color: rgba(255,255,255,.82); line-height: 1.7; margin-bottom: 28px; max-width: 580px; }
.coop-hero-stats { display: flex; flex-direction: column; gap: 16px; min-width: 180px; }

/* Benefits grid */
.coop-benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.coop-benefit-card { background: var(--bg-white); border-radius: var(--radius-lg); padding: 28px 24px; border: 1px solid var(--border); transition: all var(--transition); }
.coop-benefit-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-3px); }
.coop-benefit-icon { font-size: 36px; margin-bottom: 14px; }
.coop-benefit-card h3 { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.coop-benefit-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* CTA block */
.coop-cta-block { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; background: var(--bg-white); border-radius: var(--radius-lg); padding: 48px; border: 1px solid var(--border); margin-bottom: 48px; }
.coop-cta-left h2 { font-size: 26px; font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.coop-cta-left p { font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; }
.coop-cta-contacts { display: flex; flex-direction: column; gap: 12px; }
.coop-contact-link { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 600; color: var(--primary); text-decoration: none; transition: color var(--transition); }
.coop-contact-link:hover { color: var(--accent); }
.coop-contact-icon { font-size: 20px; }
.coop-cta-right { display: flex; align-items: center; }
.coop-promise-list { display: flex; flex-direction: column; gap: 14px; width: 100%; }
.coop-promise-item { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; line-height: 1.5; color: var(--text); }
.coop-promise-check { color: var(--success); font-size: 16px; font-weight: 800; flex-shrink: 0; margin-top: 1px; }

/* Cooperation responsive */
@media (max-width: 960px) {
    .coop-hero-inner { grid-template-columns: 1fr; gap: 32px; }
    .coop-hero-stats { flex-direction: row; min-width: auto; }
    .coop-hero-stats .svc-stat { flex: 1; }
    .coop-benefits-grid { grid-template-columns: 1fr 1fr; }
    .coop-cta-block { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
    .coop-benefits-grid { grid-template-columns: 1fr; }
    .coop-cta-block { padding: 28px 20px; }
    .coop-hero-stats { flex-direction: column; }
}
