@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #FFFFFF;
  --navy: #1E3A8A;
  --navy-light: #2563EB;
  --navy-dark: #1e3070;
  --teal: #0F766E;
  --teal-light: #14B8A6;
  --slate: #334155;
  --slate-light: #64748B;
  --light-gray: #F8FAFC;
  --silver: #D1D5DB;
  --silver-dark: #9CA3AF;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --border: #E2E8F0;
  --border-light: #F1F5F9;
  --success: #059669;
  --warning: #D97706;
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Manrope', sans-serif;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text-primary); background: var(--white); line-height: 1.6; font-size: 15px; -webkit-font-smoothing: antialiased; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ─── HEADER ─── */
.site-header { position: sticky; top: 0; z-index: 1000; background: var(--white); border-bottom: 1px solid var(--border); }
.header-top { background: var(--navy); color: var(--white); padding: 6px 0; font-size: 12.5px; }
.header-top .container { display: flex; justify-content: space-between; align-items: center; }
.header-top a { color: rgba(255,255,255,0.85); transition: color var(--transition); }
.header-top a:hover { color: var(--white); }
.header-top-links { display: flex; gap: 20px; align-items: center; }
.header-main { padding: 14px 0; }
.header-main .container { display: flex; align-items: center; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-icon { width: 38px; height: 38px; background: linear-gradient(135deg, var(--navy), var(--teal)); border-radius: 9px; display: flex; align-items: center; justify-content: center; }
.logo-icon svg { color: var(--white); }
.logo-text { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--navy); letter-spacing: -0.5px; }
.logo-text span { color: var(--teal); }
.header-search { flex: 1; max-width: 520px; position: relative; }
.header-search input { width: 100%; padding: 10px 44px 10px 16px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 14px; outline: none; transition: border-color var(--transition), box-shadow var(--transition); background: var(--light-gray); }
.header-search input:focus { border-color: var(--navy); background: var(--white); box-shadow: 0 0 0 3px rgba(30,58,138,0.08); }
.header-search button { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: var(--slate-light); transition: color var(--transition); }
.header-search button:hover { color: var(--navy); }
.header-actions { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.header-btn { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 8px 12px; border-radius: var(--radius); color: var(--slate); font-size: 11px; font-weight: 500; transition: background var(--transition), color var(--transition); text-decoration: none; }
.header-btn:hover { background: var(--light-gray); color: var(--navy); }
.header-btn svg { width: 20px; height: 20px; }
.header-btn.primary { background: var(--navy); color: var(--white); }
.header-btn.primary:hover { background: var(--navy-dark); color: var(--white); }
.main-nav { background: var(--light-gray); border-bottom: 1px solid var(--border); }
.main-nav .container { display: flex; align-items: center; gap: 0; overflow-x: auto; }
.nav-item { display: flex; align-items: center; gap: 6px; padding: 11px 16px; font-size: 13.5px; font-weight: 500; color: var(--slate); white-space: nowrap; transition: color var(--transition), background var(--transition); text-decoration: none; border-bottom: 2px solid transparent; }
.nav-item:hover, .nav-item.active { color: var(--navy); border-bottom-color: var(--navy); }
.nav-item svg { width: 15px; height: 15px; flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--slate); border-radius: 2px; transition: var(--transition); }
.mobile-nav { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--white); z-index: 9999; overflow-y: auto; transform: translateX(-100%); transition: transform 0.3s ease; }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.mobile-nav-close { font-size: 24px; color: var(--slate); cursor: pointer; }
.mobile-nav-links { padding: 16px 0; }
.mobile-nav-links a { display: block; padding: 12px 20px; font-size: 15px; font-weight: 500; color: var(--text-primary); border-bottom: 1px solid var(--border-light); }
.mobile-nav-links a:hover { background: var(--light-gray); color: var(--navy); }

/* ─── CONTAINER ─── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 24px; }

/* ─── BREADCRUMB ─── */
.breadcrumb-bar { background: var(--light-gray); border-bottom: 1px solid var(--border); padding: 10px 0; }
.breadcrumb { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-size: 13px; color: var(--text-muted); }
.breadcrumb a { color: var(--text-secondary); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb svg { width: 12px; height: 12px; flex-shrink: 0; }
.breadcrumb span { color: var(--navy); font-weight: 500; }

/* ─── HERO ─── */
.hero { position: relative; overflow: hidden; min-height: 540px; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14,24,58,0.88) 0%, rgba(14,24,58,0.6) 60%, rgba(14,24,58,0.2) 100%); }
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 620px; }
.hero-content .container { padding-top: 64px; padding-bottom: 64px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--teal-light); margin-bottom: 20px; }
.hero-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--teal-light); display: block; }
.hero h1 { font-family: var(--font-display); font-size: clamp(30px, 4vw, 52px); font-weight: 800; line-height: 1.15; letter-spacing: -1px; color: var(--white); margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--teal-light); }
.hero-desc { font-size: 16px; color: rgba(255,255,255,0.8); line-height: 1.7; max-width: 500px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.15); }
.hero-stat-num { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--white); display: block; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.8px; }

