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

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

:root {
  --navy: #1a2e4a;
  --navy-mid: #2c4a6e;
  --navy-light: #3d6491;
  --green: #4a8c6f;
  --green-light: #5ea882;
  --green-pale: #eaf3ef;
  --gray-bg: #f4f6f9;
  --gray-border: #dde3ea;
  --gray-mid: #8a95a3;
  --gray-dark: #4a5568;
  --text: #2d3748;
  --white: #ffffff;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Merriweather', Georgia, serif;
  --radius: 6px;
  --shadow-sm: 0 1px 4px rgba(26,46,74,0.07);
  --shadow-md: 0 4px 16px rgba(26,46,74,0.10);
  --shadow-lg: 0 8px 32px rgba(26,46,74,0.13);
  --transition: 0.22s ease;
}

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

a { color: var(--navy-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-sans); }
input, textarea, select { font-family: var(--font-sans); }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-serif); color: var(--navy); line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.45rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead { font-size: 1.15rem; color: var(--gray-dark); line-height: 1.75; }
.text-muted { color: var(--gray-mid); }
.text-green { color: var(--green); }
.text-navy { color: var(--navy); }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.1rem; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

/* LAYOUT */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 52px 0; }
.section-lg { padding: 110px 0; }
.section-bg { background: var(--gray-bg); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4 { color: var(--white); }
.section-navy .text-muted { color: rgba(255,255,255,0.65); }

/* GRID */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-48 { gap: 48px; }

/* SECTION HEADER */
.section-header { margin-bottom: 52px; }
.section-header.centered { text-align: center; max-width: 660px; margin-left: auto; margin-right: auto; }
.section-label { display: inline-block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--gray-dark); font-size: 1.05rem; }
.divider { width: 44px; height: 3px; background: var(--green); border-radius: 2px; margin: 16px 0; }
.divider.centered { margin-left: auto; margin-right: auto; }

/* HEADER */
.site-header { background: var(--white); border-bottom: 1px solid var(--gray-border); position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark { width: 36px; height: 36px; background: var(--navy); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.logo-mark svg { width: 20px; height: 20px; }
.logo-text { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.logo-sub { font-size: 0.68rem; color: var(--gray-mid); font-weight: 400; font-family: var(--font-sans); display: block; margin-top: -2px; letter-spacing: 0.05em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a { font-size: 0.88rem; font-weight: 500; color: var(--gray-dark); padding: 8px 12px; border-radius: var(--radius); transition: background var(--transition), color var(--transition); white-space: nowrap; }
.nav a:hover, .nav a.active { color: var(--navy); background: var(--gray-bg); }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ''; display: inline-block; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 4px solid currentColor; margin-left: 5px; vertical-align: middle; }
.nav-dropdown-menu { position: absolute; top: calc(100% + 8px); left: 0; background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius); box-shadow: var(--shadow-md); min-width: 210px; padding: 6px; display: none; z-index: 100; }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: block; padding: 9px 14px; font-size: 0.875rem; color: var(--gray-dark); border-radius: 4px; }
.nav-dropdown-menu a:hover { background: var(--gray-bg); color: var(--navy); }

.header-cta { background: var(--navy); color: var(--white); padding: 9px 20px; border-radius: var(--radius); font-size: 0.875rem; font-weight: 600; transition: background var(--transition); }
.header-cta:hover { background: var(--navy-mid); color: var(--white); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; background: var(--white); border-top: 1px solid var(--gray-border); padding: 16px 24px; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 10px 0; font-size: 0.95rem; color: var(--text); border-bottom: 1px solid var(--gray-bg); font-weight: 500; }
.mobile-nav a:last-child { border-bottom: none; }

/* HERO */
.hero { background: var(--navy); color: var(--white); padding: 100px 0 90px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,46,74,0.98) 55%, rgba(44,74,110,0.85) 100%); z-index: 1; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.18; }
.hero-content { position: relative; z-index: 2; }
.hero h1 { color: var(--white); margin-bottom: 20px; line-height: 1.2; font-size: clamp(2rem, 4.5vw, 3.2rem); }
.hero-lead { font-size: 1.15rem; color: rgba(255,255,255,0.82); line-height: 1.75; margin-bottom: 36px; max-width: 600px; }
.hero-meta { display: flex; gap: 36px; margin-top: 44px; }
.hero-meta-item { }
.hero-meta-num { font-size: 2rem; font-weight: 700; color: var(--white); font-family: var(--font-serif); line-height: 1; }
.hero-meta-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 4px; }
.hero-layout { display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center; }
.hero-visual img { border-radius: 10px; box-shadow: var(--shadow-lg); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 26px; border-radius: var(--radius); font-size: 0.9rem; font-weight: 600; transition: all var(--transition); border: 2px solid transparent; text-decoration: none; cursor: pointer; }
.btn-primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover { background: var(--green-light); border-color: var(--green-light); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); color: var(--white); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-outline-green { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline-green:hover { background: var(--green); color: var(--white); }
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }
.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }

