/* =============================================
   Canada Equipment Finance - Main Stylesheet
   ============================================= */

/* CSS Variables */
:root {
    --bg-primary: #faf9f7;
    --bg-secondary: #f3f1ed;
    --bg-card: #ffffff;
    --bg-dark: #1a1f2e;
    --bg-dark-secondary: #252b3d;
    
    --text-primary: #1a1f2e;
    --text-secondary: #5a6275;
    --text-light: #8a8f9e;
    --text-on-dark: #ffffff;
    --text-on-dark-secondary: #b8bcc8;
    
    --accent-red: #dc2626;
    --accent-red-dark: #b91c1c;
    --accent-gold: #b8860b;
    
    --border: #e5e2db;
    --border-dark: #d4d0c7;
    
    --success: #16a34a;
    --error: #dc2626;
    
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --container-width: 1200px;
    --container-narrow: 800px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 24px;
}

/* =============================================
   Header
   ============================================= */
.header {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 60px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

/* Main Navigation */
.main-nav {
    display: none;
    align-items: center;
    gap: 28px;
}

@media (min-width: 900px) {
    .main-nav {
        display: flex;
    }
}

.nav-link {
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
}

.nav-dropdown-trigger:hover {
    color: var(--text-primary);
}

.nav-dropdown-trigger svg {
    width: 12px;
    height: 12px;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 18px;
    color: var(--text-secondary);
    font-size: 14px;
    transition: all 0.15s ease;
}

.nav-dropdown-menu a:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.nav-dropdown-menu .dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0;
}

.header-phone {
    color: var(--text-secondary);
    font-size: 15px;
    display: none;
}

@media (min-width: 768px) {
    .header-phone {
        display: block;
    }
}

/* =============================================
   Buttons
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-sans);
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent-red);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-red-dark);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
}

.btn-outline:hover {
    background: var(--text-primary);
    color: var(--bg-card);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--bg-dark);
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
    padding: 140px 0 120px;
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.92) 0%, rgba(26, 31, 46, 0.85) 100%), 
                url('https://images.pexels.com/photos/2854421/pexels-photo-2854421.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
    color: white;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg-secondary) 0%, transparent 100%);
}

.hero-content {
    max-width: 720px;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-red);
    margin-bottom: 20px;
}

.hero-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--accent-red);
}

.hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.15;
    margin-bottom: 24px;
    color: white;
}

.hero-sub {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 580px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat-value {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 600;
    color: white;
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =============================================
   Section Header
   ============================================= */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 17px;
}

/* =============================================
   Pillars Section
   ============================================= */
