:root{--primary-color:#d5b34d;--primary-hover:#bda143;--text-color:#2c2b29;--bg-color:#fbfaf8;--card-bg:#ffffff;--border-color:#eae7e2;--footer-bg:#1e1d1b;--footer-text:#eae7e2;}*{box-sizing:border-box;margin:0;padding:0;}body{font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;color:var(--text-color);background-color:var(--bg-color);line-height:1.6;font-size:16px;}.container{max-width:1200px;margin:0 auto;padding:0 20px;}.site-header{background-color:#ffffff;box-shadow:0 2px 10px rgba(0,0,0,0.05);position:sticky;top:0;z-index:1000;}.header-container{display:flex;justify-content:space-between;align-items:center;height:80px;}.logo img{max-height:50px;width:auto;display:block;}.menu-toggle{display:none;background:none;border:none;font-size:28px;cursor:pointer;color:var(--text-color);}.site-nav ul{display:flex;list-style:none;gap:20px;}.site-nav a{text-decoration:none;color:var(--text-color);font-weight:500;transition:color 0.2s;font-size:15px;}.site-nav a:hover, .site-nav a.active{color:var(--primary-color);}.site-main{padding:40px 20px;min-height:70vh;}.site-footer{background-color:var(--footer-bg);color:var(--footer-text);padding:40px 0;font-size:14px;margin-top:60px;}.footer-container{display:flex;flex-direction:column;align-items:center;gap:15px;text-align:center;}.footer-nav a{color:var(--footer-text);text-decoration:none;margin:0 10px;}.footer-nav a:hover{color:var(--primary-color);}article.post{background-color:var(--card-bg);border:1px solid var(--border-color);border-radius:8px;padding:30px;margin-bottom:30px;box-shadow:0 4px 6px rgba(0,0,0,0.02);}.entry-title{font-size:2.2rem;margin-bottom:20px;color:#1a1a1a;line-height:1.3;}.post-content img{max-width:100%;height:auto;border-radius:6px;margin:20px 0;display:block;margin-left:auto;margin-right:auto;}.post-content p{margin-bottom:20px;font-size:1.1rem;}.row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px;}.col-12{width:100%;padding:0 15px;}.col-8{width:66.666%;padding:0 15px;}.col-4{width:33.333%;padding:0 15px;}@media (max-width:768px){.menu-toggle{display:block;}.site-nav{display:none;position:absolute;top:80px;left:0;right:0;background-color:#ffffff;box-shadow:0 4px 6px rgba(0,0,0,0.1);border-top:1px solid var(--border-color);}.site-nav.active{display:block;}.site-nav ul{flex-direction:column;padding:20px;gap:15px;}.col-8, .col-4{width:100%;}}

/* ==========================================
   LINKERS INSIGHTS — PREMIUM DESIGN SYSTEM
   ========================================== */

/* Custom Typography & Palette overrides */
:root {
    --insights-navy: #182c44;
    --insights-navy-light: #243e5c;
    --insights-gold: #c39a30;
    --insights-gold-light: #dfb549;
    --insights-gold-bg: rgba(195, 154, 48, 0.08);
    --insights-cream: #faf7f2;
    --insights-card-border: #e9e3d7;
    --insights-text-muted: #5e5c58;
}

.insights-body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--insights-cream);
    color: var(--text-color);
}

.insights-body h1, 
.insights-body h2, 
.insights-body h3, 
.insights-body h4, 
.insights-body h5 {
    font-family: 'Outfit', sans-serif;
    color: var(--insights-navy);
}

/* Base Buttons with micro-animations */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(24, 44, 68, 0.08);
}

.btn-primary {
    background-color: var(--insights-navy);
    color: #ffffff;
    border: 1px solid var(--insights-navy);
}