/* CARDS */
.card { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); transition: box-shadow var(--transition), transform var(--transition); }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-img { border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; margin: -28px -28px 24px; }
.card-img img { width: 100%; height: 200px; object-fit: cover; }
.card-tag { display: inline-block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); background: var(--green-pale); padding: 3px 10px; border-radius: 20px; margin-bottom: 10px; }
.card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.card p { font-size: 0.9rem; color: var(--gray-dark); }
.card-footer { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--gray-border); display: flex; align-items: center; justify-content: space-between; }
.card-meta { font-size: 0.8rem; color: var(--gray-mid); }

/* STAT CARDS */
.stat-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius); padding: 28px 24px; text-align: center; }
.stat-num { font-size: 2.4rem; font-weight: 700; font-family: var(--font-serif); color: var(--navy); line-height: 1; margin-bottom: 6px; }
.stat-num span { font-size: 1.4rem; }
.stat-label { font-size: 0.875rem; color: var(--gray-dark); }
.stat-change { font-size: 0.8rem; color: var(--green); font-weight: 600; margin-top: 4px; }

/* INFO BLOCKS */
.info-block { background: var(--gray-bg); border-left: 4px solid var(--green); border-radius: 0 var(--radius) var(--radius) 0; padding: 20px 24px; margin: 24px 0; }
.info-block.navy { border-left-color: var(--navy); }
.info-block h4 { margin-bottom: 6px; color: var(--navy); }
.info-block p { margin: 0; font-size: 0.93rem; color: var(--gray-dark); }