/* ─── BUTTONS ─── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 24px; border-radius: 8px; font-size: 14px; font-weight: 600; transition: all var(--transition); cursor: pointer; text-decoration: none; white-space: nowrap; }
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(30,58,138,0.3); }
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-light); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-sm { padding: 7px 16px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 15px; }
.btn-icon { width: 38px; height: 38px; padding: 0; justify-content: center; }

/* ─── SECTIONS ─── */
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.section-lg { padding: 80px 0; }
.section-alt { background: var(--light-gray); }
.section-dark { background: var(--navy); color: var(--white); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(24px, 3vw, 36px); font-weight: 800; letter-spacing: -0.5px; color: var(--text-primary); margin-bottom: 12px; }
.section-dark .section-header h2 { color: var(--white); }
.section-eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--teal); margin-bottom: 10px; display: block; }
.section-dark .section-eyebrow { color: var(--teal-light); }
.section-header p { font-size: 15.5px; color: var(--text-secondary); line-height: 1.7; }
.section-dark .section-header p { color: rgba(255,255,255,0.75); }
.section-header-flex { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; }
.section-header-flex h2 { font-family: var(--font-display); font-size: clamp(22px, 2.5vw, 30px); font-weight: 800; letter-spacing: -0.5px; }

/* ─── CATEGORIES GRID ─── */
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.category-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.category-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--navy); }
.category-card-img { aspect-ratio: 4/3; overflow: hidden; background: var(--light-gray); }
.category-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.category-card:hover .category-card-img img { transform: scale(1.04); }
.category-card-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.category-card-icon { width: 40px; height: 40px; background: var(--light-gray); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; color: var(--navy); }
.category-card-title { font-weight: 700; font-size: 15px; color: var(--text-primary); margin-bottom: 6px; }
.category-card-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.55; flex: 1; }
.category-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.category-card-count { font-size: 12px; color: var(--text-muted); }
.category-card-arrow { color: var(--navy); font-weight: 700; font-size: 18px; transition: transform var(--transition); }
.category-card:hover .category-card-arrow { transform: translateX(3px); }

