/* =============================================
   PORTAGE-FORMATEUR.COM - Styles principaux
   ============================================= */

:root {
    --primary: #1B5E8A;
    --primary-dark: #124470;
    --primary-light: #E8F4FD;
    --secondary: #27AE60;
    --secondary-dark: #1E8449;
    --accent: #E67E22;
    --accent-dark: #D35400;
    --text: #2C3E50;
    --text-light: #6C757D;
    --bg: #FFFFFF;
    --bg-light: #F7F9FC;
    --bg-dark: #ECF0F1;
    --border: #DEE2E6;
    --shadow: 0 2px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
    --font: 'Inter', 'Segoe UI', system-ui, sans-serif;
    --font-heading: 'Poppins', 'Segoe UI', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
    color: var(--text);
    font-weight: 700;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1.2rem; }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); margin-bottom: 0.8rem; }
h4 { font-size: 1.15rem; margin-bottom: 0.6rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); text-decoration: underline; }

ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }

strong { font-weight: 600; }

/* ---- LAYOUT ---- */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}
.container-narrow {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- NAVBAR ---- */
.navbar {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary);
    text-decoration: none;
    flex-shrink: 0;
}
.logo:hover { text-decoration: none; color: var(--primary-dark); }

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 900;
}

.logo span { color: var(--accent); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 8px 14px;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
}
.nav-menu a:hover { background: var(--bg-light); color: var(--primary); text-decoration: none; }
.nav-menu a.active { color: var(--primary); background: var(--primary-light); }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7rem; }
.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 240px;
    padding: 8px;
    z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
    display: block;
    padding: 8px 12px;
    font-size: 0.85rem;
    border-radius: 6px;
    color: var(--text);
}
.dropdown-menu a:hover { background: var(--bg-light); color: var(--primary); }

.btn-nav-cta {
    background: var(--secondary);
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
}
.btn-nav-cta:hover { background: var(--secondary-dark) !important; color: white !important; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ---- HERO ---- */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #0D3B5E 100%);
    color: white;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero h1 {
    color: white;
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 1.2rem;
    max-width: 750px;
}
.hero h1 span { color: #F9CA24; }

.hero p.lead {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.88);
    max-width: 620px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    flex-wrap: wrap;
}
.stat-item { text-align: left; }
.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #F9CA24;
    font-family: var(--font-heading);
}
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.75); }

/* ---- BREADCRUMB ---- */
.breadcrumb {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}
.breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
    flex-wrap: wrap;
}
.breadcrumb-inner a { color: var(--primary); }
.breadcrumb-inner a:hover { text-decoration: underline; }
.breadcrumb-inner .sep { color: var(--border); }
.breadcrumb-inner .current { color: var(--text); font-weight: 500; }

/* ---- SECTIONS ---- */
.section { padding: 60px 0; }
.section-light { background: var(--bg-light); }
.section-dark { background: var(--primary); color: white; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: white; }
.section-dark p { color: rgba(255,255,255,0.88); }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.section-header .subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--text-light); font-size: 1.05rem; }

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
    white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn-primary { background: var(--secondary); color: white; }
.btn-primary:hover { background: var(--secondary-dark); color: white; box-shadow: 0 6px 20px rgba(39,174,96,0.35); }

.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); color: white; border-color: white; }

.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { background: var(--accent-dark); color: white; box-shadow: 0 6px 20px rgba(230,126,34,0.35); }

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

.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ---- CARDS ---- */
.cards-grid {
    display: grid;
    gap: 24px;
}
.cards-grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.cards-grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.cards-grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); border-color: transparent; }

.card-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: var(--primary);
}

.card h3 { margin-bottom: 0.6rem; font-size: 1.1rem; }
.card p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 0; }

.card-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.card-feature-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

/* ---- PROCESS STEPS ---- */
.steps { display: flex; flex-direction: column; gap: 24px; }
.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
    font-family: var(--font-heading);
}
.step-content h4 { margin-bottom: 0.4rem; }
.step-content p { color: var(--text-light); margin: 0; font-size: 0.95rem; }

