/* ════════════════════════════════════════════
   Today Global Market - Complete Stylesheet
   ════════════════════════════════════════════ */

:root {
  --navy: #0B1D3A;
  --navy-light: #132D54;
  --gold: #C9962B;
  --gold-light: #F5E6C4;
  --coral: #E8553D;
  --white: #FFFFFF;
  --sage: #F0F5F2;
  --cream: #FAFAF7;
  --slate: #64748B;
  --text: #1E293B;
  --border: #E2E8F0;
  --green: #16a34a;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 32px rgba(11,29,58,0.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; }
a { color: inherit; }

/* ─── Layout ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 720px; }
.section { padding: 80px 0; }
.section-cream { background: var(--cream); }
.section-dark { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); }

/* ─── Section Headers ─── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-eyebrow { display: inline-block; font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
.section-title { font-family: 'DM Serif Display', serif; font-size: 36px; color: var(--navy); line-height: 1.2; }
.section-subtitle { color: var(--slate); max-width: 560px; margin: 12px auto 0; }
.section-cta { text-align: center; margin-top: 40px; }
.text-gold { color: var(--gold); }
.text-coral { color: var(--coral); }
.text-green { color: var(--green); }
.text-navy { color: var(--navy); }

/* ─── Buttons ─── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 32px; border-radius: 8px; font-weight: 700; font-size: 15px; cursor: pointer; transition: all 0.2s; font-family: inherit; border: none; text-decoration: none; line-height: 1.2; }
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 16px 40px; font-size: 16px; }
.btn-full { width: 100%; }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #b8872a; }
.btn-coral { background: var(--coral); color: #fff; }
.btn-coral:hover { background: #d14a33; }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--navy); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-ghost { background: none; color: rgba(255,255,255,0.7); border: none; padding: 8px 16px; }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1fb955; }

/* ─── Notification Bar ─── */
/* ─── Modal System ─── */
.tgm-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); backdrop-filter: blur(4px); z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn { from { opacity: 0; transform: translateY(24px) scale(0.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
.tgm-modal { background: #fff; border-radius: 20px; max-width: 440px; width: 100%; padding: 36px 32px 28px; position: relative; box-shadow: 0 24px 80px rgba(0,0,0,0.3); animation: modalIn 0.35s ease; max-height: 90vh; overflow-y: auto; }
.modal-close { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 28px; color: #94a3b8; cursor: pointer; line-height: 1; padding: 4px 8px; border-radius: 8px; transition: all 0.2s; }
.modal-close:hover { color: #1e293b; background: #f1f5f9; }

/* ─── Notification Modal ─── */
.notif-modal { text-align: center; max-width: 380px; }
.notif-modal-icon { font-size: 48px; margin-bottom: 12px; animation: bellRing 0.6s ease 0.4s; }
@keyframes bellRing { 0%,100% { transform: rotate(0); } 20% { transform: rotate(14deg); } 40% { transform: rotate(-14deg); } 60% { transform: rotate(8deg); } 80% { transform: rotate(-8deg); } }
.notif-modal-title { font-family: 'DM Serif Display', serif; font-size: 24px; color: var(--navy); margin: 0 0 8px; }
.notif-modal-text { font-size: 14px; color: #64748b; line-height: 1.6; margin: 0 0 20px; }
.notif-subscribe-form { display: flex; flex-direction: column; gap: 10px; margin-bottom: 4px; }
.notif-subscribe-form .form-input { padding: 12px 16px; border: 2px solid #e2e8f0; border-radius: 10px; font-size: 14px; text-align: center; transition: border 0.2s; }
.notif-subscribe-form .form-input:focus { border-color: var(--gold); outline: none; }
.notif-subscribe-msg { text-align: center; font-size: 13px; margin-top: 8px; padding: 10px; border-radius: 8px; }
.notif-subscribe-msg.success { background: #f0fdf4; color: #16a34a; }
.notif-subscribe-msg.error { background: #fef2f2; color: #dc2626; }
.notif-divider { display: flex; align-items: center; gap: 12px; margin: 14px 0; color: #94a3b8; font-size: 12px; font-weight: 600; }
.notif-divider::before, .notif-divider::after { content: ''; flex: 1; height: 1px; background: #e2e8f0; }
.btn-outline-gold { background: none; border: 2px solid var(--gold); color: var(--gold); padding: 10px 20px; border-radius: 8px; font-weight: 600; font-size: 14px; cursor: pointer; transition: all 0.2s; font-family: inherit; }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }
.notif-skip { background: none; border: none; color: #94a3b8; font-size: 12px; cursor: pointer; margin-top: 12px; font-family: inherit; transition: color 0.2s; padding: 4px; }
.notif-skip:hover { color: #64748b; }

/* ─── Consultation Modal ─── */
.consultation-modal { max-width: 480px; padding: 28px 28px 22px; }
.consultation-modal .lead-form-title { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--navy); margin: 0 0 4px; }
.consultation-modal .lead-form-subtitle { font-size: 13px; color: #64748b; margin: 0 0 18px; }
.consultation-modal .form-input { padding: 10px 14px; font-size: 14px; }
.consultation-modal .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.consultation-modal .btn-coral { margin-top: 4px; }
.consultation-modal .form-privacy { font-size: 11px; color: #94a3b8; margin-top: 10px; }
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

/* ─── Top Bar ─── */
.top-bar { background: var(--navy); border-bottom: 1px solid rgba(255,255,255,0.08); }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; font-size: 12px; }
.top-bar a { color: rgba(255,255,255,0.7); text-decoration: none; }
.top-bar a:hover { color: #fff; }
.top-bar-left { display: flex; gap: 20px; }

/* ─── Navbar ─── */
.navbar { background: var(--navy); padding: 0; position: sticky; top: 0; z-index: 100; transition: box-shadow 0.3s; }
.navbar.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.15); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark { width: 36px; height: 36px; border-radius: 8px; background: linear-gradient(135deg, var(--gold), var(--coral)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 16px; }
.logo-text { color: #fff; font-weight: 700; font-size: 17px; font-family: 'DM Serif Display', serif; }
.nav-links { display: flex; align-items: center; gap: 4px; }

/* Unified nav item styles */
.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(255,255,255,0.12);
}
.nav-cta { margin-left: 8px; }

/* ─── Dropdown Menus ─── */
.nav-dropdown { position: relative; padding-bottom: 12px; margin-bottom: -12px; }
.dd-toggle { cursor: pointer; }
.dd-arrow { font-size: 10px; opacity: 0.7; transition: transform 0.2s; }
.nav-dropdown:hover .dd-arrow { transform: rotate(180deg); }

/* Dropdown panel */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  padding: 12px 8px;
  padding-top: 16px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1000;
}
/* Invisible bridge to connect trigger to dropdown */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 16px;
  background: transparent;
}
.nav-dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.dropdown-menu a { display: block; color: #1E293B; font-size: 13.5px; font-weight: 500; padding: 9px 16px; border-radius: 8px; text-decoration: none; white-space: nowrap; transition: background 0.15s; }
.dropdown-menu a:hover { background: #f0f4ff; color: var(--navy); }
.dropdown-menu h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: #94a3b8; padding: 10px 16px 4px; margin: 0; font-weight: 700; }

/* ─── Mega Menu (Insurance) ─── */
.mega-menu { display: flex; gap: 0; min-width: 600px; padding: 16px 8px; padding-top: 16px; }
.mega-col { flex: 1; padding: 0 12px; border-right: 1px solid #f0f3f8; }
.mega-col:last-child { border-right: none; }
.mega-col h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); padding: 4px 8px 6px; margin: 0 0 4px; font-weight: 700; }
.mega-col h4.mt-1 { margin-top: 12px; }
.mega-col a { display: block; color: #1E293B; font-size: 13px; font-weight: 500; padding: 6px 8px; border-radius: 6px; text-decoration: none; transition: background 0.15s; }
.mega-col a:hover { background: #f0f4ff; color: var(--navy); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; width: 32px; height: 24px; position: relative; }
.menu-toggle span { display: block; width: 100%; height: 2px; background: #fff; position: absolute; left: 0; transition: all 0.3s; }
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 10px; }
.menu-toggle span:nth-child(3) { top: 20px; }
.menu-toggle.open span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* ─── Page Hero (inner pages) ─── */
.page-hero { background: linear-gradient(135deg, var(--navy), var(--navy-light)); padding: 56px 0; text-align: center; }
.page-hero-title { font-family: 'DM Serif Display', serif; font-size: 40px; color: #fff; line-height: 1.2; margin-top: 8px; }
.page-hero-desc { color: rgba(255,255,255,0.65); max-width: 560px; margin: 12px auto 0; font-size: 16px; }

/* ─── Hero (Homepage) ─── */
.hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1a3a68 100%); padding: 72px 0 80px; position: relative; overflow: hidden; }
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.hero-circle { position: absolute; border-radius: 50%; }
.hero-circle-1 { top: -120px; right: -120px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(201,150,43,0.08), transparent 70%); }
.hero-circle-2 { bottom: -80px; left: -80px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(232,85,61,0.06), transparent 70%); }
.hero-grid { display: flex; align-items: center; gap: 48px; position: relative; }
.hero-content { flex: 1; }
.hero-sidebar { flex: 0 0 380px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,150,43,0.12); border: 1px solid rgba(201,150,43,0.25); border-radius: 20px; padding: 6px 16px; margin-bottom: 20px; }
.hero-badge .pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; }
.hero-badge { color: var(--gold); font-size: 13px; font-weight: 600; }
.hero-title { font-family: 'DM Serif Display', serif; font-size: 48px; color: #fff; line-height: 1.15; margin-bottom: 20px; }
.hero-desc { color: rgba(255,255,255,0.65); font-size: 17px; line-height: 1.7; max-width: 520px; margin-bottom: 28px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-stats { display: flex; gap: 40px; }
.hero-stat strong { display: block; color: var(--gold); font-weight: 800; font-size: 22px; }
.hero-stat span { color: rgba(255,255,255,0.5); font-size: 12px; }

/* Hero Checklist — Solid white card */
.hero-checklist { background: #fff; border-radius: 20px; padding: 24px 22px 20px; box-shadow: 0 16px 48px rgba(0,0,0,0.25); }
.hc-header { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 2px solid #f0f3f8; }
.hc-icon { font-size: 32px; }
.hc-header h4 { color: var(--navy); font-size: 16px; font-weight: 800; margin: 0; letter-spacing: 0; text-transform: none; }
.hc-subtitle { color: var(--slate); font-size: 12px; margin: 2px 0 0; }
.hero-checklist .check-item { display: flex !important; align-items: center; gap: 10px; padding: 10px 8px; margin: 0 -8px; border-radius: 10px; border-bottom: 1px solid #f0f3f8; border-left: none; border-right: none; border-top: none; background: transparent; transition: background 0.2s; }
.hero-checklist .check-item:last-of-type { border-bottom: none; }
.hero-checklist .check-item.answered { background: #f8faff; }
.hero-checklist .check-emoji { font-size: 20px; flex-shrink: 0; }
.hero-checklist .check-label { color: #1E293B !important; font-size: 13.5px; font-weight: 600; flex: 1; line-height: 1.4; min-width: 0; overflow: visible; }
.hero-checklist .check-btns { display: flex; gap: 6px; flex-shrink: 0; }
.check-yes, .check-no { padding: 6px 16px; border-radius: 6px; font-size: 12px; font-weight: 700; cursor: pointer; transition: all 0.2s; border: 2px solid transparent; background: none; font-family: inherit; }
.check-yes { background: #f0fdf4; color: #16a34a; border-color: #bbf7d0; }
.check-yes:hover { background: #dcfce7; border-color: #4ade80; }
.check-yes.selected { background: #16a34a; color: #fff; border-color: #16a34a; }
.check-no { background: #fef2f2; color: #dc2626; border-color: #fecaca; }
.check-no:hover { background: #fee2e2; border-color: #f87171; }
.check-no.selected { background: #dc2626; color: #fff; border-color: #dc2626; }
/* Score display */
.hc-score { margin-top: 14px; padding-top: 14px; border-top: 2px solid #f0f3f8; }
.hc-score-bar { height: 10px; background: #f0f3f8; border-radius: 5px; overflow: hidden; }
.hc-score-fill { height: 100%; border-radius: 5px; transition: width 0.5s ease, background 0.5s; }
.hc-score-text { text-align: center; font-size: 13px; font-weight: 600; margin-top: 8px; }

/* ─── Services Grid ─── */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card { display: block; background: #fff; border-radius: 16px; padding: 28px; border: 1px solid var(--border); transition: all 0.25s; text-decoration: none; position: relative; overflow: hidden; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.service-icon { font-size: 32px; margin-bottom: 14px; }
.service-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-card p { color: var(--slate); font-size: 13px; line-height: 1.6; }
.service-arrow { position: absolute; bottom: 20px; right: 20px; color: var(--gold); font-size: 18px; opacity: 0; transition: all 0.2s; }
.service-card:hover .service-arrow { opacity: 1; right: 16px; }

/* ─── Service Detail (services.php) ─── */
.service-detail { max-width: 760px; margin: 0 auto; }
.service-detail-header { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 28px; }
.service-detail-icon { font-size: 48px; }
.service-detail-title { font-family: 'DM Serif Display', serif; font-size: 30px; color: var(--navy); }
.service-detail-subtitle { color: var(--slate); font-size: 16px; margin-top: 4px; }
.service-detail-body { color: var(--text); font-size: 15px; line-height: 1.8; margin-bottom: 28px; }
.service-detail-body h4 { color: var(--navy); margin: 24px 0 12px; font-size: 18px; }
.service-detail-body ul { padding-left: 20px; margin: 12px 0; }
.service-detail-body li { margin-bottom: 8px; color: var(--slate); }

/* ─── Calculator Page ─── */
.calc-page { padding: 40px 0 64px; background: linear-gradient(180deg, #f8faff 0%, #fff 100%); }

/* Selector */
.calc-selector { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 24px 28px; margin-bottom: 32px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); display: flex; align-items: center; gap: 16px; }
.calc-selector label { font-size: 14px; font-weight: 700; color: var(--navy); white-space: nowrap; margin: 0; }
.calc-selector label i { color: var(--gold); margin-right: 6px; font-size: 18px; }
.calc-selector select { flex: 1; padding: 14px 20px; border: 2px solid #e5ecf6; border-radius: 12px; font-size: 15px; font-weight: 600; font-family: inherit; background: #f8faff; color: var(--navy); cursor: pointer; transition: all 0.2s; }
.calc-selector select:hover { border-color: var(--gold); }
.calc-selector select:focus { border-color: var(--gold); outline: none; box-shadow: 0 0 0 4px rgba(232,185,49,0.12); background: #fff; }
.calc-panel { animation: fadeCalc 0.4s ease; }
@keyframes fadeCalc { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* Calculator Card */
.calc-box { background: #fff; border: 1px solid #e5ecf6; border-radius: 24px; padding: 0; box-shadow: 0 8px 32px rgba(0,0,0,0.06); overflow: hidden; }
.calc-header { padding: 32px 40px 24px; background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: #fff; }
.calc-header h2 { font-family: 'DM Serif Display', serif; font-size: 28px; color: #fff; margin: 0 0 8px; }
.calc-header h2 i { color: var(--gold); margin-right: 8px; }
.calc-header p { color: rgba(255,255,255,0.7); font-size: 15px; margin: 0; line-height: 1.6; }
.calc-body { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 0; }
.calc-left { padding: 32px 36px; }
.calc-right { padding: 32px 36px; background: #f8faff; border-left: 1px solid #e5ecf6; display: flex; flex-direction: column; justify-content: center; }

/* Fields */
.calc-field { margin-bottom: 24px; }
.calc-field:last-child { margin-bottom: 0; }
.calc-field label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.calc-field-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.calc-field-head label { margin-bottom: 0; font-size: 14px; }
.calc-val { font-size: 18px; font-weight: 800; color: var(--gold); font-family: 'DM Serif Display', serif; }
.calc-range-labels { display: flex; justify-content: space-between; font-size: 11px; color: #94a3b8; margin-top: 6px; font-weight: 500; }
.calc-input { width: 100%; padding: 14px 18px; border: 2px solid #e5ecf6; border-radius: 12px; font-size: 16px; font-weight: 600; font-family: inherit; transition: all 0.2s; background: #fff; color: var(--navy); }
.calc-input:focus { border-color: var(--gold); outline: none; box-shadow: 0 0 0 4px rgba(232,185,49,0.1); }

/* Results */
.calc-result-card { background: #fff; border: 2px solid #e5ecf6; border-radius: 16px; padding: 28px; }
.calc-row { display: flex; justify-content: space-between; align-items: center; font-size: 14px; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px dashed #e5ecf6; }
.calc-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.calc-row span:first-child { color: #64748b; font-weight: 500; }
.calc-row span:last-child { font-weight: 700; color: var(--navy); font-size: 15px; }
.val-green { color: #16a34a !important; }
.val-red { color: #dc2626 !important; }
.calc-total { border-top: 2px solid var(--gold); margin-top: 16px; padding-top: 18px; display: flex; justify-content: space-between; align-items: center; }
.calc-total span:first-child { font-size: 14px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; }
.calc-total span:last-child { font-size: 24px; font-weight: 800; color: var(--navy); font-family: 'DM Serif Display', serif; }
.calc-bar { height: 8px; background: #e5ecf6; border-radius: 4px; overflow: hidden; margin: 12px 0 16px; }
.calc-bar div { height: 100%; background: linear-gradient(90deg, var(--gold), var(--coral)); border-radius: 4px; transition: width 0.5s ease; }
.calc-score { font-size: 56px; font-weight: 800; font-family: 'DM Serif Display', serif; margin-bottom: 8px; }
.score-green { color: #16a34a; }
.score-yellow { color: #f59e0b; }
.score-red { color: #dc2626; }
.calc-advice { margin-top: 16px; padding: 16px 20px; background: linear-gradient(135deg, #f0fdf4, #dcfce7); border-left: 4px solid #16a34a; border-radius: 12px; color: #166534; font-size: 14px; line-height: 1.6; font-weight: 500; }
.calc-cta-btn { margin-top: 20px; padding: 16px 28px; font-size: 15px; border-radius: 14px; font-weight: 700; box-shadow: 0 4px 16px rgba(232,185,49,0.25); transition: all 0.2s; }
.calc-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(232,185,49,0.35); }

/* Range inputs */
input[type="range"] { -webkit-appearance: none; width: 100%; height: 8px; border-radius: 4px; background: linear-gradient(90deg, #e5ecf6, #dbeafe); outline: none; margin-top: 4px; cursor: pointer; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--coral)); cursor: pointer; border: 3px solid #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.2); transition: transform 0.15s; }
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
input[type="range"]::-moz-range-thumb { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--coral)); cursor: pointer; border: 3px solid #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.2); }


/* ─── Articles ─── */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card { display: block; background: #fff; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); transition: all 0.25s; text-decoration: none; }
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.article-bar { height: 5px; }
.article-image { width: 100%; height: 180px; object-fit: cover; }
.article-body { padding: 24px; }
.article-meta { display: flex; gap: 8px; align-items: center; margin-bottom: 12px; }
.article-tag { background: rgba(201,150,43,0.12); color: var(--gold); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 4px; }
.article-time { color: var(--slate); font-size: 11px; }
.article-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 8px; }
.article-card p { color: var(--slate); font-size: 13px; line-height: 1.6; }
.read-more { display: inline-block; margin-top: 14px; color: var(--coral); font-size: 13px; font-weight: 600; }

/* Blog filters */
.blog-filters { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.filter-tag { padding: 8px 18px; border-radius: 20px; border: 1px solid var(--border); background: #fff; color: var(--slate); font-size: 13px; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.filter-tag.active, .filter-tag:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ─── Blog Post ─── */
.blog-post-page { padding: 40px 0 60px; }
.breadcrumb { font-size: 13px; color: var(--slate); margin-bottom: 24px; }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.post-header { margin-bottom: 32px; }
.post-title { font-family: 'DM Serif Display', serif; font-size: 36px; color: var(--navy); line-height: 1.2; margin-top: 12px; }
.post-excerpt { font-size: 17px; color: var(--slate); margin-top: 12px; line-height: 1.7; }
.post-featured-image { width: 100%; border-radius: var(--radius); margin-bottom: 32px; }
.post-content { font-size: 16px; line-height: 1.8; color: var(--text); }
.post-content h2 { font-family: 'DM Serif Display', serif; font-size: 26px; color: var(--navy); margin: 36px 0 16px; }
.post-content h3 { font-size: 20px; color: var(--navy); margin: 28px 0 12px; }
.post-content p { margin-bottom: 16px; }
.post-content ul, .post-content ol { padding-left: 24px; margin-bottom: 16px; }
.post-content li { margin-bottom: 8px; }
.post-content a { color: var(--coral); text-decoration: underline; }
.post-content strong { color: var(--navy); }
.post-tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 32px 0; }
.post-tag { padding: 4px 12px; background: var(--sage); border-radius: 4px; font-size: 12px; color: var(--slate); }
.post-share { display: flex; align-items: center; gap: 12px; margin: 24px 0; padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.post-share span { font-weight: 600; font-size: 14px; }
.share-btn { padding: 6px 16px; border-radius: 6px; font-size: 12px; font-weight: 600; text-decoration: none; color: #fff; }
.share-wa { background: #25D366; }
.share-fb { background: #1877F2; }
.share-tw { background: #1DA1F2; }
.post-cta-box { background: var(--sage); border-radius: var(--radius); padding: 28px; margin: 32px 0; text-align: center; }
.post-cta-box h3 { color: var(--navy); margin-bottom: 8px; }
.post-cta-box p { color: var(--slate); font-size: 14px; margin-bottom: 16px; }
.related-posts { margin-top: 40px; }
.related-posts h3 { font-size: 20px; color: var(--navy); margin-bottom: 16px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card { display: block; padding: 20px; background: var(--cream); border-radius: var(--radius); text-decoration: none; transition: all 0.2s; }
.related-card:hover { background: var(--sage); }
.related-card h4 { font-size: 15px; color: var(--navy); margin: 8px 0 4px; line-height: 1.4; }

/* ─── Consultation Section ─── */
.consultation-grid { display: flex; gap: 60px; align-items: flex-start; flex-wrap: wrap; }
.consultation-content { flex: 1; min-width: 300px; }
.consultation-form { flex: 1; min-width: 340px; }
.consultation-checks { margin-top: 28px; }
.consult-check { color: rgba(255,255,255,0.85); font-size: 14px; margin-bottom: 12px; }

/* ─── Lead Form ─── */
.lead-form-wrapper { background: rgba(255,255,255,0.06); border-radius: 20px; padding: 32px; border: 1px solid rgba(255,255,255,0.1); }
.lead-form-wrapper:not(.form-dark) { background: #fff; border: 1px solid var(--border); }
.lead-form-title { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.lead-form-wrapper:not(.form-dark) .lead-form-title { color: var(--navy); }
.lead-form-subtitle { color: rgba(255,255,255,0.5); font-size: 13px; margin-bottom: 24px; }
.lead-form-wrapper:not(.form-dark) .lead-form-subtitle { color: var(--slate); }
.lead-form { display: flex; flex-direction: column; gap: 14px; }
.form-input { width: 100%; padding: 14px 16px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 15px; font-family: inherit; outline: none; transition: border 0.2s; background: #fff; }
.form-input:focus { border-color: var(--gold); }
.form-row-2 { display: flex; gap: 12px; }
.form-privacy { color: rgba(255,255,255,0.4); font-size: 11px; text-align: center; margin-top: 4px; }
.lead-form-wrapper:not(.form-dark) .form-privacy { color: var(--slate); }
.form-msg { font-size: 13px; text-align: center; margin-top: 8px; }
select.form-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748B' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.lead-form-success { text-align: center; padding: 20px; }
.success-icon { font-size: 48px; margin-bottom: 16px; }
.lead-form-success h3 { color: #fff; font-size: 22px; margin-bottom: 8px; }
.lead-form-wrapper:not(.form-dark) .lead-form-success h3 { color: var(--navy); }
.lead-form-success p { color: rgba(255,255,255,0.7); font-size: 15px; }
.lead-form-wrapper:not(.form-dark) .lead-form-success p { color: var(--slate); }

/* ─── Testimonials ─── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--sage); border-radius: 16px; padding: 28px; }
.testimonial-quote { font-size: 48px; color: var(--gold); font-family: serif; line-height: 1; margin-bottom: 8px; opacity: 0.4; }
.testimonial-text { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 16px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(201,150,43,0.15); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--gold); }
.testimonial-author strong { display: block; font-size: 14px; color: var(--navy); }
.testimonial-author span { font-size: 12px; color: var(--slate); }
.testimonial-stars { margin-left: auto; color: var(--gold); font-size: 13px; }

/* ─── FAQ ─── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: #fff; transition: border-color 0.2s; }
.faq-item:hover { border-color: var(--gold); }
.faq-question { width: 100%; padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; background: none; border: none; cursor: pointer; font-family: inherit; text-align: left; }
.faq-question span:first-child { font-weight: 600; font-size: 15px; color: var(--navy); }
.faq-icon { font-size: 20px; color: var(--gold); transition: transform 0.2s; flex-shrink: 0; margin-left: 12px; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s, padding 0.3s; }
.faq-item.open .faq-answer { max-height: 200px; padding: 0 20px 18px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer p { color: var(--slate); font-size: 14px; line-height: 1.7; }

/* ─── About Page ─── */
.about-content { font-size: 15px; line-height: 1.8; }
.about-content h2 { font-family: 'DM Serif Display', serif; font-size: 26px; color: var(--navy); margin: 36px 0 16px; }
.about-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 24px 0; }
.about-feature { padding: 24px; background: var(--sage); border-radius: var(--radius); }
.about-feature-icon { font-size: 28px; margin-bottom: 8px; display: block; }
.about-feature h3 { font-size: 16px; color: var(--navy); margin-bottom: 6px; }
.about-feature p { font-size: 13px; color: var(--slate); }
.credentials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 16px 0 24px; }
.credential { padding: 14px 16px; background: var(--sage); border-radius: 8px; font-size: 14px; font-weight: 600; color: var(--navy); }

/* ─── Contact Page ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h2 { font-family: 'DM Serif Display', serif; font-size: 28px; color: var(--navy); margin-bottom: 12px; }
.contact-methods { margin: 28px 0; display: flex; flex-direction: column; gap: 16px; }
.contact-method { display: flex; align-items: center; gap: 16px; padding: 16px; background: var(--sage); border-radius: var(--radius); text-decoration: none; transition: all 0.2s; }
.contact-method:hover { background: var(--gold-light); }
.contact-method-icon { font-size: 24px; }
.contact-method strong { display: block; color: var(--navy); }
.contact-method span { font-size: 13px; color: var(--slate); }
.contact-hours, .contact-free-services { margin-top: 24px; }
.contact-hours h3, .contact-free-services h3 { font-size: 16px; color: var(--navy); margin-bottom: 8px; }
.contact-free-services ul { list-style: none; }
.contact-free-services li { padding: 6px 0; font-size: 14px; }
.map-section { margin-top: 48px; text-align: center; padding: 40px; background: var(--sage); border-radius: var(--radius); }
.map-section h3 { color: var(--navy); margin-bottom: 8px; }
.map-section p { color: var(--slate); font-size: 14px; }

/* ─── Newsletter ─── */
.newsletter-section { background: var(--navy); padding: 56px 0; }
.newsletter-box { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.newsletter-content h3 { color: #fff; font-size: 22px; margin-bottom: 6px; }
.newsletter-content p { color: rgba(255,255,255,0.6); font-size: 14px; }
.newsletter-form { display: flex; gap: 12px; flex: 1; max-width: 420px; }
.newsletter-form .form-input { flex: 1; }

/* ─── Footer ─── */
.site-footer { background: var(--navy); padding: 56px 0 32px; color: rgba(255,255,255,0.7); }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr; gap: 36px; }
.footer-about p { font-size: 13px; line-height: 1.7; margin-bottom: 16px; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 13px; text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col p { font-size: 13px; margin-bottom: 8px; color: rgba(255,255,255,0.65); }
.footer-social { display: flex; gap: 12px; margin-top: 12px; }
.footer-social a { width: 32px; height: 32px; border-radius: 6px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; text-decoration: none; transition: background 0.2s; }
.footer-social a:hover { background: var(--gold); color: #fff; }
.footer-bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; }
.footer-disclaimer { color: rgba(255,255,255,0.4); font-size: 11px; max-width: 600px; margin-top: 8px; }

/* ─── WhatsApp FAB ─── */
.whatsapp-fab { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,0.4); z-index: 99; transition: transform 0.2s; }
.whatsapp-fab:hover { transform: scale(1.1); }

/* ─── Back to Top ─── */
.back-to-top { position: fixed; bottom: 90px; right: 28px; width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff; border: none; font-size: 18px; cursor: pointer; opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 98; box-shadow: var(--shadow); }
.back-to-top.visible { opacity: 1; visibility: visible; }

/* ─── Cookie Bar ─── */
.cookie-bar { position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy); color: rgba(255,255,255,0.8); padding: 16px 0; z-index: 150; }
.cookie-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 13px; }
.cookie-bar a { color: var(--gold); }

/* ─── Ads ─── */
.ad-container { margin: 24px auto; text-align: center; max-width: 100%; overflow: hidden; }

/* ─── Pagination ─── */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.page-link { padding: 10px 16px; border-radius: 8px; border: 1px solid var(--border); text-decoration: none; color: var(--slate); font-size: 14px; font-weight: 500; transition: all 0.2s; }
.page-link:hover { border-color: var(--gold); color: var(--navy); }
.page-link.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ─── Empty State ─── */
.empty-state { text-align: center; padding: 64px 24px; }
.empty-state h3 { color: var(--navy); margin-bottom: 8px; }
.empty-state p { color: var(--slate); }

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }

  /* Navbar mobile */
  .menu-toggle { display: block; z-index: 101; }
  .nav-links { 
    position: fixed; top: 0; left: 0; right: 0; bottom: 0; 
    background: #0B1D3A; flex-direction: column; 
    padding: 70px 16px 100px; gap: 0; 
    transform: translateX(100%); transition: transform 0.3s ease; 
    z-index: 100; overflow-y: auto; 
    -webkit-overflow-scrolling: touch;
    align-items: stretch !important;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { 
    padding: 14px 16px; border-radius: 0; font-size: 15px; font-weight: 600; 
    border-bottom: 1px solid rgba(255,255,255,0.08); 
    text-align: left !important; display: block; width: 100%;
    color: rgba(255,255,255,0.9) !important;
  }
  .nav-link:hover, .nav-link.active { background: rgba(232,185,49,0.08); color: var(--gold) !important; }
  .nav-cta { margin: 16px 0 0; width: 100%; text-align: center; border-radius: 10px !important; }

  /* Mobile dropdowns */
  .nav-dropdown { width: 100%; padding-bottom: 0; margin-bottom: 0; }
  .dd-toggle { width: 100%; justify-content: space-between; padding: 14px 16px; font-size: 15px; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex !important; text-align: left; color: rgba(255,255,255,0.9) !important; border-radius: 0 !important; }
  .dd-arrow { font-size: 12px; color: rgba(255,255,255,0.3); }
  .nav-dropdown.open .dd-arrow { transform: rotate(180deg); }
  .dropdown-menu, .mega-menu { position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto; box-shadow: none; background: rgba(255,255,255,0.03); border-radius: 0; margin: 0; padding: 4px 0 8px 16px; min-width: unset; display: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .dropdown-menu::before { display: none; }
  .nav-dropdown.open > .dropdown-menu { display: block; }
  .mega-menu { flex-direction: column; min-width: unset; }
  .mega-col { border-right: none; padding: 0; }
  .mega-col h4 { color: var(--gold); padding: 8px 12px 2px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.8px; opacity: 0.7; }
  .dropdown-menu a, .mega-col a { color: rgba(255,255,255,0.7) !important; font-size: 14px; padding: 10px 12px; border-radius: 6px; display: block; }
  .dropdown-menu a:hover, .mega-col a:hover { background: rgba(255,255,255,0.06); color: #fff !important; }
  .dropdown-menu h4 { color: var(--gold); font-size: 11px; text-transform: uppercase; letter-spacing: 0.8px; padding: 8px 12px 2px; opacity: 0.7; }

  .top-bar { display: none; }

  /* Hero */
  .hero-grid { flex-direction: column; text-align: center; }
  .hero-content { align-items: center; display: flex; flex-direction: column; }
  .hero-sidebar { flex: unset; width: 100%; max-width: 400px; }
  .hero-title { font-size: 32px; }
  .hero-stats { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-desc { text-align: center; }

  .page-hero-title { font-size: 28px; }
  .section-title { font-size: 28px; }

  .services-grid { grid-template-columns: 1fr; }
  .calc-cards { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .consultation-grid { flex-direction: column; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .tax-compare { flex-direction: column; }
  .tax-vs { display: none; }

  /* Mobile calculator */
  .calc-body { grid-template-columns: 1fr; gap: 0; }
  .calc-left { padding: 24px 20px; }
  .calc-right { padding: 24px 20px; border-left: none; border-top: 1px solid #e5ecf6; }
  .calc-header { padding: 24px 20px 18px; }
  .calc-header h2 { font-size: 22px; }
  .calc-selector { flex-direction: column; align-items: stretch; padding: 16px 20px; }
  .calc-selector label { margin-bottom: 4px; }
  .calc-total span:last-child { font-size: 20px; }
  .calc-val { font-size: 16px; }

  .newsletter-box { flex-direction: column; text-align: center; }
  .newsletter-form { width: 100%; max-width: 100%; flex-direction: column; }
  .newsletter-form .form-input { width: 100%; }

  .tgm-modal { margin: 12px; padding: 28px 20px 20px; max-height: 85vh; }
  .notif-modal { max-width: 340px; }
  .consultation-modal { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row-2 { flex-direction: column; gap: 14px; }

  .calc-box { padding: 24px 20px; }
  .calc-title { font-size: 22px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .credentials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ─── AdSense Compliance Styling ─── */
.ad-container { margin: 24px auto; padding: 12px 0; text-align: center; max-width: 100%; overflow: hidden; }
.ad-label { display: block; text-align: center; font-size: 10px; color: #999; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 4px; font-weight: 500; }
.ad-horizontal { border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 16px 0; }
.ad-in-article { margin: 32px 0; }

/* ── New Calculator Styles ── */
.calc-advice{margin-top:12px;padding:12px 16px;background:#f0fdf4;border-left:4px solid #34d399;border-radius:6px;color:#166534;font-size:14px;line-height:1.5;}
.calc-breakdown .calc-result-row{padding:6px 0;font-size:14px;}
.calc-field input[type="number"],.calc-field select{width:100%;padding:10px 12px;border:1px solid #ddd;border-radius:6px;font-size:15px;}
.calc-field input[type="number"]:focus,.calc-field select:focus{border-color:#0B1D3A;outline:none;box-shadow:0 0 0 3px rgba(11,29,58,0.1);}

/* ─── Calculator Component Classes ─── */
.cf { margin-bottom: 22px; }
.cf:last-child { margin-bottom: 0; }
.cf label { display: block; font-size: 13px; font-weight: 700; color: #0B1D3A; margin-bottom: 6px; }
.cf-h { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.cf-h label { margin-bottom: 0; font-size: 14px; }
.cf-v { font-size: 18px; font-weight: 800; color: #E8B931; font-family: 'DM Serif Display', serif; }
.cf-r { display: flex; justify-content: space-between; font-size: 11px; color: #94a3b8; margin-top: 5px; }
.ci { width: 100%; padding: 13px 16px; border: 2px solid #e5ecf6; border-radius: 10px; font-size: 15px; font-weight: 600; font-family: inherit; background: #fff; color: #0B1D3A; transition: border 0.2s; }
.ci:focus { border-color: #E8B931; outline: none; box-shadow: 0 0 0 3px rgba(232,185,49,0.1); }
.cr { background: #fff; border: 2px solid #e5ecf6; border-radius: 14px; padding: 24px; }
.cr-row { display: flex; justify-content: space-between; align-items: center; font-size: 14px; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px dashed #e5ecf6; }
.cr-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.cr-row span:first-child { color: #64748b; }
.cr-row span:last-child { font-weight: 700; color: #0B1D3A; font-size: 15px; }
.cr-total { border-top: 2px solid #E8B931; margin-top: 14px; padding-top: 16px; display: flex; justify-content: space-between; align-items: center; }
.cr-total span:first-child { font-size: 13px; font-weight: 700; color: #0B1D3A; text-transform: uppercase; letter-spacing: 0.5px; }
.cr-total span:last-child { font-size: 24px; font-weight: 800; color: #0B1D3A; font-family: 'DM Serif Display', serif; }
.cr-bar { height: 8px; background: #e5ecf6; border-radius: 4px; overflow: hidden; margin: 10px 0 14px; }
.cr-bar div { height: 100%; background: linear-gradient(90deg, #E8B931, #E07A5F); border-radius: 4px; transition: width 0.5s; }
.vg { color: #16a34a !important; }
.vr { color: #dc2626 !important; }
.ca { margin-top: 14px; padding: 14px 18px; background: linear-gradient(135deg, #f0fdf4, #dcfce7); border-left: 4px solid #16a34a; border-radius: 10px; color: #166534; font-size: 13px; line-height: 1.6; }

/* ─── Homepage Grid Responsive ─── */
@media(max-width:1024px){.srv-grid{grid-template-columns:repeat(2,1fr) !important;}}
@media(max-width:768px){
  .srv-grid{grid-template-columns:1fr !important;}
  .calc-prev-grid{grid-template-columns:1fr !important;}
  .art-grid{grid-template-columns:1fr !important;}
  .test-grid{grid-template-columns:1fr !important;}
  .vid-grid{grid-template-columns:1fr !important;}
}