/* ─── PRODUCT CARDS ─── */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.products-grid-3 { grid-template-columns: repeat(3, 1fr); }
.product-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); display: flex; flex-direction: column; position: relative; }
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.product-card-img { aspect-ratio: 4/3; background: var(--light-gray); overflow: hidden; position: relative; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.product-card:hover .product-card-img img { transform: scale(1.03); }
.product-card-actions { position: absolute; top: 10px; right: 10px; display: flex; flex-direction: column; gap: 6px; opacity: 0; transition: opacity var(--transition); }
.product-card:hover .product-card-actions { opacity: 1; }
.product-action-btn { width: 34px; height: 34px; background: var(--white); border-radius: 8px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); color: var(--slate); transition: all var(--transition); cursor: pointer; }
.product-action-btn:hover { background: var(--navy); color: var(--white); }
.btn-outline-white { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 22px; border-radius: var(--radius); font-size: 14px; font-weight: 600; border: 1.5px solid rgba(255,255,255,.5); color: white; background: transparent; cursor: pointer; transition: all var(--transition); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: white; }
.wishlist-btn svg { fill: none; transition: fill var(--transition); }
.wishlist-btn.active svg { fill: #EF4444; stroke: #EF4444; }
.wishlist-btn.active { color: #EF4444; }
.product-card-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.product-brand { font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; color: var(--teal); margin-bottom: 6px; }
.product-name { font-weight: 700; font-size: 14.5px; color: var(--text-primary); line-height: 1.4; margin-bottom: 8px; }
.product-name a { color: inherit; text-decoration: none; }
.product-name a:hover { color: var(--navy); }
.product-specs-mini { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 12px; }
.spec-tag { background: var(--light-gray); border: 1px solid var(--border); border-radius: 4px; padding: 2px 8px; font-size: 11.5px; color: var(--text-secondary); }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.stars { color: #F59E0B; font-size: 13px; letter-spacing: 1px; }
.rating-count { font-size: 12px; color: var(--text-muted); }
.product-price-block { margin-top: auto; }
.product-price { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--navy); }
.product-price-old { font-size: 13px; color: var(--text-muted); text-decoration: line-through; margin-bottom: 2px; }
.product-card-footer { padding: 12px 18px; border-top: 1px solid var(--border); display: flex; gap: 8px; }
.product-card-footer .btn { flex: 1; justify-content: center; }

/* ─── CATEGORY PAGE LAYOUT ─── */
.category-layout { display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start; }
.filters-sidebar { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; position: sticky; top: 90px; }
.filter-section { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.filter-section:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.filter-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-primary); margin-bottom: 12px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.filter-options { display: flex; flex-direction: column; gap: 8px; }
.filter-option { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-secondary); cursor: pointer; }
.filter-option input[type="checkbox"] { accent-color: var(--navy); width: 14px; height: 14px; cursor: pointer; }
.filter-option span { flex: 1; }
.filter-option .filter-count { font-size: 11.5px; color: var(--text-muted); }
.filter-option:hover span { color: var(--navy); }
.price-range { display: flex; gap: 8px; margin-top: 8px; }
.price-input { width: 100%; padding: 7px 10px; border: 1px solid var(--border); border-radius: 6px; font-size: 13px; outline: none; }
.price-input:focus { border-color: var(--navy); }
.filters-actions { display: flex; gap: 8px; margin-top: 16px; }
.category-main { min-width: 0; }
.category-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding: 12px 16px; background: var(--white); border: 1px solid var(--border); border-radius: 8px; }
.category-count { font-size: 14px; color: var(--text-secondary); }
.category-count strong { color: var(--text-primary); }
.toolbar-right { display: flex; align-items: center; gap: 10px; }
.sort-select { padding: 7px 12px; border: 1px solid var(--border); border-radius: 6px; font-size: 13.5px; outline: none; color: var(--text-primary); cursor: pointer; }
.view-toggles { display: flex; gap: 4px; }
.view-toggle { width: 32px; height: 32px; border: 1px solid var(--border); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--slate-light); cursor: pointer; transition: all var(--transition); }
.view-toggle.active, .view-toggle:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* ─── PRODUCT DETAIL PAGE ─── */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.product-images { position: sticky; top: 90px; }
.product-main-img { aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; background: var(--light-gray); margin-bottom: 12px; }
.product-main-img img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbnails { display: flex; gap: 8px; }
.product-thumb { width: 72px; height: 72px; border-radius: 8px; overflow: hidden; border: 2px solid var(--border); cursor: pointer; transition: border-color var(--transition); }
.product-thumb.active, .product-thumb:hover { border-color: var(--navy); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info { }
.product-category-link { font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; color: var(--teal); margin-bottom: 10px; display: block; text-decoration: none; }
.product-detail-name { font-family: var(--font-display); font-size: clamp(22px, 2.5vw, 30px); font-weight: 800; color: var(--text-primary); letter-spacing: -0.5px; line-height: 1.25; margin-bottom: 12px; }
.product-detail-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.product-detail-price-block { background: var(--light-gray); border-radius: var(--radius-lg); padding: 20px 24px; margin-bottom: 24px; }
.product-detail-price { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--navy); }
.product-detail-price-note { font-size: 12.5px; color: var(--text-muted); margin-top: 4px; }
.product-add-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.qty-input { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: 8px; overflow: hidden; }
.qty-btn { width: 38px; height: 44px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--slate); background: var(--light-gray); cursor: pointer; transition: background var(--transition); }
.qty-btn:hover { background: var(--silver); }
.qty-val { width: 44px; text-align: center; font-size: 15px; font-weight: 600; border: none; background: var(--white); outline: none; }
.product-features-list { margin: 0 0 24px; }
.product-features-list li { display: flex; align-items: flex-start; gap: 10px; padding: 7px 0; border-bottom: 1px solid var(--border-light); font-size: 14px; color: var(--text-secondary); }
.product-features-list li svg { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.specs-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td:first-child { padding: 10px 0; color: var(--text-muted); font-weight: 500; width: 40%; }
.specs-table td:last-child { padding: 10px 0 10px 16px; color: var(--text-primary); font-weight: 600; }

/* ─── COMPARISON TABLE ─── */
.compare-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.compare-table th { background: var(--navy); color: var(--white); padding: 14px 16px; text-align: left; font-weight: 600; }
.compare-table th:first-child { background: var(--slate); }
.compare-table td { padding: 11px 16px; border-bottom: 1px solid var(--border); }
.compare-table tr:nth-child(even) td { background: var(--light-gray); }
.compare-table tr:hover td { background: #EFF6FF; }
.compare-table td:first-child { font-weight: 600; color: var(--text-secondary); }
.check-yes { color: var(--success); font-size: 16px; }
.check-no { color: var(--silver-dark); font-size: 16px; }

/* ─── BLOG ─── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--light-gray); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; font-size: 12px; color: var(--text-muted); }
.blog-card-cat { background: var(--light-gray); color: var(--navy); font-weight: 600; padding: 2px 8px; border-radius: 4px; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.5px; }
.blog-card-title { font-weight: 700; font-size: 15.5px; color: var(--text-primary); line-height: 1.4; margin-bottom: 10px; flex: 1; }
.blog-card-excerpt { font-size: 13.5px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 14px; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); }
.blog-author { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--text-secondary); }
.blog-read-more { font-size: 13px; font-weight: 600; color: var(--navy); display: flex; align-items: center; gap: 4px; }
.blog-read-more:hover { color: var(--teal); }

/* ─── ARTICLE ─── */
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.article-main { min-width: 0; }
.article-header { margin-bottom: 32px; }
.article-category { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--teal); margin-bottom: 12px; display: block; }
.article-title { font-family: var(--font-display); font-size: clamp(26px, 3vw, 40px); font-weight: 800; letter-spacing: -0.8px; line-height: 1.2; color: var(--text-primary); margin-bottom: 16px; }
.article-meta { display: flex; align-items: center; gap: 16px; font-size: 13px; color: var(--text-muted); flex-wrap: wrap; margin-bottom: 24px; }
.article-meta svg { width: 14px; height: 14px; }
.article-cover { border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 32px; }
.article-cover img { width: 100%; height: auto; }
.article-body { font-size: 16px; line-height: 1.75; color: var(--text-primary); }
.article-body h2 { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--text-primary); margin: 36px 0 16px; letter-spacing: -0.3px; }
.article-body h3 { font-size: 19px; font-weight: 700; color: var(--text-primary); margin: 28px 0 12px; }
.article-body p { margin-bottom: 18px; }
.article-body ul, .article-body ol { margin: 0 0 18px 24px; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 8px; }
.article-body strong { font-weight: 700; color: var(--text-primary); }
.article-body blockquote { border-left: 4px solid var(--navy); padding: 16px 20px; background: var(--light-gray); border-radius: 0 8px 8px 0; margin: 24px 0; }
.article-body blockquote p { margin: 0; font-style: italic; color: var(--slate); }
.article-body .info-box { background: #EFF6FF; border: 1px solid #BFDBFE; border-radius: 8px; padding: 18px 20px; margin: 24px 0; }
.article-body .info-box-title { font-weight: 700; color: var(--navy); margin-bottom: 8px; font-size: 14px; }
.article-sidebar { position: sticky; top: 90px; }
.sidebar-widget { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; margin-bottom: 20px; }
.sidebar-widget-title { font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 16px; color: var(--text-primary); padding-bottom: 12px; border-bottom: 2px solid var(--navy); }
.sidebar-link { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border-light); font-size: 13.5px; color: var(--text-secondary); text-decoration: none; transition: color var(--transition); }
.sidebar-link:hover { color: var(--navy); }
.sidebar-link:last-child { border-bottom: none; }