/* TABLE */
.table-wrapper { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--gray-border); }
table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
thead { background: var(--navy); color: var(--white); }
thead th { padding: 14px 18px; text-align: left; font-weight: 600; font-size: 0.83rem; letter-spacing: 0.05em; }
tbody tr { border-bottom: 1px solid var(--gray-border); transition: background var(--transition); }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--gray-bg); }
tbody td { padding: 13px 18px; color: var(--gray-dark); }
.td-bold { font-weight: 600; color: var(--navy); }
.rank-num { width: 32px; height: 32px; background: var(--navy); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; }
.rank-num.gold { background: #c9a227; }
.rank-num.silver { background: #8a95a3; }
.rank-num.bronze { background: #b87333; }

/* PROGRESS BARS */
.progress-bar { background: var(--gray-border); border-radius: 4px; height: 8px; overflow: hidden; margin-top: 6px; }
.progress-fill { height: 100%; border-radius: 4px; background: var(--green); transition: width 1s ease; }
.progress-fill.navy { background: var(--navy); }
.progress-row { margin-bottom: 18px; }
.progress-label { display: flex; justify-content: space-between; font-size: 0.875rem; margin-bottom: 5px; }
.progress-label span:first-child { color: var(--gray-dark); font-weight: 500; }
.progress-label span:last-child { color: var(--navy); font-weight: 700; }

/* BREADCRUMB */
.breadcrumb { padding: 14px 0; border-bottom: 1px solid var(--gray-border); margin-bottom: 40px; }
.breadcrumb-list { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb-list li { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--gray-mid); }
.breadcrumb-list li a { color: var(--gray-mid); }
.breadcrumb-list li a:hover { color: var(--navy); }
.breadcrumb-list li:not(:last-child)::after { content: '/'; color: var(--gray-border); }
.breadcrumb-list li.current { color: var(--navy); font-weight: 500; }

/* PAGE HERO */
.page-hero { background: var(--gray-bg); border-bottom: 1px solid var(--gray-border); padding: 60px 0; }
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { font-size: 1.05rem; color: var(--gray-dark); max-width: 600px; margin: 0; }

/* TAGS */
.tag { display: inline-block; font-size: 0.75rem; font-weight: 600; padding: 3px 10px; border-radius: 20px; }
.tag-green { background: var(--green-pale); color: var(--green); }
.tag-navy { background: rgba(26,46,74,0.08); color: var(--navy); }
.tag-gray { background: var(--gray-bg); color: var(--gray-dark); border: 1px solid var(--gray-border); }

/* FORM */
.form-group { margin-bottom: 22px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.form-control { width: 100%; padding: 11px 15px; border: 1.5px solid var(--gray-border); border-radius: var(--radius); font-size: 0.93rem; color: var(--text); background: var(--white); transition: border-color var(--transition), box-shadow var(--transition); outline: none; }
.form-control:focus { border-color: var(--navy-mid); box-shadow: 0 0 0 3px rgba(44,74,110,0.1); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-hint { font-size: 0.8rem; color: var(--gray-mid); margin-top: 5px; }
.form-success { background: var(--green-pale); border: 1.5px solid var(--green); border-radius: var(--radius); padding: 16px 20px; color: var(--green); font-weight: 600; font-size: 0.93rem; display: none; }
.form-success.show { display: flex; align-items: center; gap: 10px; }
.form-error { background: #fef2f2; border: 1.5px solid #f87171; border-radius: var(--radius); padding: 16px 20px; color: #dc2626; font-size: 0.9rem; display: none; }
.form-error.show { display: block; }

/* SIDEBAR */
.sidebar { display: flex; flex-direction: column; gap: 28px; }
.sidebar-widget { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius); padding: 24px; }
.sidebar-widget h4 { margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--gray-border); font-size: 1rem; }
.sidebar-links { display: flex; flex-direction: column; gap: 2px; }
.sidebar-links a { padding: 8px 10px; font-size: 0.875rem; color: var(--gray-dark); border-radius: 4px; display: flex; align-items: center; gap: 8px; }
.sidebar-links a:hover, .sidebar-links a.active { background: var(--gray-bg); color: var(--navy); }
.sidebar-links a.active { font-weight: 600; border-left: 3px solid var(--green); border-radius: 0 4px 4px 0; }

/* CONTENT LAYOUT */
.content-with-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 44px; align-items: start; }
.content-with-sidebar.reverse { grid-template-columns: 300px 1fr; }

/* CHART VISUAL */
.chart-block { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius); padding: 28px; }
.chart-title { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 20px; }
.bar-chart { display: flex; align-items: flex-end; gap: 14px; height: 180px; margin-bottom: 10px; }
.bar-chart-item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.bar { width: 100%; background: var(--navy-light); border-radius: 4px 4px 0 0; transition: height 1s ease; position: relative; min-width: 30px; }
.bar.green { background: var(--green); }
.bar-val { font-size: 0.75rem; font-weight: 700; color: var(--navy); position: absolute; top: -20px; left: 50%; transform: translateX(-50%); white-space: nowrap; }
.bar-label { font-size: 0.72rem; color: var(--gray-mid); text-align: center; line-height: 1.3; }

/* NUMBERED LIST */
.numbered-list { counter-reset: list-counter; display: flex; flex-direction: column; gap: 16px; }
.numbered-list li { display: flex; gap: 16px; counter-increment: list-counter; }
.numbered-list li::before { content: counter(list-counter); min-width: 32px; height: 32px; background: var(--navy); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.numbered-list li > div { flex: 1; }
.numbered-list li h4 { margin-bottom: 4px; font-size: 1rem; }
.numbered-list li p { font-size: 0.9rem; color: var(--gray-dark); margin: 0; }

/* ICON FEATURE */
.feature-item { display: flex; gap: 20px; align-items: flex-start; }
.feature-icon { width: 48px; height: 48px; background: var(--green-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-icon svg { width: 22px; height: 22px; stroke: var(--green); fill: none; stroke-width: 2; }
.feature-text h4 { margin-bottom: 5px; font-size: 1rem; }
.feature-text p { font-size: 0.9rem; color: var(--gray-dark); margin: 0; }

/* EXPERT CARD */
.expert-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow var(--transition); }
.expert-card:hover { box-shadow: var(--shadow-md); }
.expert-img { height: 220px; overflow: hidden; }
.expert-img img { width: 100%; height: 100%; object-fit: cover; }
.expert-body { padding: 22px; }
.expert-name { font-weight: 700; font-size: 1.05rem; color: var(--navy); margin-bottom: 3px; }
.expert-title { font-size: 0.85rem; color: var(--gray-mid); margin-bottom: 10px; }
.expert-tags { display: flex; flex-wrap: wrap; gap: 6px; }

/* ACCORDION / FAQ */
.faq-item { border: 1px solid var(--gray-border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-question { width: 100%; background: none; border: none; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; font-size: 0.97rem; font-weight: 600; color: var(--navy); text-align: left; cursor: pointer; transition: background var(--transition); }
.faq-question:hover { background: var(--gray-bg); }
.faq-question svg { width: 18px; height: 18px; stroke: var(--green); fill: none; flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner { padding: 0 22px 20px; font-size: 0.93rem; color: var(--gray-dark); line-height: 1.7; border-top: 1px solid var(--gray-border); padding-top: 16px; }

/* TABS */
.tabs { display: flex; gap: 2px; border-bottom: 2px solid var(--gray-border); margin-bottom: 28px; }
.tab-btn { padding: 11px 18px; font-size: 0.88rem; font-weight: 600; color: var(--gray-mid); background: none; border: none; border-bottom: 3px solid transparent; margin-bottom: -2px; cursor: pointer; transition: color var(--transition), border-color var(--transition); }
.tab-btn.active { color: var(--navy); border-bottom-color: var(--navy); }
.tab-btn:hover { color: var(--navy); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* FOOTER */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.78); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 280px 1fr 1fr 1fr; gap: 44px; padding-bottom: 50px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-mark { background: rgba(255,255,255,0.12); }
.footer-brand p { font-size: 0.875rem; line-height: 1.65; margin-top: 14px; margin-bottom: 20px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; font-size: 0.85rem; margin-bottom: 10px; }
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--green); fill: none; flex-shrink: 0; margin-top: 2px; }
.footer-col h5 { color: var(--white); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; font-family: var(--font-sans); }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom-links { display: flex; gap: 18px; }

/* COOKIE NOTICE */
.cookie-notice { position: fixed; bottom: 24px; left: 24px; right: 24px; max-width: 540px; background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow-lg); z-index: 9999; display: none; }
.cookie-notice.show { display: block; }
.cookie-notice p { font-size: 0.875rem; color: var(--gray-dark); margin-bottom: 14px; }
.cookie-notice-btns { display: flex; gap: 10px; }

/* PAGINATION */
.pagination { display: flex; align-items: center; gap: 4px; justify-content: center; margin-top: 44px; }
.page-link { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1px solid var(--gray-border); border-radius: var(--radius); font-size: 0.875rem; color: var(--gray-dark); font-weight: 500; transition: all var(--transition); text-decoration: none; }
.page-link:hover, .page-link.active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.page-link.dots { border: none; cursor: default; }
.page-link.dots:hover { background: transparent; color: var(--gray-mid); }

/* UTILITY */
.mt-8 { margin-top: 8px; } .mt-12 { margin-top: 12px; } .mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; } .mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; } .mb-12 { margin-bottom: 12px; } .mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; } .mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; } .mb-48 { margin-bottom: 48px; }
.hidden { display: none; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .content-with-sidebar.reverse { grid-template-columns: 1fr; }
  .content-with-sidebar.reverse .sidebar { order: -1; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .hero { padding: 70px 0 60px; }
  .hero-meta { gap: 24px; }
  .hero-meta-num { font-size: 1.6rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .tabs { overflow-x: auto; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.35rem; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
}

/* SVG Icon Sizing */
.footer-social a svg,
.footer-links a svg,
.social-links a svg,
nav svg,
footer svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  flex-shrink: 0;
}
