/* Cargo Rapido — Global Styles (Design E — White Modern) */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

:root {
  --primary: #1a237e;
  --primary-dark: #0d1257;
  --accent: #ff6f00;
  --accent-light: #ffa000;
  --white: #ffffff;
  --light: #f8f9ff;
  --light2: #eef0ff;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --border: #f0f0f8;
  --shadow: 0 4px 20px rgba(26,35,126,0.1);
  --radius: 12px;
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
header {
  padding: 14px 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: white; border-bottom: 1px solid #f0f0f5;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 8px rgba(26,35,126,0.06);
}
.logo { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 800; color: #1a237e; text-decoration: none; }
.logo-box { width: 38px; height: 38px; background: #1a237e; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.logo span { color: #1a237e; }

.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a { color: #555; text-decoration: none; padding: 9px 16px; border-radius: 10px; font-size: 14px; font-weight: 600; transition: all 0.2s; }
.header-nav a:hover { background: #f4f5ff; color: #1a237e; }
.nav-phone { display: flex; align-items: center; gap: 8px; margin-left: 10px; padding: 9px 20px; background: #f4f5ff; border-radius: 10px; font-weight: 700; font-size: 14px; color: #1a237e; text-decoration: none; }
.nav-cta { background: #1a237e !important; color: white !important; margin-left: 8px; }
.nav-cta:hover { background: #0d1257 !important; color: white !important; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: white; border-radius: 14px; box-shadow: 0 8px 40px rgba(26,35,126,0.15);
  min-width: 280px; padding: 10px 0; z-index: 200;
  border: 1px solid #f0f0f8;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; color: #333; padding: 10px 20px; font-size: 14px; font-weight: 600; }
.dropdown-menu a:hover { background: #f4f5ff; color: #1a237e; }

/* Burger */
.burger { display: none; background: none; border: none; color: #1a237e; font-size: 26px; cursor: pointer; }

/* ===== HERO (index only) ===== */
.hero-split { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 70px); }
.hero-left {
  padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: center;
  background: linear-gradient(160deg, #f8f9ff 0%, #eef0ff 100%);
}
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: white; border: 1px solid #e0e3ff; color: #1a237e; padding: 8px 18px; border-radius: 50px; font-size: 13px; font-weight: 700; margin-bottom: 28px; box-shadow: 0 2px 10px rgba(26,35,126,0.1); width: fit-content; }
.hero-left h1 { font-size: 52px; font-weight: 900; line-height: 1.1; margin-bottom: 22px; color: #0d1257; letter-spacing: -1px; }
.hero-left h1 em { color: #ff6f00; font-style: normal; position: relative; }
.hero-left h1 em::after { content: ''; position: absolute; bottom: 2px; left: 0; right: 0; height: 3px; background: #ff6f00; border-radius: 2px; opacity: 0.4; }
.hero-left p { color: #6b7280; font-size: 16px; line-height: 1.8; margin-bottom: 40px; max-width: 460px; }
.hero-btns { display: flex; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; }
.btn-dark { background: #1a237e; color: white; padding: 15px 30px; border-radius: 12px; text-decoration: none; font-weight: 700; font-size: 15px; transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; }
.btn-dark:hover { background: #0d1257; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(26,35,126,0.3); }
.btn-green { background: #25D366; color: white; padding: 15px 30px; border-radius: 12px; text-decoration: none; font-weight: 700; font-size: 15px; transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; }
.btn-green:hover { background: #128C7E; transform: translateY(-2px); }
.trust-row { display: flex; gap: 28px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #6b7280; }
.trust-icon { color: #1a237e; font-size: 16px; }

.hero-right { position: relative; overflow: hidden; background: #1a237e; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0.95; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(238,240,255,0.15) 0%, transparent 40%), linear-gradient(to top, rgba(26,35,126,0.25) 0%, transparent 50%); }
.hero-cards { position: absolute; right: 28px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 12px; z-index: 5; }
.hcard {
  background: rgba(255,255,255,0.18); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.35); border-radius: 18px; padding: 16px 20px; min-width: 220px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18); color: white;
}
.hcard-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.6; margin-bottom: 8px; font-weight: 600; }
.hcard-row { display: flex; align-items: center; gap: 8px; }
.hcard-dot { width: 8px; height: 8px; border-radius: 50%; background: #4caf50; flex-shrink: 0; animation: pulse 2s infinite; }
.hcard-dot.orange { background: #ff9800; }
.hcard-val { font-size: 24px; font-weight: 900; line-height: 1; }
.hcard-sub { font-size: 12px; opacity: 0.65; margin-top: 5px; }
.hcard-name { font-size: 14px; font-weight: 700; }
.hcard-time { font-size: 12px; opacity: 0.65; margin-top: 2px; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:0.4} }

/* ===== MARQUEE ===== */
.marquee-wrap { background: #1a237e; padding: 18px 0; overflow: hidden; }
.marquee { display: flex; gap: 60px; animation: marquee 20s linear infinite; white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.marquee-dot { width: 6px; height: 6px; background: #ff9800; border-radius: 50%; flex-shrink: 0; }

/* ===== SECTIONS ===== */
.section { padding: 80px 60px; }
.section-light { background: #f8f9ff; }
.sec-tag { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: #ff6f00; font-weight: 700; margin-bottom: 10px; }
.sec-h2 { font-size: 40px; font-weight: 900; color: #0d1257; margin-bottom: 50px; letter-spacing: -0.5px; }
.sec-h2-sm { font-size: 32px; font-weight: 900; color: #0d1257; margin-bottom: 32px; letter-spacing: -0.5px; }
.text-center { text-align: center; }

/* ===== SERVICES GRID ===== */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.svc {
  border: 1.5px solid #f0f0f8; border-radius: 20px; padding: 28px;
  transition: all 0.3s; cursor: pointer; background: white; text-decoration: none;
  display: block;
}
.svc:hover { border-color: #1a237e; box-shadow: 0 8px 30px rgba(26,35,126,0.1); transform: translateY(-4px); }
.svc-num { font-size: 13px; font-weight: 800; color: #d0d4e8; margin-bottom: 20px; }
.svc-ico { font-size: 36px; margin-bottom: 16px; }
.svc h3 { font-size: 17px; font-weight: 800; color: #0d1257; margin-bottom: 8px; }
.svc p { font-size: 13px; color: #888; line-height: 1.7; }
.svc-link { margin-top: 20px; color: #1a237e; font-size: 13px; font-weight: 700; text-decoration: none; display: flex; align-items: center; gap: 6px; }
.svc-link:hover { color: #ff6f00; }
.svc:hover .svc-link { color: #ff6f00; }

.svc-grid-2 { grid-template-columns: repeat(3, 1fr); }
.svc-grid-2x { grid-template-columns: repeat(2, 1fr); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(160deg, #f8f9ff 0%, #eef0ff 100%);
  padding: 60px 60px 50px;
  border-bottom: 1px solid #e8eaff;
}
.page-hero .breadcrumb { font-size: 13px; color: #888; margin-bottom: 16px; }
.page-hero .breadcrumb a { color: #1a237e; text-decoration: none; font-weight: 600; }
.page-hero .breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 { font-size: 44px; font-weight: 900; color: #0d1257; letter-spacing: -0.5px; line-height: 1.15; max-width: 800px; }
.page-hero p { color: #6b7280; font-size: 17px; margin-top: 16px; max-width: 680px; line-height: 1.7; }

/* ===== CONTENT ===== */
.content-body { padding: 60px 60px; max-width: 1200px; }
.content-body h2 { font-size: 26px; font-weight: 800; color: #0d1257; margin: 36px 0 16px; }
.content-body h3 { font-size: 20px; font-weight: 700; color: #1a237e; margin: 28px 0 12px; }
.content-body p { font-size: 16px; line-height: 1.8; color: #444; margin-bottom: 16px; }
.content-body ul, .content-body ol { margin: 0 0 20px 24px; }
.content-body li { font-size: 16px; line-height: 1.8; color: #444; margin-bottom: 6px; }

/* Two-column layout */
.layout-two { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; padding: 60px 60px; }
.layout-two .article { }
.layout-two .sidebar { }
.sidebar-card { background: #f8f9ff; border-radius: 20px; padding: 28px; border: 1.5px solid #e8eaff; margin-bottom: 20px; }
.sidebar-card h4 { font-size: 16px; font-weight: 800; color: #0d1257; margin-bottom: 16px; }
.sidebar-card ul { list-style: none; padding: 0; }
.sidebar-card ul li { padding: 6px 0; border-bottom: 1px solid #eef0ff; font-size: 14px; }
.sidebar-card ul li:last-child { border-bottom: none; }
.sidebar-card ul li a { color: #1a237e; text-decoration: none; font-weight: 600; }
.sidebar-card ul li a:hover { color: #ff6f00; }
.sidebar-cta { background: #1a237e; color: white; border-radius: 20px; padding: 28px; text-align: center; }
.sidebar-cta h4 { font-size: 18px; font-weight: 800; margin-bottom: 12px; }
.sidebar-cta p { font-size: 14px; opacity: 0.8; margin-bottom: 20px; line-height: 1.6; }
.sidebar-cta a { display: block; background: #ff6f00; color: white; padding: 12px; border-radius: 12px; text-decoration: none; font-weight: 700; font-size: 14px; margin-bottom: 10px; transition: background 0.2s; }
.sidebar-cta a:hover { background: #e65c00; }

/* ===== INFO BOXES ===== */
.info-box { background: #eef0ff; border-left: 4px solid #1a237e; border-radius: 8px; padding: 20px 24px; margin: 24px 0; }
.info-box p { margin: 0; font-size: 15px; color: #333; }

/* ===== BLOG GRID ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { border: 1.5px solid #f0f0f8; border-radius: 20px; padding: 28px; transition: all 0.3s; background: white; text-decoration: none; display: block; }
.blog-card:hover { border-color: #1a237e; box-shadow: 0 8px 30px rgba(26,35,126,0.1); transform: translateY(-4px); }
.blog-date { font-size: 12px; color: #ff6f00; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.blog-card h3 { font-size: 17px; font-weight: 800; color: #0d1257; margin-bottom: 10px; line-height: 1.4; }
.blog-card p { font-size: 13px; color: #888; line-height: 1.7; }
.blog-read { margin-top: 16px; color: #1a237e; font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 6px; }

/* ===== STATS ===== */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 60px; }
.stat-card { background: white; border: 1.5px solid #f0f0f8; border-radius: 20px; padding: 28px; text-align: center; }
.stat-val { font-size: 44px; font-weight: 900; color: #1a237e; line-height: 1; }
.stat-unit { font-size: 24px; color: #ff6f00; font-weight: 900; }
.stat-label { font-size: 14px; color: #888; margin-top: 8px; font-weight: 600; }

/* ===== WHY US ===== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-item { background: white; border: 1.5px solid #f0f0f8; border-radius: 20px; padding: 28px; }
.why-ico { font-size: 32px; margin-bottom: 14px; }
.why-item h3 { font-size: 17px; font-weight: 800; color: #0d1257; margin-bottom: 8px; }
.why-item p { font-size: 13px; color: #888; line-height: 1.7; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
  padding: 60px; text-align: center; color: white;
}
.cta-banner h2 { font-size: 36px; font-weight: 900; margin-bottom: 16px; letter-spacing: -0.5px; }
.cta-banner p { font-size: 17px; opacity: 0.8; margin-bottom: 32px; }
.cta-banner .btn-dark { background: #ff6f00; }
.cta-banner .btn-dark:hover { background: #e65c00; }

/* ===== CONTACTS ===== */
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h2 { font-size: 28px; font-weight: 800; color: #0d1257; margin-bottom: 24px; }
.contact-row { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.contact-ico { width: 44px; height: 44px; background: #eef0ff; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; color: #1a237e; }
.contact-row h4 { font-size: 14px; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.contact-row p, .contact-row a { font-size: 15px; color: #333; text-decoration: none; font-weight: 600; }
.contact-row a:hover { color: #1a237e; }
.social-row { display: flex; gap: 12px; margin-top: 28px; }
.social-btn { display: flex; align-items: center; gap: 8px; padding: 11px 20px; border-radius: 12px; text-decoration: none; font-size: 14px; font-weight: 700; transition: all 0.2s; }
.social-btn.tg { background: #eef0ff; color: #1a237e; }
.social-btn.tg:hover { background: #1a237e; color: white; }
.social-btn.wa { background: #e6f9ef; color: #128C7E; }
.social-btn.wa:hover { background: #25D366; color: white; }
.social-btn.fb { background: #e8f0fe; color: #1877f2; }
.social-btn.fb:hover { background: #1877f2; color: white; }

.map-placeholder { background: #eef0ff; border-radius: 20px; height: 300px; display: flex; align-items: center; justify-content: center; color: #1a237e; font-size: 48px; border: 1.5px solid #e0e3ff; }

/* ===== FOOTER ===== */
footer {
  background: #0d1257; color: rgba(255,255,255,0.7);
  padding: 60px; margin-top: auto;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand .logo { color: white; margin-bottom: 16px; }
.footer-brand .logo-box { background: rgba(255,255,255,0.15); }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 280px; }
.footer-col h4 { font-size: 14px; font-weight: 800; color: white; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: #ff6f00; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }

/* ===== CHAT WIDGET ===== */
.chat-widget { position: fixed; bottom: 28px; right: 28px; z-index: 999; }
.chat-bubble {
  position: absolute; bottom: 70px; right: 0;
  background: white; border-radius: 16px; padding: 16px 20px; width: 260px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15); font-size: 14px; border: 1px solid #f0f0f5;
  opacity: 0; pointer-events: none;
  transform: translateY(10px) scale(0.95); transform-origin: bottom right;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.chat-widget:hover .chat-bubble { opacity: 1; pointer-events: all; transform: translateY(0) scale(1); }
.cb-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.cb-avatar { width: 40px; height: 40px; background: linear-gradient(135deg, #1a237e, #3949ab); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.cb-name { font-weight: 700; font-size: 14px; color: #1a1a2e; }
.cb-status { font-size: 11px; color: #4caf50; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.cb-status::before { content: ''; width: 6px; height: 6px; background: #4caf50; border-radius: 50%; display: inline-block; }
.cb-text { color: #555; font-size: 13px; line-height: 1.6; }
.cb-btn { display: block; background: #1a237e; color: white; text-align: center; padding: 11px; border-radius: 10px; margin-top: 14px; text-decoration: none; font-weight: 700; font-size: 13px; transition: background 0.2s; }
.cb-btn:hover { background: #0d1257; }
.chat-trigger {
  width: 58px; height: 58px; background: #1a237e; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(26,35,126,0.4);
  cursor: pointer; transition: all 0.3s; text-decoration: none;
  font-size: 26px; color: white; position: relative;
}
.chat-trigger:hover { transform: scale(1.08); background: #0d1257; }
.chat-badge {
  position: absolute; top: -2px; right: -2px;
  width: 18px; height: 18px; background: #4caf50;
  border-radius: 50%; border: 2px solid white;
  animation: pulse 2s infinite;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-cards { display: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  header { padding: 14px 24px; }
  .header-nav { display: none; }
  .header-nav.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: white; padding: 16px; border-bottom: 1px solid #f0f0f8; box-shadow: 0 8px 24px rgba(26,35,126,0.1); z-index: 99; }
  .burger { display: block; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 60px 24px; }
  .hero-left h1 { font-size: 38px; }
  .section { padding: 60px 24px; }
  .page-hero { padding: 40px 24px; }
  .page-hero h1 { font-size: 32px; }
  .layout-two { grid-template-columns: 1fr; padding: 40px 24px; }
  .contacts-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  footer { padding: 40px 24px; }
  .cta-banner { padding: 40px 24px; }
  .content-body { padding: 40px 24px; }
  .dropdown-menu { display: none !important; }
}
@media (max-width: 600px) {
  .svc-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

/* ===== Service Page Components ===== */
.service-page-img { width:100%; height:350px; object-fit:cover; border-radius:12px; margin-bottom:32px; }
.features-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:20px; margin:32px 0; }
.feature-card { background:#f8f9ff; border:1.5px solid #e0e3ff; border-radius:14px; padding:24px; }
.feature-card .icon { font-size:32px; margin-bottom:12px; }
.feature-card h4 { font-size:16px; font-weight:700; color:#1a237e; margin-bottom:8px; }
.feature-card p { font-size:14px; color:#555; line-height:1.6; }
.steps-list { counter-reset:steps; list-style:none; padding:0; }
.steps-list li { counter-increment:steps; display:flex; gap:16px; margin-bottom:24px; align-items:flex-start; }
.steps-list li::before { content:counter(steps); min-width:36px; height:36px; background:#1a237e; color:white; border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:16px; flex-shrink:0; }
.tariff-table { width:100%; border-collapse:collapse; margin:24px 0; }
.tariff-table th { background:#1a237e; color:white; padding:12px 16px; text-align:left; }
.tariff-table td { padding:12px 16px; border-bottom:1px solid #eee; }
.tariff-table tr:nth-child(even) td { background:#f8f9ff; }
.directions-list { list-style:none; padding:0; }
.directions-list li { padding:10px 16px; background:#f8f9ff; border-left:4px solid #ff6f00; border-radius:0 8px 8px 0; margin-bottom:8px; font-weight:600; }
.services-list { list-style:none; padding:0; margin:24px 0; }
.services-list li { display:flex; align-items:flex-start; gap:10px; padding:10px 0; border-bottom:1px solid #f0f0f0; font-size:15px; line-height:1.5; }
.cta-block { background:linear-gradient(135deg,#1a237e,#283593); border-radius:16px; padding:40px; text-align:center; margin-top:40px; color:white; }
.cta-block h3 { font-size:24px; font-weight:800; margin-bottom:12px; }
.cta-block p { font-size:15px; opacity:0.9; margin-bottom:24px; }
.cta-block .cta-btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.cta-block .btn-cta-tg { background:#2AABEE; color:white; padding:14px 28px; border-radius:50px; text-decoration:none; font-weight:700; font-size:15px; }
.cta-block .btn-cta-wa { background:#25D366; color:white; padding:14px 28px; border-radius:50px; text-decoration:none; font-weight:700; font-size:15px; }
.thermo-categories { display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:16px; margin:24px 0; }
.thermo-cat { background:#f8f9ff; border:1.5px solid #e0e3ff; border-radius:12px; padding:20px; }
.thermo-cat .cat-icon { font-size:28px; margin-bottom:8px; }
.thermo-cat h4 { font-size:14px; font-weight:700; color:#1a237e; margin-bottom:8px; }
.thermo-cat ul { list-style:none; padding:0; margin:0; }
.thermo-cat ul li { font-size:13px; color:#555; padding:3px 0; border-bottom:1px solid #eee; }
.thermo-cat ul li:last-child { border-bottom:none; }