/* ─── INFO STRIPS / TRUST BARS ─── */
.trust-bar { background: var(--navy); color: var(--white); padding: 20px 0; }
.trust-items { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item svg { width: 24px; height: 24px; color: var(--teal-light); flex-shrink: 0; }
.trust-item-title { font-weight: 700; font-size: 14px; }
.trust-item-desc { font-size: 12px; color: rgba(255,255,255,0.65); }

/* ─── STATS STRIP ─── */
.stats-strip { padding: 48px 0; background: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; padding: 24px; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.stat-num { font-family: var(--font-display); font-size: 38px; font-weight: 800; color: var(--navy); letter-spacing: -1px; display: block; }
.stat-label { font-size: 13.5px; color: var(--text-secondary); margin-top: 4px; }

/* ─── GUIDES ─── */
.guides-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.guide-card { display: flex; gap: 20px; align-items: flex-start; padding: 24px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: all var(--transition); text-decoration: none; color: inherit; }
.guide-card:hover { box-shadow: var(--shadow); transform: translateY(-1px); border-color: var(--navy); }
.guide-icon { width: 48px; height: 48px; background: linear-gradient(135deg, #EFF6FF, #DBEAFE); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--navy); flex-shrink: 0; }
.guide-title { font-weight: 700; font-size: 15px; color: var(--text-primary); margin-bottom: 6px; }
.guide-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/* ─── FEATURED SECTION ─── */
.featured-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.featured-split img { width: 100%; border-radius: var(--radius-xl); height: 420px; object-fit: cover; }
.featured-split-content .section-eyebrow { text-align: left; }
.featured-split-content h2 { font-family: var(--font-display); font-size: clamp(26px, 2.5vw, 36px); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 16px; line-height: 1.2; }
.featured-split-content p { color: var(--text-secondary); font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.feature-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.feature-list-item { display: flex; align-items: flex-start; gap: 12px; }
.feature-list-item svg { color: var(--teal); flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; }
.feature-list-item span { font-size: 14.5px; color: var(--text-secondary); line-height: 1.5; }

/* ─── NEWSLETTER ─── */
.newsletter-section { background: linear-gradient(135deg, var(--navy) 0%, #0F2A6B 100%); padding: 60px 0; }
.newsletter-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.newsletter-inner h2 { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.newsletter-inner p { color: rgba(255,255,255,0.75); font-size: 15px; margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 12px 18px; border-radius: 8px; border: 1.5px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.1); color: var(--white); font-size: 14.5px; outline: none; transition: border-color var(--transition); }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { border-color: rgba(255,255,255,0.5); }
.newsletter-note { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 12px; }
#newsletter-success { display: none; background: rgba(5,150,105,0.2); border: 1px solid var(--teal-light); border-radius: 8px; padding: 12px 20px; color: var(--teal-light); font-size: 14px; font-weight: 500; margin-top: 16px; }

/* ─── CONTACT FORM ─── */
.contact-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; }
.contact-form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 36px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13.5px; font-weight: 600; color: var(--text-primary); margin-bottom: 7px; }
.form-control { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 14px; color: var(--text-primary); outline: none; transition: border-color var(--transition), box-shadow var(--transition); background: var(--white); }
.form-control:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(30,58,138,0.08); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success { display: none; text-align: center; padding: 32px 24px; }
.form-success svg { color: var(--success); width: 56px; height: 56px; margin: 0 auto 16px; }
.form-success h3 { font-size: 20px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.form-success p { color: var(--text-secondary); font-size: 14.5px; }
.contact-info-card { }
.contact-info-block { background: var(--light-gray); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 16px; }
.contact-info-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.contact-info-row:last-child { margin-bottom: 0; }
.contact-info-icon { width: 40px; height: 40px; background: var(--white); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--navy); flex-shrink: 0; box-shadow: var(--shadow-sm); }
.contact-info-label { font-size: 12px; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.contact-info-value { font-size: 14.5px; font-weight: 600; color: var(--text-primary); }
.contact-info-value a { color: var(--navy); text-decoration: none; }

/* ─── FAQ ─── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 8px; overflow: hidden; }
.faq-question { padding: 18px 20px; font-weight: 600; font-size: 15px; color: var(--text-primary); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; user-select: none; transition: background var(--transition); }
.faq-question:hover { background: var(--light-gray); }
.faq-question.active { background: var(--navy); color: var(--white); }
.faq-arrow { font-size: 20px; flex-shrink: 0; transition: transform var(--transition); }
.faq-question.active .faq-arrow { transform: rotate(45deg); }
.faq-answer { display: none; padding: 18px 20px; font-size: 14.5px; color: var(--text-secondary); line-height: 1.7; border-top: 1px solid var(--border); }

/* ─── POLICY PAGES ─── */
.policy-layout { max-width: 860px; margin: 0 auto; }
.policy-header { margin-bottom: 40px; padding-bottom: 28px; border-bottom: 2px solid var(--border); }
.policy-title { font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--text-primary); margin-bottom: 12px; letter-spacing: -0.5px; }
.policy-meta { font-size: 13.5px; color: var(--text-muted); }
.policy-body { font-size: 15.5px; line-height: 1.8; color: var(--text-primary); }
.policy-body h2 { font-family: var(--font-display); font-size: 22px; font-weight: 800; margin: 40px 0 16px; color: var(--text-primary); padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.policy-body h3 { font-size: 17px; font-weight: 700; margin: 28px 0 10px; color: var(--text-primary); }
.policy-body p { margin-bottom: 16px; color: var(--text-secondary); }
.policy-body ul, .policy-body ol { margin: 0 0 16px 24px; }
.policy-body ul { list-style: disc; }
.policy-body ol { list-style: decimal; }
.policy-body li { margin-bottom: 8px; color: var(--text-secondary); }
.policy-body strong { color: var(--text-primary); font-weight: 700; }
.policy-body a { color: var(--navy); text-decoration: underline; }
.policy-info-box { background: #EFF6FF; border: 1px solid #BFDBFE; border-radius: 8px; padding: 18px 22px; margin: 28px 0; }
.policy-info-box p { margin: 0; font-size: 14.5px; }
.policy-toc { background: var(--light-gray); border-radius: var(--radius-lg); padding: 24px 28px; margin-bottom: 40px; }
.policy-toc-title { font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 14px; color: var(--text-primary); }
.policy-toc ol { margin: 0 0 0 18px; }
.policy-toc li { margin-bottom: 7px; }
.policy-toc a { color: var(--navy); font-size: 14px; text-decoration: none; }
.policy-toc a:hover { text-decoration: underline; }

/* ─── ABOUT ─── */
.about-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%); padding: 80px 0; color: var(--white); text-align: center; }
.about-hero h1 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; }
.about-hero p { font-size: 17px; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { text-align: center; padding: 28px 20px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.team-avatar { width: 88px; height: 88px; border-radius: 50%; overflow: hidden; margin: 0 auto 14px; border: 3px solid var(--border); }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-weight: 700; font-size: 15.5px; color: var(--text-primary); margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--teal); font-weight: 600; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { padding: 28px 24px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--border); }
.value-icon { width: 48px; height: 48px; background: linear-gradient(135deg, #EFF6FF, #DBEAFE); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--navy); margin-bottom: 16px; }
.value-title { font-weight: 700; font-size: 16px; color: var(--text-primary); margin-bottom: 8px; }
.value-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ─── PAGINATION ─── */
.pagination { display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: 40px; }
.page-btn { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: 7px; font-size: 14px; font-weight: 600; color: var(--text-secondary); cursor: pointer; transition: all var(--transition); text-decoration: none; }
.page-btn:hover, .page-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.page-btn.dots { border: none; cursor: default; background: none; }
.page-btn.dots:hover { background: none; color: var(--text-muted); }

/* ─── BADGES ─── */
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 9px; border-radius: 20px; font-size: 11.5px; font-weight: 600; }
.badge-blue { background: #DBEAFE; color: #1D4ED8; }
.badge-green { background: #D1FAE5; color: #065F46; }
.badge-orange { background: #FEF3C7; color: #92400E; }
.badge-teal { background: #CCFBF1; color: #0F766E; }

/* ─── ALERTS ─── */
.alert { padding: 14px 18px; border-radius: 8px; font-size: 14px; margin-bottom: 16px; display: flex; gap: 10px; align-items: flex-start; }
.alert-info { background: #EFF6FF; border: 1px solid #BFDBFE; color: #1E40AF; }
.alert-success { background: #ECFDF5; border: 1px solid #A7F3D0; color: #065F46; }

/* ─── FOOTER ─── */
.site-footer { background: #0B1E4A; color: rgba(255,255,255,0.8); }
.footer-main { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 280px 1fr 1fr 1fr; gap: 40px; }
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; text-decoration: none; }
.footer-logo-text { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--white); }
.footer-logo-text span { color: var(--teal-light); }
.footer-desc { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 10px; }
.footer-contact-item svg { flex-shrink: 0; color: var(--teal-light); margin-top: 2px; }
.footer-col-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,0.65); transition: color var(--transition); text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: rgba(255,255,255,0.45); flex-wrap: wrap; gap: 12px; }
.footer-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 12.5px; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }

/* ─── UTILITY ─── */
.text-center { text-align: center; }
.text-left { text-align: left; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.hidden { display: none !important; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.divider { border: none; border-top: 1px solid var(--border); margin: 32px 0; }
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; background: var(--light-gray); border: 1px solid var(--border); border-radius: 20px; font-size: 13px; color: var(--text-secondary); cursor: pointer; transition: all var(--transition); }
.chip:hover, .chip.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.chips-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }

/* Cookie Banner */
#cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: var(--white); border-top: 2px solid var(--navy); padding: 18px 24px; box-shadow: 0 -4px 20px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
#cookie-banner p { flex: 1; font-size: 13.5px; color: var(--text-secondary); min-width: 280px; }
#cookie-banner a { color: var(--navy); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* Back to top */
#back-to-top { position: fixed; bottom: 24px; right: 24px; z-index: 999; width: 44px; height: 44px; background: var(--navy); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); cursor: pointer; opacity: 0; pointer-events: none; transition: all var(--transition); }
#back-to-top.visible { opacity: 1; pointer-events: auto; }
#back-to-top:hover { background: var(--teal); transform: translateY(-2px); }

/* ─── BLOG LAYOUT ─── */
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.blog-main { min-width: 0; }
.blog-sidebar { position: sticky; top: 90px; }
.blog-featured { border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border); margin-bottom: 32px; background: var(--white); transition: box-shadow var(--transition); }
.blog-featured:hover { box-shadow: var(--shadow-lg); }
.blog-featured img { width: 100%; aspect-ratio: 16/8; object-fit: cover; display: block; }
.blog-featured-body { padding: 28px 32px; }
.blog-featured-body h2 { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--text-primary); margin-bottom: 10px; }
.blog-featured-body p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 14px; }
.blog-read-more { font-weight: 600; font-size: 13.5px; color: var(--navy); }
.blog-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.blog-cat { background: var(--light-gray); color: var(--navy); font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 3px 8px; border-radius: 4px; }
.sidebar-cats { display: flex; flex-direction: column; gap: 0; }
.sidebar-cats a { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--border-light); font-size: 13.5px; color: var(--text-secondary); text-decoration: none; transition: color var(--transition); }
.sidebar-cats a:hover { color: var(--navy); }
.sidebar-cats a span { background: var(--light-gray); color: var(--text-muted); font-size: 11.5px; padding: 2px 7px; border-radius: 10px; }
.sidebar-popular { display: flex; flex-direction: column; gap: 0; }
.sidebar-popular li { list-style: none; }
.sidebar-popular a { display: block; padding: 9px 0; border-bottom: 1px solid var(--border-light); font-size: 13.5px; color: var(--text-secondary); text-decoration: none; transition: color var(--transition); }
.sidebar-popular a:hover { color: var(--navy); }
.sidebar-widget h3 { font-family: var(--font-display); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-primary); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--navy); }
.btn-full { width: 100%; justify-content: center; }

/* ─── TAB NAVIGATION ─── */
.tabs-row { display: flex; gap: 0; border-bottom: 2px solid var(--border); flex-wrap: wrap; }
.tab-btn { padding: 12px 24px; font-size: 14px; font-weight: 600; color: var(--text-muted); background: none; border: none; border-bottom: 2px solid transparent; margin-bottom: -2px; cursor: pointer; transition: all var(--transition); }
.tab-btn:hover { color: var(--navy); }
.tab-btn.active { color: var(--navy); border-bottom-color: var(--navy); }
.tab-panel { background: var(--white); }

/* ─── ABOUT PAGE SPECIFIC ─── */
.about-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-hero-text h1 { font-family: var(--font-display); font-size: clamp(28px, 3vw, 42px); font-weight: 800; margin-bottom: 16px; letter-spacing: -0.5px; }
.about-hero-text .lead-text { font-size: 16px; color: rgba(255,255,255,.85); line-height: 1.7; margin-bottom: 16px; }
.about-hero-text p { font-size: 14.5px; color: rgba(255,255,255,.7); line-height: 1.7; }
.section-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--teal-light); margin-bottom: 12px; display: block; }
.about-hero-image img { width: 100%; border-radius: var(--radius-xl); object-fit: cover; }
.stats-section { padding: 56px 0; }
.stat-card { text-align: center; padding: 28px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.stat-number { font-family: var(--font-display); font-size: 40px; font-weight: 800; color: var(--navy); display: block; letter-spacing: -1.5px; }
.stat-label { font-size: 13.5px; color: var(--text-secondary); }
.bg-light { background: var(--light-gray); }
.two-col-section { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.two-col-section h2 { font-family: var(--font-display); font-size: 26px; font-weight: 800; margin-bottom: 16px; }
.two-col-section h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.two-col-section p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 14px; }
.styled-list { padding-left: 20px; display: flex; flex-direction: column; gap: 8px; font-size: 14.5px; color: var(--text-secondary); margin-bottom: 20px; }
.styled-list li { list-style: disc; }
.about-values { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.value-item { display: flex; gap: 14px; align-items: flex-start; padding: 14px; background: var(--light-gray); border-radius: var(--radius); }
.value-item .value-icon { width: 40px; height: 40px; background: var(--navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; flex-shrink: 0; }
.value-item strong { font-size: 14px; font-weight: 700; display: block; margin-bottom: 3px; }
.value-item p { font-size: 13px; color: var(--text-muted); margin: 0; }
.team-info { padding: 16px 0 0; }
.team-info h3 { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.team-role { font-size: 12.5px; color: var(--teal); font-weight: 600; display: block; margin-bottom: 8px; }
.team-info p { font-size: 13px; color: var(--text-secondary); line-height: 1.55; }
.team-card img { width: 100%; aspect-ratio: 1; object-fit: cover; object-position: top; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.coverage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.coverage-item { background: var(--light-gray); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: all var(--transition); }
.coverage-item:hover { background: var(--navy); border-color: var(--navy); }
.coverage-item:hover a { color: white; }
.coverage-item:hover svg { stroke: white; }
.coverage-item a { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 24px 16px; text-decoration: none; color: var(--text-primary); font-weight: 600; font-size: 13.5px; text-align: center; }
.coverage-item svg { color: var(--navy); }

/* ─── FAQ STANDALONE (used in faq.php) ─── */
.faq-section-group { margin-bottom: 40px; }
.faq-section-group h2 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 16px; padding-left: 12px; border-left: 4px solid var(--navy); }
.faq-q { width: 100%; text-align: left; padding: 16px 18px; background: var(--white); border: none; font-size: 14.5px; font-weight: 600; color: var(--text-primary); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background var(--transition); }
.faq-q:hover { background: var(--light-gray); }
.faq-a { display: none; padding: 14px 18px 18px; font-size: 14px; color: var(--text-secondary); line-height: 1.7; border-top: 1px solid var(--border); background: var(--white); }
.faq-arrow { font-size: 14px; color: var(--text-muted); transition: transform 0.2s; }

/* ─── PRODUCT DETAIL TABS ─── */
.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-bottom: 16px; }
.spec-table th { background: var(--navy); color: white; padding: 10px 14px; text-align: left; font-weight: 600; font-size: 13px; }
.spec-table td { padding: 9px 14px; border-bottom: 1px solid var(--border); }
.spec-table tr:nth-child(even) td { background: var(--light-gray); }

/* ─── ARTICLE INSIDE CONTENT ─── */
.article-inner { display: grid; grid-template-columns: 1fr 280px; gap: 40px; align-items: start; padding-top: 32px; }
.article-main h1 { font-family: var(--font-display); font-size: clamp(24px, 3vw, 38px); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 14px; }
.article-lead { font-size: 17px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 24px; border-left: 4px solid var(--teal); padding-left: 18px; }
.article-main h2 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin: 30px 0 12px; color: var(--navy); }
.article-main p { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 14px; }
.article-main ul.styled-list { margin-bottom: 16px; }
.article-cta { background: var(--navy); color: white; border-radius: var(--radius-xl); padding: 28px 32px; margin-top: 32px; }
.article-cta h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.article-cta p { color: rgba(255,255,255,.8); font-size: 14px; margin-bottom: 16px; }
.article-cta .btn { margin-right: 10px; }
.prod-rec-item { background: var(--light-gray); border-radius: var(--radius); padding: 14px 18px; font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; line-height: 1.6; }
.toc-list { padding-left: 18px; display: flex; flex-direction: column; gap: 7px; }
.toc-list li { list-style: decimal; }
.toc-list a { font-size: 13.5px; color: var(--navy); text-decoration: none; }
.toc-list a:hover { text-decoration: underline; }

/* ─── KORPA / CART ─── */
.cart-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.cart-table th { background: var(--light-gray); padding: 12px 16px; text-align: left; font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-secondary); border-bottom: 2px solid var(--border); }
.cart-table td { padding: 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-empty { text-align: center; padding: 80px 20px; }
.cart-empty svg { color: var(--silver); margin: 0 auto 20px; display: block; }
.cart-empty h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.cart-empty p { font-size: 14.5px; color: var(--text-secondary); margin-bottom: 24px; }

/* ─── SERVISI / INFO PAGES ─── */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.info-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; }
.info-card-icon { width: 52px; height: 52px; background: linear-gradient(135deg, #EFF6FF, #DBEAFE); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--navy); margin-bottom: 16px; }
.info-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.info-card p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.65; }

/* ─── COMPARISON PAGE ─── */
.compare-slots { display: grid; grid-template-columns: 200px repeat(4, 1fr); gap: 0; }
.compare-label { padding: 12px 16px; background: var(--light-gray); font-size: 13px; font-weight: 600; color: var(--text-secondary); border-bottom: 1px solid var(--border); display: flex; align-items: center; }
.compare-value { padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 13.5px; color: var(--text-primary); text-align: center; }
.compare-header { padding: 16px; background: var(--navy); color: white; text-align: center; font-size: 13.5px; font-weight: 700; }

/* ─── SERVICE PAGE ─── */
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; display: flex; flex-direction: column; gap: 14px; transition: box-shadow var(--transition), transform var(--transition); }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.service-icon { width: 60px; height: 60px; background: linear-gradient(135deg, #EFF6FF, #DBEAFE); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--navy); flex-shrink: 0; }
.service-card h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--text-primary); }
.service-card p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.65; flex: 1; }
.info-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.info-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.info-card h2 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--navy); }
.info-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.info-card p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.65; }
.info-card ol.styled-list { list-style: decimal; padding-left: 20px; }
.info-card ol.styled-list li { margin-bottom: 8px; font-size: 13.5px; color: var(--text-secondary); }
.info-note { background: #ECFDF5; border-left: 4px solid var(--success); padding: 14px 16px; border-radius: 0 var(--radius) var(--radius) 0; font-size: 13.5px; color: var(--slate); line-height: 1.6; }
.info-banner { background: var(--light-gray); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 28px 32px; }
.info-banner h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--navy); }
.info-banner p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.7; }
.process-steps { display: flex; flex-direction: column; gap: 0; position: relative; }
.process-step { display: flex; gap: 20px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--border); }
.process-step:last-child { border-bottom: none; }
.step-num { width: 40px; height: 40px; background: var(--navy); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; flex-shrink: 0; font-family: var(--font-display); }
.step-content h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.step-content p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.6; }
.servis-cta { background: linear-gradient(135deg, var(--navy) 0%, #1e4fb5 100%); border-radius: var(--radius-xl); padding: 40px 48px; display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; }
.servis-cta h3 { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: white; margin-bottom: 8px; }
.servis-cta p { font-size: 14.5px; color: rgba(255,255,255,.8); line-height: 1.65; }

/* ─── SITEMAP PAGE ─── */
.sitemap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.sitemap-col h2 { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--navy); }
.sitemap-list { display: flex; flex-direction: column; gap: 0; }
.sitemap-list li { border-bottom: 1px solid var(--border-light); }
.sitemap-list a { display: block; padding: 8px 0; font-size: 13.5px; color: var(--text-secondary); transition: color var(--transition); }
.sitemap-list a:hover { color: var(--navy); padding-left: 6px; }

/* ─── WISHLIST PAGE ─── */
.wishlist-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.empty-state { text-align: center; padding: 80px 24px; max-width: 480px; margin: 0 auto; }
.empty-state-icon { width: 80px; height: 80px; background: var(--light-gray); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--silver-dark); margin: 0 auto 24px; }
.empty-state h2 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.empty-state p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }

