* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --blue: #1a6fa8;
  --blue-light: #e8f4fd;
  --blue-dark: #0d4f7c;
  --teal: #0891b2;
  --gray: #64748b;
  --bg: #f8fafc;
}
body { font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", sans-serif; background: var(--bg); color: #1e293b; }

/* ─── NAV ─── */
nav { background: white; border-bottom: 1px solid #e2e8f0; padding: 0 24px; height: 64px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { width: 38px; height: 38px; background: linear-gradient(135deg, var(--blue), var(--teal)); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 18px; font-weight: 700; }
.logo-text { font-size: 18px; font-weight: 700; color: var(--blue-dark); }
.logo-sub { font-size: 11px; color: var(--gray); letter-spacing: 0.05em; }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links > a { color: var(--gray); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.nav-links > a:hover { color: var(--blue); }
.nav-cta { background: var(--blue) !important; color: white !important; padding: 8px 20px; border-radius: 8px; font-weight: 500; }
.nav-cta:hover { background: var(--blue-dark) !important; color: white !important; }

/* ─── HERO ─── */
.hero { background: linear-gradient(135deg, #0d4f7c 0%, #1a6fa8 50%, #0891b2 100%); color: white; padding: 80px 24px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(ellipse at 60% 40%, rgba(255,255,255,0.08) 0%, transparent 60%); pointer-events: none; }
.hero-badge { display: inline-block; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); padding: 5px 16px; border-radius: 20px; font-size: 13px; margin-bottom: 20px; letter-spacing: 0.05em; }
.hero h1 { font-size: clamp(28px, 6vw, 48px); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.hero p { font-size: clamp(15px, 2.5vw, 18px); opacity: 0.85; max-width: 520px; margin: 0 auto 36px; line-height: 1.7; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: white; color: var(--blue-dark); padding: 14px 32px; border-radius: 10px; text-decoration: none; font-size: 15px; font-weight: 700; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 12px rgba(0,0,0,0.15); display: inline-block; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.btn-ghost { background: rgba(255,255,255,0.12); color: white; border: 1px solid rgba(255,255,255,0.35); padding: 14px 32px; border-radius: 10px; text-decoration: none; font-size: 15px; font-weight: 500; transition: background 0.2s; display: inline-block; }
.btn-ghost:hover { background: rgba(255,255,255,0.2); }

/* ─── STATS BAR ─── */
.stats-bar { max-width: 960px; margin: 0 auto; padding: 28px 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-item { text-align: center; }
.stat-num { font-size: clamp(28px, 4vw, 36px); font-weight: 800; color: var(--blue); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 13px; color: var(--gray); }

/* ─── SECTIONS ─── */
.section { padding: 60px 24px; max-width: 960px; margin: 0 auto; }
.section-label { text-align: center; font-size: 12px; font-weight: 600; letter-spacing: 0.12em; color: var(--teal); text-transform: uppercase; margin-bottom: 10px; }
.section-title { text-align: center; font-size: clamp(22px, 4vw, 30px); font-weight: 700; color: var(--blue-dark); margin-bottom: 10px; }
.section-desc { text-align: center; font-size: 15px; color: var(--gray); max-width: 520px; margin: 0 auto 40px; line-height: 1.7; }

/* ─── ADVANTAGE CARDS ─── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.card { background: white; border-radius: 14px; padding: 28px 24px; border: 1px solid #e2e8f0; transition: box-shadow 0.2s, transform 0.2s; }
.card:hover { box-shadow: 0 8px 24px rgba(26, 111, 168, 0.12); transform: translateY(-3px); }
.card-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.card h3 { font-size: 16px; font-weight: 700; color: var(--blue-dark); margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* ─── BRANDS ─── */
.cat-bg { background: linear-gradient(180deg, white 0%, var(--blue-light) 100%); }
.brands-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.brand-card { background: white; border-radius: 12px; padding: 20px; border: 1px solid #e2e8f0; transition: box-shadow 0.2s, transform 0.2s; }
.brand-card:hover { box-shadow: 0 6px 20px rgba(26,111,168,0.12); transform: translateY(-2px); }
.brand-country { font-size: 12px; color: var(--gray); margin-bottom: 6px; }
.brand-name { font-size: 16px; font-weight: 700; color: var(--blue-dark); margin-bottom: 6px; }
.brand-desc { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* ─── PRODUCT CATEGORIES (static, no hover link) ─── */
.cats { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 16px; }
.cat-static { background: white; border-radius: 14px; padding: 22px 16px; text-align: center; border: 1px solid #e2e8f0; }
.cat-emoji { font-size: 28px; margin-bottom: 8px; }
.cat-name { font-size: 14px; font-weight: 600; color: var(--blue-dark); margin-bottom: 4px; }
.cat-desc { font-size: 12px; color: var(--gray); line-height: 1.4; }

/* ─── HOW IT WORKS ─── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.step { background: white; border-radius: 14px; padding: 28px 24px; border: 1px solid #e2e8f0; position: relative; }
.step-num { font-size: 36px; font-weight: 900; color: var(--blue-light); line-height: 1; margin-bottom: 12px; }
.step h3 { font-size: 16px; font-weight: 700; color: var(--blue-dark); margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* ─── CTA BAND ─── */
.cta-band { background: linear-gradient(135deg, var(--blue-dark), var(--teal)); color: white; padding: 56px 24px; text-align: center; }
.cta-band h2 { font-size: clamp(20px, 4vw, 28px); font-weight: 700; margin-bottom: 10px; }
.cta-band p { font-size: 15px; opacity: 0.85; margin-bottom: 28px; }

/* ─── FOOTER ─── */
footer { background: #0f172a; color: #94a3b8; text-align: center; font-size: 13px; }
.footer-inner { padding: 36px 24px 24px; }
.footer-brand { font-size: 16px; font-weight: 700; color: white; margin-bottom: 14px; }
.footer-contact { line-height: 2; margin-bottom: 16px; font-size: 13px; }
.footer-links { display: flex; gap: 12px; justify-content: center; align-items: center; }
.footer-links a { color: #94a3b8; text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-links span { color: #475569; }
.icp-bar { background: #1e293b; border-top: 1px solid #334155; padding: 14px 24px; }
.icp-bar a { color: #cbd5e1; text-decoration: none; font-size: 14px; font-weight: 500; letter-spacing: 0.03em; transition: color 0.2s; }
.icp-bar a:hover { color: white; text-decoration: underline; }

/* ─── INNER PAGES ─── */
.page-hero { background: linear-gradient(135deg, #0d4f7c, #1a6fa8); color: white; padding: 48px 24px; text-align: center; }
.page-hero h1 { font-size: clamp(22px, 4vw, 32px); font-weight: 700; margin-bottom: 8px; }
.page-hero p { font-size: 15px; opacity: 0.8; }
.page-body { max-width: 760px; margin: 0 auto; padding: 48px 24px 64px; }
.page-body h2 { font-size: 18px; font-weight: 700; color: var(--blue-dark); margin: 32px 0 12px; padding-left: 12px; border-left: 3px solid var(--blue); }
.page-body h2:first-child { margin-top: 0; }
.page-body p, .page-body li { font-size: 15px; color: #475569; line-height: 1.8; margin-bottom: 10px; }
.page-body ul { padding-left: 20px; }
.page-body .info-card { background: white; border-radius: 12px; border: 1px solid #e2e8f0; padding: 24px 28px; margin-bottom: 20px; }
.page-body .info-row { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid #f1f5f9; font-size: 15px; }
.page-body .info-row:last-child { border-bottom: none; padding-bottom: 0; }
.page-body .info-label { color: var(--gray); min-width: 70px; flex-shrink: 0; }
.page-body .info-val { color: #1e293b; font-weight: 500; }

/* ─── RESPONSIVE ─── */
@media (max-width: 600px) {
  .hero { padding: 60px 20px; }
  .section { padding: 48px 20px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .cats { grid-template-columns: repeat(3, 1fr); }
  .nav-links > a:not(.nav-cta) { display: none; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
}