/* ---- FAQ ACCORDION ---- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: white;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
    gap: 16px;
    font-family: var(--font);
}
.faq-question:hover { background: var(--bg-light); }
.faq-question.active { background: var(--primary-light); color: var(--primary); }

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    transition: var(--transition);
    color: var(--primary);
}
.faq-question.active .faq-icon { background: var(--primary); color: white; transform: rotate(45deg); }

.faq-answer {
    display: none;
    padding: 0 22px 18px;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.75;
}
.faq-answer.open { display: block; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul { margin-bottom: 0; }

/* ---- HIGHLIGHT BOX ---- */
.highlight-box {
    background: var(--primary-light);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 20px 24px;
    margin: 1.5rem 0;
}
.highlight-box.warning { background: #FEF9E7; border-color: var(--accent); }
.highlight-box.success { background: #EAFAF1; border-color: var(--secondary); }
.highlight-box.danger { background: #FDEDEC; border-color: #E74C3C; }

.highlight-box strong { color: var(--primary); }
.highlight-box.warning strong { color: var(--accent-dark); }
.highlight-box.success strong { color: var(--secondary-dark); }

/* ---- PRICING TABLE ---- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}
.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.03);
}
.pricing-card:hover { box-shadow: var(--shadow-hover); }

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
    line-height: 1;
    margin: 1rem 0 0.3rem;
}
.pricing-price sup { font-size: 1.2rem; vertical-align: super; }
.pricing-price span { font-size: 1rem; color: var(--text-light); font-weight: 500; }
.pricing-desc { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1.5rem; }

.pricing-features { list-style: none; padding: 0; text-align: left; margin-bottom: 1.5rem; }
.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--bg-dark);
    font-size: 0.9rem;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: '✓'; color: var(--secondary); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ---- TABLE ---- */
.table-wrapper { overflow-x: auto; }
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
th {
    background: var(--primary);
    color: white;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
tr:hover td { background: var(--bg-light); }
tr:last-child td { border-bottom: none; }

/* ---- CTA SECTION ---- */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #0D3B5E 100%);
    color: white;
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.cta-section h2 { color: white; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- INTERNAL LINKS WIDGET ---- */
.related-links {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin: 2rem 0;
}
.related-links h4 { margin-bottom: 1rem; font-size: 1rem; color: var(--primary); }
.related-links ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.related-links li { margin: 0; }
.related-links a {
    display: inline-block;
    background: white;
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    transition: var(--transition);
}
.related-links a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    text-decoration: none;
}

/* ---- SIDEBAR LAYOUT ---- */
.content-sidebar {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}
.sidebar-sticky { position: sticky; top: 90px; }
.sidebar-widget {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
}
.sidebar-widget h4 {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-light);
    color: var(--primary);
}
.sidebar-nav { list-style: none; padding: 0; margin: 0; }
.sidebar-nav li { border-bottom: 1px solid var(--bg-light); }
.sidebar-nav li:last-child { border-bottom: none; }
.sidebar-nav a {
    display: block;
    padding: 9px 0;
    font-size: 0.875rem;
    color: var(--text);
}
.sidebar-nav a:hover { color: var(--primary); text-decoration: none; padding-left: 6px; }

.contact-widget {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
}
.contact-widget h4 { color: white; margin-bottom: 0.6rem; }
.contact-widget p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-bottom: 1.2rem; }

/* ---- ARTICLE CONTENT ---- */
.article-content h2 { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.article-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.article-content h3 { margin-top: 1.8rem; }
.article-content p { line-height: 1.8; color: #34495e; }

/* ---- FOOTER ---- */
footer {
    background: #0D1B2A;
    color: rgba(255,255,255,0.75);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo { color: white; }
.footer-brand p {
    margin-top: 1rem;
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}

footer h4 {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.875rem; transition: var(--transition); }
.footer-links a:hover { color: white; text-decoration: none; padding-left: 4px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { margin: 0; font-size: 0.825rem; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: white; }

/* ---- BADGE / TAG ---- */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    gap: 4px;
}
.badge-primary { background: var(--primary-light); color: var(--primary); }
.badge-success { background: #EAFAF1; color: var(--secondary-dark); }
.badge-warning { background: #FEF9E7; color: var(--accent-dark); }
.badge-danger { background: #FDEDEC; color: #E74C3C; }

/* ---- TESTIMONIALS ---- */
.testimonial-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 22px;
    font-size: 4rem;
    color: var(--primary-light);
    line-height: 1;
    font-family: Georgia, serif;
}
.testimonial-text { font-style: italic; margin-bottom: 1.2rem; padding-top: 1.5rem; color: var(--text); }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-role { font-size: 0.8rem; color: var(--text-light); }
.stars { color: #F39C12; font-size: 0.85rem; }

/* ---- ALERT BOX ---- */
.alert {
    display: flex;
    gap: 14px;
    padding: 16px 20px;
    border-radius: var(--radius);
    margin: 1.5rem 0;
    align-items: flex-start;
}
.alert-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.alert-info { background: var(--primary-light); border: 1px solid rgba(27,94,138,0.2); }
.alert-warning { background: #FEF9E7; border: 1px solid rgba(230,126,34,0.3); }
.alert-success { background: #EAFAF1; border: 1px solid rgba(39,174,96,0.3); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .content-sidebar { grid-template-columns: 1fr; }
    .sidebar-sticky { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 50px 0; }
    .hero { padding: 60px 0 50px; }
    .navbar-inner { padding: 0 16px; }

    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
        z-index: 999;
        gap: 4px;
    }
    .nav-menu.mobile-open { display: flex; }
    .nav-menu a { padding: 12px 16px; }
    .nav-dropdown .dropdown-menu { display: none; position: static; box-shadow: none; border: none; background: var(--bg-light); }
    .nav-dropdown.mobile-open .dropdown-menu { display: block; }
    .nav-dropdown > a::after { float: right; }

    .hamburger { display: flex; }
    .hero-stats { gap: 24px; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .hero-cta-group { flex-direction: column; align-items: flex-start; }
    .pricing-card.featured { transform: none; }
}

@media (max-width: 480px) {
    .container, .container-narrow { padding: 0 14px; }
    h1 { font-size: 1.7rem; }
    .btn-lg { padding: 14px 24px; }
}

/* ---- UTILITY ---- */
.text-center { text-align: center; }
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-accent { color: var(--accent) !important; }
.text-muted { color: var(--text-light) !important; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-3 { margin-bottom: 1.5rem; }
.fw-bold { font-weight: 700; }
.d-none { display: none; }

/* ---- SMOOTH ANIMATIONS ---- */
.fade-in { animation: fadeIn 0.5s ease-in; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ---- PRINT ---- */
@media print {
    .navbar, footer, .cta-section, .sidebar-sticky { display: none; }
    .content-sidebar { grid-template-columns: 1fr; }
    a { color: inherit; }
}