/* ─── COMPARE TABLE (full) ─── */
.compare-category-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; padding: 16px; background: var(--light-gray); border-radius: var(--radius-lg); }
.compare-cat-btn { padding: 8px 20px; border-radius: 24px; font-size: 13.5px; font-weight: 600; color: var(--text-secondary); background: var(--white); border: 1.5px solid var(--border); transition: all var(--transition); cursor: pointer; }
.compare-cat-btn:hover { border-color: var(--navy); color: var(--navy); }
.compare-cat-btn.active { background: var(--navy); color: white; border-color: var(--navy); }
.compare-table-wrap { margin-top: 8px; }
.compare-table-scroll { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare-table thead th { padding: 0; vertical-align: top; }
.compare-table thead th.spec-col { background: var(--navy); color: white; padding: 16px; font-size: 13px; font-weight: 600; min-width: 160px; }
.compare-table thead th:not(.spec-col) { background: var(--light-gray); padding: 16px; min-width: 200px; }
.compare-product { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.compare-product img { width: 80px; height: 80px; object-fit: contain; border-radius: var(--radius); }
.compare-product strong { font-size: 14px; font-weight: 700; color: var(--text-primary); text-align: center; }
.compare-price { font-family: var(--font-display); font-size: 16px; font-weight: 800; color: var(--navy); }
.compare-table tbody td { padding: 11px 16px; border-bottom: 1px solid var(--border); }
.compare-table tbody td.spec-col { background: var(--light-gray); font-weight: 600; font-size: 13px; color: var(--text-secondary); min-width: 160px; }
.compare-table tbody tr:hover td:not(.spec-col) { background: #F0F9FF; }
.compare-table tbody tr.highlight-row td { background: #EFF6FF; font-weight: 700; color: var(--navy); }

/* ─── DELIVERY / PAYMENT INFO ─── */
.delivery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.delivery-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.delivery-card-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.delivery-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.delivery-card p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.65; }
.delivery-card ul { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-top: 10px; }
.delivery-card ul li { font-size: 13.5px; color: var(--text-secondary); display: flex; align-items: flex-start; gap: 8px; }
.delivery-card ul li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; }
.payment-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-top: 16px; }
.payment-table th { background: var(--navy); color: white; padding: 11px 16px; text-align: left; font-size: 13px; font-weight: 600; }
.payment-table td { padding: 11px 16px; border-bottom: 1px solid var(--border); vertical-align: top; }
.payment-table tr:nth-child(even) td { background: var(--light-gray); }

/* ─── GARANCIJA PAGE ─── */
.warranty-timeline { display: flex; flex-direction: column; gap: 0; border-left: 3px solid var(--navy); padding-left: 28px; margin-left: 10px; }
.warranty-step { position: relative; padding-bottom: 28px; }
.warranty-step::before { content: ''; position: absolute; left: -35px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--navy); border: 3px solid white; box-shadow: 0 0 0 2px var(--navy); }
.warranty-step h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.warranty-step p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.6; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .article-inner { grid-template-columns: 1fr; }
  .two-col-section { grid-template-columns: 1fr; }
  .about-hero-inner { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .category-layout { grid-template-columns: 1fr; }
  .filters-sidebar { position: static; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail { grid-template-columns: 1fr; }
  .product-images { position: static; }
  .featured-split { grid-template-columns: 1fr; }
  .featured-split img { height: 280px; }
  .contact-layout { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .guides-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-grid { grid-template-columns: repeat(3, 1fr); }
  .compare-slots { grid-template-columns: 160px repeat(3, 1fr); overflow-x: auto; }
}
@media (max-width: 640px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-search { max-width: 220px; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero { min-height: 420px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .trust-items { flex-direction: column; gap: 16px; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .newsletter-form { flex-direction: column; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .policy-title { font-size: 28px; }
  .section { padding: 44px 0; }
  .compare-table { font-size: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .header-top { display: none; }
  #cookie-banner { flex-direction: column; }
  .article-sidebar { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .blog-sidebar { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; }
  .tabs-row { gap: 0; }
  .tab-btn { padding: 10px 14px; font-size: 13px; }
  .compare-slots { grid-template-columns: 120px repeat(2, 1fr); }
}