.btn-primary:hover {
    background-color: var(--insights-navy-light);
    border-color: var(--insights-navy-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(24, 44, 68, 0.16);
}

.btn-secondary {
    background-color: transparent;
    color: var(--insights-navy);
    border: 2px solid var(--insights-gold);
}

.btn-secondary:hover {
    background-color: var(--insights-gold);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(195, 154, 48, 0.16);
}

.btn-secondary-small {
    background-color: transparent;
    color: var(--insights-navy);
    border: 1px solid var(--insights-navy);
    padding: 8px 18px;
    font-size: 13px;
    border-radius: 4px;
}

.btn-secondary-small:hover {
    background-color: var(--insights-navy);
    color: #ffffff;
}

/* Flag icons for download choice */
.flag-icon {
    margin-right: 8px;
    font-size: 18px;
    line-height: 1;
}

/* Insights Landing — Hero */
.insights-hero {
    text-align: center;
    max-width: 800px;
    margin: 40px auto 60px auto;
    padding: 0 10px;
}

.hero-brand {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--insights-gold);
    margin-bottom: 15px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--insights-navy-light);
    margin-bottom: 25px;
    border-bottom: 1px solid var(--insights-card-border);
    padding-bottom: 25px;
    display: inline-block;
    width: 100%;
}

.hero-lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--insights-text-muted);
    line-height: 1.6;
}

/* Intro Grid */
.insights-intro-grid {
    background-color: var(--card-bg);
    border: 1px solid var(--insights-card-border);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.intro-text-card p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-color);
}
.intro-text-card p:last-child {
    margin-bottom: 0;
}

/* Section Title */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 35px;
    border-left: 4px solid var(--insights-gold);
    padding-left: 15px;
    line-height: 1.2;
}

.text-center {
    text-align: center;
}
.section-title.text-center {
    border-left: none;
    padding-left: 0;
}

/* Latest Publication Grid */
.latest-publication-section {
    background-color: var(--card-bg);
    border: 1px solid var(--insights-card-border);
    border-radius: 16px;
    padding: 50px;
    margin-bottom: 60px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.03);
}

.pub-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: center;
}

.pub-cover-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(24, 44, 68, 0.15);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pub-cover-container:hover {
    transform: translateY(-8px) scale(1.02);
}

.pub-cover-img {
    width: 100%;
    height: auto;
    display: block;
}

.pub-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--insights-gold);
    color: #ffffff;
    padding: 6px 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.pub-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pub-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.pub-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--insights-navy-light);
    margin-bottom: 25px;
}

.pub-text p {
    font-size: 1.05rem;
    color: var(--insights-text-muted);
    margin-bottom: 15px;
    line-height: 1.6;
}

.download-choice-box {
    margin-top: 30px;
    background-color: var(--bg-color);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--insights-card-border);
}

.download-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--insights-text-muted);
    margin-bottom: 15px;
}

.download-buttons-flex {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Audience & Research Areas */
.audience-research-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.audience-section, .research-areas-section {
    background-color: var(--card-bg);
    border: 1px solid var(--insights-card-border);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.02);
}

.audience-list {
    list-style: none;
    padding: 0;
}

.audience-list li {
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: var(--text-color);
}

.list-bullet {
    color: var(--insights-gold);
    margin-right: 12px;
    font-size: 14px;
}

.research-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.research-card {
    border-left: 3px solid var(--insights-navy);
    background-color: var(--bg-color);
    padding: 15px 20px;
    border-radius: 0 6px 6px 0;
    transition: all 0.2s ease;
}

.research-card:hover {
    border-left-color: var(--insights-gold);
    background-color: var(--insights-gold-bg);
    transform: translateX(4px);
}

.research-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.research-card p {
    font-size: 0.95rem;
    color: var(--insights-text-muted);
    margin: 0;
}

/* About Grid */
.about-insights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.about-card {
    background-color: var(--card-bg);
    border: 1px solid var(--insights-card-border);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.02);
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--insights-gold);
    padding-bottom: 10px;
    display: inline-block;
}

.about-card p {
    font-size: 1.05rem;
    color: var(--insights-text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}
.about-card p:last-child {
    margin-bottom: 0;
}

/* Publications Timeline */
.publications-timeline-section {
    background-color: var(--card-bg);
    border: 1px solid var(--insights-card-border);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 60px;
}

.timeline {
    position: relative;
    max-width: 600px;
    margin: 30px auto 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 120px;
    width: 2px;
    background-color: var(--insights-card-border);
}

.timeline-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}
.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-year {
    width: 100px;
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--insights-navy);
    text-align: right;
    padding-right: 20px;
    line-height: 1.2;
}

.timeline-content {
    margin-left: 40px;
    padding-left: 20px;
    position: relative;
    flex-grow: 1;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--insights-card-border);
    border: 2px solid #ffffff;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item.active-pub .timeline-content::before {
    background-color: var(--insights-gold);
    box-shadow: 0 0 0 4px var(--insights-gold-bg);
}