.pillars {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

@media (max-width: 768px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

.pillar {
    background: var(--bg-card);
    padding: 48px 40px;
    text-align: center;
}

.pillar-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-icon svg {
    width: 100%;
    height: 100%;
    color: var(--accent-red);
}

.pillar h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.pillar p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* =============================================
   About Section
   ============================================= */
.about {
    padding: 100px 0;
    background: var(--bg-card);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.about-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-content p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 16px;
}

.about-content p:last-of-type {
    margin-bottom: 32px;
}

.about-list {
    list-style: none;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}

.about-list li:last-child {
    border-bottom: none;
}

.about-list-icon {
    color: var(--accent-red);
    font-weight: 600;
    margin-top: 2px;
}

.about-visual {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    padding: 48px;
    position: relative;
}

.about-visual::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: var(--accent-red);
}

.about-visual-stat {
    text-align: center;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
}

.about-visual-stat:last-child {
    border-bottom: none;
}

.about-visual-value {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.about-visual-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =============================================
   Equipment Section
   ============================================= */
.equipment {
    padding: 100px 0;
    background: var(--bg-dark);
    color: var(--text-on-dark);
}

.equipment .section-header p {
    color: var(--text-on-dark-secondary);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.equipment-item {
    background: var(--bg-dark-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.2s ease;
}

.equipment-item:hover {
    border-color: var(--accent-red);
}

.equipment-icon {
    width: 48px;
    height: 48px;
    background: rgba(220, 38, 38, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.equipment-name {
    font-size: 16px;
    font-weight: 500;
}

/* =============================================
   Process Section
   ============================================= */
.process {
    padding: 100px 0;
    background: var(--bg-card);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

@media (max-width: 900px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

.process-step {
    text-align: center;
}

.process-step-number {
    width: 64px;
    height: 64px;
    border: 2px solid var(--border-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--accent-red);
    background: var(--bg-card);
}

.process-step h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* =============================================
   FAQ Section
   ============================================= */
.faq {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    background: var(--bg-card);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--accent-red);
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.3s ease;
}

.faq-icon svg {
    width: 16px;
    height: 16px;
    color: var(--text-light);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 600px;
}

.faq-answer-inner {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
}

.faq-answer-inner p {
    margin-bottom: 12px;
}

.faq-answer-inner p:last-child {
    margin-bottom: 0;
}

.faq-answer-inner ul {
    margin: 12px 0;
    padding-left: 20px;
}

.faq-answer-inner li {
    margin-bottom: 8px;
}

.faq-answer-inner strong {
    color: var(--text-primary);
}

/* =============================================
   CTA Section
   ============================================= */
.cta {
    padding: 100px 0;
    background: var(--bg-card);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta h2 {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 20px;
}

.cta p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* =============================================
   Footer
   ============================================= */
.footer {
    background: var(--bg-dark);
    color: var(--text-on-dark);
    padding: 60px 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.footer-brand h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-on-dark-secondary);
    font-size: 15px;
    max-width: 320px;
    margin-bottom: 20px;
}

.footer-brand-note {
    font-size: 13px;
    color: var(--text-on-dark-secondary);
    opacity: 0.7;
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    color: var(--text-on-dark-secondary);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--text-on-dark);
    font-size: 15px;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--accent-red);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.footer-copy {
    color: var(--text-on-dark-secondary);
    font-size: 13px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-on-dark-secondary);
    font-size: 13px;
}

.footer-legal a:hover {
    color: var(--text-on-dark);
}

.footer-disclaimer {
    width: 100%;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 12px;
    color: var(--text-on-dark-secondary);
    opacity: 0.6;
    line-height: 1.6;
}

/* =============================================
   Legal Pages
   ============================================= */
.legal-page {
    padding: 60px 0 100px;
}

.legal-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 60px;
}

@media (max-width: 600px) {
    .legal-content {
        padding: 32px 24px;
    }
}

.legal-content h1 {
    font-size: 32px;
    margin-bottom: 8px;
}

.legal-meta {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.legal-content h2 {
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.legal-content ul {
    color: var(--text-secondary);
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--text-primary);
}

.legal-content strong {
    color: var(--text-primary);
}

.highlight-box {
    background: #fef3c7;
    border: 1px solid #fbbf24;
    padding: 24px;
    margin: 24px 0;
}

.highlight-box p {
    margin-bottom: 0;
    color: var(--text-primary);
}

.highlight-box p:not(:last-child) {
    margin-bottom: 12px;
}

/* =============================================
   Success Page
   ============================================= */
.success-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.success-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 60px;
}

.success-content {
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    border: 2px solid var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    background: rgba(22, 163, 74, 0.08);
}

.success-icon svg {
    width: 36px;
    height: 36px;
    color: var(--success);
}

.success-title {
    font-size: 32px;
    margin-bottom: 16px;
}

.success-message {
    color: var(--text-secondary);
    font-size: 17px;
    margin-bottom: 48px;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px;
    text-align: left;
    margin-bottom: 24px;
}

.next-steps h2 {
    font-size: 18px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.next-step {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.next-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.next-step-number {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 14px;
    color: var(--accent-red);
    flex-shrink: 0;
}

.next-step-text {
    font-size: 15px;
}

.next-step-text strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.next-step-text p {
    color: var(--text-secondary);
    font-size: 14px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 24px;
    margin-bottom: 32px;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 12px;
}

.contact-card-links {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.contact-card a {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 15px;
}

.contact-card a:hover {
    color: var(--accent-red);
}

.back-link {
    color: var(--text-light);
    font-size: 14px;
}

.back-link:hover {
    color: var(--text-primary);
}

/* =============================================
   Simple Footer (for inner pages)
   ============================================= */
.footer-simple {
    padding: 24px 0;
    text-align: center;
    border-top: 1px solid var(--border);
    background: var(--bg-card);
}

.footer-simple p {
    color: var(--text-light);
    font-size: 13px;
}

.footer-simple a {
    color: var(--text-secondary);
}

/* =============================================
   Industry Landing Pages
   ============================================= */

/* Equipment grid with descriptions */
.equipment-grid-detailed .equipment-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 32px 28px;
}

.equipment-grid-detailed .equipment-icon {
    margin-bottom: 12px;
}

.equipment-grid-detailed .equipment-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.equipment-grid-detailed .equipment-desc {
    font-size: 14px;
    color: var(--text-on-dark-secondary);
    display: block;
    line-height: 1.5;
}

/* Clickable equipment items on main page */
.equipment-item-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

a.equipment-item {
    cursor: pointer;
}

a.equipment-item:hover {
    background: rgba(220, 38, 38, 0.08);
    border-color: var(--accent-red);
}

a.equipment-item:hover .equipment-name {
    color: #fff;
}

/* Responsive adjustments for industry pages */
@media (max-width: 768px) {
    .equipment-grid-detailed {
        grid-template-columns: 1fr 1fr;
    }
    
    .equipment-grid-detailed .equipment-item {
        padding: 24px 20px;
    }
    
    .equipment-grid-detailed .equipment-name {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .equipment-grid-detailed {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   Page Hero (for inner pages)
   ============================================= */
.page-hero {
    padding: 140px 0 60px;
    background: var(--bg-dark);
    color: var(--text-on-dark);
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 18px;
    color: var(--text-on-dark-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* =============================================
   Resources Section
   ============================================= */
.resources-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.resource-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 32px;
    display: flex;
    gap: 20px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.resource-card:hover {
    border-color: var(--accent-red);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.resource-card-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.resource-card-content h2 {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.resource-card-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.resource-card-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-red);
}

.resource-card:hover .resource-card-link {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .resource-card {
        flex-direction: column;
        gap: 16px;
    }
}

/* =============================================
   Article Content
   ============================================= */
.article-content {
    padding: 60px 0 80px;
    background: var(--bg-primary);
}

.article-section {
    margin-bottom: 48px;
}

.article-section h2 {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.article-section:first-child h2 {
    border-top: none;
    padding-top: 0;
}

.article-section h3 {
    font-size: 20px;
    color: var(--text-primary);
    margin: 28px 0 12px;
}

.article-section p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.article-section ul,
.article-section ol {
    color: var(--text-secondary);
    margin-bottom: 20px;
    padding-left: 24px;
}

.article-section li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.article-section strong {
    color: var(--text-primary);
}

.article-cta {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px;
    text-align: center;
    margin-top: 60px;
}

.article-cta h2 {
    border-top: none;
    padding-top: 0;
    margin-bottom: 12px;
}

.article-cta p {
    margin-bottom: 24px;
}