.timeline-content h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.pub-status-badge {
    display: inline-block;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 3px;
    background-color: var(--insights-gold-bg);
    color: var(--insights-gold);
}

.pub-status-badge.coming {
    background-color: var(--bg-color);
    color: var(--insights-text-muted);
    border: 1px solid var(--insights-card-border);
}

/* Stay Connected / Subscribe Box */
.stay-connected-section {
    background-color: var(--insights-navy);
    color: #ffffff;
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 15px 35px rgba(24, 44, 68, 0.15);
}

.subscribe-box {
    max-width: 600px;
    margin: 0 auto;
}

.subscribe-box h3 {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.subscribe-box p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.subscribe-form {
    position: relative;
}

.form-group-row {
    display: flex;
    gap: 10px;
}

.subscribe-input {
    flex-grow: 1;
    padding: 16px 20px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.2);
    background-color: rgba(255,255,255,0.05);
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s;
}

.subscribe-input::placeholder {
    color: rgba(255,255,255,0.5);
}

.subscribe-input:focus {
    outline: none;
    border-color: var(--insights-gold);
    background-color: rgba(255,255,255,0.1);
}

.btn-subscribe {
    background-color: var(--insights-gold);
    color: #ffffff;
    border: 1px solid var(--insights-gold);
    padding: 16px 30px;
}

.btn-subscribe:hover {
    background-color: var(--insights-gold-light);
    border-color: var(--insights-gold-light);
    transform: translateY(-1px);
}

.subscribe-success-msg {
    display: none;
    margin-top: 15px;
    color: var(--insights-gold-light);
    font-weight: 600;
    font-size: 15px;
    animation: fadeIn 0.4s ease;
}

/* ==========================================
   REPORT DOWNLOAD PAGES (SINGLE REPORT SCREEN)
   ========================================== */

.report-hero {
    background-color: var(--card-bg);
    border: 1px solid var(--insights-card-border);
    border-radius: 16px;
    padding: 50px;
    margin: 30px 0 60px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.report-hero-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    align-items: center;
}

.report-hero-cover {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(24, 44, 68, 0.18);
}

.report-category {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--insights-gold);
    margin-bottom: 15px;
    display: inline-block;
}

.report-main-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 15px;
}

.report-main-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--insights-text-muted);
    line-height: 1.5;
    margin-bottom: 30px;
}

.report-meta-specs {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    border-top: 1px solid var(--insights-card-border);
    border-bottom: 1px solid var(--insights-card-border);
    padding: 20px 0;
}

.spec-item {
    display: flex;
    flex-direction: column;
}

.spec-value {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--insights-navy);
}

.spec-label {
    font-size: 12px;
    color: var(--insights-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Report Layout Grid */
.report-content-sidebar-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    align-items: start;
    margin-bottom: 60px;
}

.report-main-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.report-section h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.report-section p {
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 20px;
}
.report-section p:last-of-type {
    margin-bottom: 0;
}

.styled-bullets {
    padding-left: 20px;
    list-style: none;
}

.styled-bullets li {
    font-size: 1.05rem;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    color: var(--text-color);
}

.styled-bullets li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--insights-gold);
    font-size: 12px;
    top: 2px;
}

.inline-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    padding: 0;
}

.inline-bullets li {
    margin-bottom: 0;
    flex: 1 1 40%;
    min-width: 250px;
}

/* Authors Section */
.authors-section {
    border-top: 1px solid var(--insights-card-border);
    border-bottom: 1px solid var(--insights-card-border);
    padding: 40px 0;
}

.authors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.author-card {
    background-color: var(--card-bg);
    border: 1px solid var(--insights-card-border);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
}

.author-avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--insights-navy);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.author-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.author-card p {
    font-size: 0.9rem;
    color: var(--insights-text-muted);
    margin: 0;
    line-height: 1.4;
}

.mt-20 { margin-top: 20px; }
.pb-20 { padding-bottom: 20px; }

/* Sidebar Cards */
.value-proposition-card {
    background-color: var(--insights-navy);
    color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(24, 44, 68, 0.12);
}

.value-proposition-card h3 {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 12px;
}

.value-list {
    list-style: none;
    padding: 0;
}

.value-list li {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    padding-left: 28px;
    color: rgba(255, 255, 255, 0.9);
}
.value-list li:last-child {
    margin-bottom: 0;
}

.value-icon {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--insights-gold-light);
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
}

.value-list strong {
    color: #ffffff;
    display: block;
    margin-bottom: 2px;
}

/* Download Form Card */
.download-form-card {
    background-color: var(--card-bg);
    border: 1px solid var(--insights-gold);
    border-radius: 12px;
    padding: 35px;
    position: sticky;
    top: 100px;
    box-shadow: 0 10px 30px rgba(195, 154, 48, 0.05);
}

.download-form-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.download-form-card p {
    font-size: 0.95rem;
    color: var(--insights-text-muted);
    margin-bottom: 25px;
    line-height: 1.4;
}

.insights-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    position: relative;
}

.insights-form input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--insights-card-border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s;
    background-color: var(--bg-color);
    color: var(--text-color);
}

.insights-form input:focus {
    outline: none;
    border-color: var(--insights-navy);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(24, 44, 68, 0.05);
}

.btn-submit-form {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    margin-top: 10px;
}

/* Form Success State */
.download-success-box {
    display: none;
    text-align: center;
    padding: 30px 10px;
    animation: fadeIn 0.4s ease;
}

.success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.download-success-box h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.download-success-box p {
    font-size: 0.95rem;
    color: var(--insights-text-muted);
    line-height: 1.5;
}

.download-success-box a {
    color: var(--insights-gold);
    font-weight: 600;
    text-decoration: underline;
}

/* FAQ Section (Accordion) */
.faq-section {
    margin: 80px 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background-color: var(--card-bg);
    border: 1px solid var(--insights-card-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.01);
    transition: all 0.3s;
}

.accordion-item:hover {
    border-color: var(--insights-gold);
}

.accordion-trigger {
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--insights-navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.accordion-trigger:hover {
    background-color: var(--bg-color);
}

.accordion-icon {
    font-size: 20px;
    color: var(--insights-gold);
    transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-content p {
    padding: 0 28px 25px 28px;
    margin: 0;
    font-size: 1rem;
    color: var(--insights-text-muted);
    line-height: 1.6;
}

/* Discuss Strategy / CTA section at end */
.discuss-strategy-section {
    background-color: var(--insights-navy-light);
    color: #ffffff;
    border-radius: 12px;
    padding: 60px 50px;
    text-align: center;
    margin-bottom: 60px;
    box-shadow: 0 12px 30px rgba(24, 44, 68, 0.12);
}

.discuss-strategy-box {
    max-width: 700px;
    margin: 0 auto;
}

.discuss-strategy-box h2 {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.25;
}

.discuss-strategy-box p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-discuss {
    background-color: var(--insights-gold);
    color: #ffffff;
    border: 1px solid var(--insights-gold);
    padding: 16px 36px;
    font-size: 16px;
}

.btn-discuss:hover {
    background-color: var(--insights-gold-light);
    border-color: var(--insights-gold-light);
    transform: translateY(-2px);
}

/* General helper animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Footer layout details */
.footer-brand {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    margin-top: 10px;
}

.footer-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 10px;
}

.footer-info {
    color: var(--footer-text);
}

.footer-link-web a {
    color: var(--insights-gold-light);
    text-decoration: none;
    font-weight: 500;
}

.footer-link-web a:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 15px;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .report-content-sidebar-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .download-form-card {
        position: static;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .value-proposition-card {
        max-width: 600px;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.25rem;
    }
    .pub-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .pub-cover-container {
        max-width: 280px;
        margin: 0 auto;
    }
    .pub-title {
        font-size: 1.8rem;
        text-align: center;
    }
    .pub-subtitle {
        font-size: 1.1rem;
        text-align: center;
    }
    .download-buttons-flex {
        justify-content: center;
    }
    .audience-research-grid {
        grid-template-columns: 1fr;
    }
    .about-insights-grid {
        grid-template-columns: 1fr;
    }
    .report-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .report-hero-cover {
        max-width: 240px;
        margin: 0 auto;
    }
    .report-main-title {
        font-size: 2.2rem;
    }
    .report-main-subtitle {
        font-size: 1.15rem;
    }
    .report-meta-specs {
        justify-content: center;
        gap: 20px;
    }
    .authors-grid {
        grid-template-columns: 1fr;
    }
    .discuss-strategy-box h2 {
        font-size: 1.7rem;
    }
    .form-group-row {
        flex-direction: column;
    }
}