/* ==========================================================================
   Unfiltered Minds — style.css
   Section: Design Tokens + Reset + Header/Nav
   (Home / Topics / Resources / Reports / Contact section styles will be
   appended below as those pages are built.)
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
    --bg-grad-start: #eaf5fd;
    --bg-grad-end:   #dcedfb;

    --navy:          #10263c;
    --navy-dark:     #0c1f33;

    --card-blue-1:   #d7ecfc;
    --card-blue-2:   #cbe6fb;
    --lavender:      #e4e1fb;
    --topic-bg-1:    #F8FCFF;
    --topic-bg-2:    #E2F4FE;
    --topic-bg-3:    #E1EDFF;
    --topic-bg-4:    #D3F1FE;

    --text-main:     #17324a;
    --text-muted:    #5c7488;

    --white:         #ffffff;

    --font-display:  'Oranienbaum', Georgia, serif;
    --font-body:     'Nunito', -apple-system, 'Segoe UI', sans-serif;

    --radius-lg:     32px;
    --radius-md:     24px;
    --radius-sm:     16px;
    --radius-pill:   999px;

    --shadow-soft:   0 10px 30px rgba(16, 38, 60, 0.08);
    --shadow-card:   0 6px 20px rgba(16, 38, 60, 0.06);

    --container-width: 1200px;

    --mint-bg:    #e2f4ec;
    --mint-text:  #1f7a5c;
}

/* ---------- Reset ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background: linear-gradient(180deg, #EAF7FF 0%, #F8FCFF 42%, #DFF4FF 100%);
    background-attachment: fixed;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

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

ul, ol {
    list-style: none;
}

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

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

h1, h2, h3, h4 {
    font-family: var(--font-display), Georgia, serif;
    font-weight: 600;
    line-height: 1.15;
    color: var(--navy);
    font-optical-sizing: none;
    font-variation-settings: 'opsz' 32, 'SOFT' 0, 'WONK' 0;
}

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

/* ---------- Buttons (shared) ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn-cta {
    background: var(--navy);
    color: var(--white);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 38, 60, 0.25);
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */

.site-header {
    padding: 20px 24px 0;
}

.header-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-pill);
    padding: 10px 12px 10px 16px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(6px);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-badge {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--white);
    font-weight: 800;
    font-size: 14px;
    border-radius: 10px;
    letter-spacing: 0.5px;
}

.logo-text {
    font-weight: 700;
    font-size: 16px;
    color: var(--navy);
    white-space: nowrap;
}

/* Nav links */
.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 2px;
    transition: color 0.2s ease;
}

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

.nav-link.active {
    color: var(--navy);
    font-weight: 700;
}

.nav-cta {
    padding: 10px 20px;
    font-size: 14.5px;
    margin-left: 4px;
}

/* Mobile nav toggle (hamburger) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--navy);
    margin: 0 auto;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Responsive: Header ---------- */
@media (max-width: 860px) {
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 24px;
        right: 24px;
        background: var(--white);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-soft);
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 16px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .site-header {
        position: relative;
    }

    .nav-link {
        padding: 12px 10px;
        border-radius: var(--radius-sm);
    }

    .nav-link:hover,
    .nav-link.active {
        background: var(--bg-grad-start);
    }

    .nav-cta {
        justify-content: center;
        margin: 8px 2px 2px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 14px;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    margin-top: 100px;
    padding: 0 24px;
}

.footer-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    background: var(--navy-dark);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-left {
    max-width: 420px;
}

.footer-heading {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 14px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14.5px;
    line-height: 1.6;
}

.footer-right {
    display: flex;
    gap: 64px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.footer-link {
    color: var(--white);
    font-size: 14.5px;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.footer-link:hover {
    opacity: 0.75;
}

.footer-social-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.footer-social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    padding: 20px 0 40px;
}

.copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 13.5px;
}

/* ---------- Responsive: Footer ---------- */
@media (max-width: 640px) {
    .footer-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }

    .footer-left {
        max-width: 100%;
    }

    .footer-right {
        gap: 40px;
        flex-wrap: wrap;
    }

    .footer-heading {
        font-size: 20px;
    }
}

/* ==========================================================================
   Hero (Home page)
   ========================================================================== */

.hero {
    padding: 64px 24px 40px;
}

.hero-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 56px;
}

.hero-left {
    max-width: 480px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--mint-bg);
    color: var(--mint-text);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 52px;
    color: var(--navy);
    margin-bottom: 20px;
}

.hero-subtext {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 16px;
}

.hero-note {
    color: var(--navy);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 28px;
}

/* ---------- Hero visual (right side) ---------- */

.hero-visual {
    background: linear-gradient(160deg, #eef7fd 0%, #b9e0f8 70%, #a3d5f6 100%);
    border-radius: var(--radius-lg);
    padding: 54px;
}

.checkin-card {
    background: #F2FAFF;
    border-radius: var(--radius-md);
    padding: 34px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 16px;
}

.checkin-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 14px;
}

.checkin-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7ec8f0;
}

.checkin-question {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 21px;
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: 16px;
}

.checkin-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-pill {
    background: var(--card-blue-1);
    color: var(--navy);
    font-size: 12.5px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
}

.hero-mini-cards {
    display: flex;
    gap: 16px;
}

.mini-card {
    flex: 1;
    background: var(--card-blue-1);
    border-radius: var(--radius-md);
    padding: 34px;
}

.mini-card.alt {
    background: #eef2fb;
}

.mini-card-icon {
    color: var(--navy);
    margin-bottom: 10px;
}

.mini-card p {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14.5px;
    color: var(--navy);
    line-height: 1.3;
}

/* ---------- Responsive: Hero ---------- */
@media (max-width: 860px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-title {
        font-size: 38px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 20px 24px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-mini-cards {
        flex-direction: column;
    }
    .hero-visual {
    padding: 20px;
}
.checkin-card {
    padding: 15px;
}
.mini-card {
    padding: 15px;
}
}
/* ==========================================================================
   Section Head (reusable — Topics, Our Story, Resources, Insights)
   ========================================================================== */

.eyebrow {
    display: block;
    color: #1f8fe0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 48px;
}

.section-heading {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 30px;
    margin-bottom: 18px;
    font-size: 34px;
    color: var(--navy);
}

/* ==========================================================================
   Explore by Topic (Home page)
   ========================================================================== */

.topics-preview {
    padding: 40px 24px 80px;
}

.topics-grid {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.topic-card {
    background: var(--white);
    border: 1px solid rgba(16, 38, 60, 0.06);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.topic-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.topics-grid > .topic-card {
    border-color: transparent;
}

.topics-grid > .topic-card:nth-child(1),
.topics-grid > .topic-card:nth-child(5) {
    background: var(--topic-bg-1);
}

.topics-grid > .topic-card:nth-child(2),
.topics-grid > .topic-card:nth-child(6) {
    background: var(--topic-bg-2);
}

.topics-grid > .topic-card:nth-child(3),
.topics-grid > .topic-card:nth-child(8) {
    background: var(--topic-bg-3);
}

.topics-grid > .topic-card:nth-child(4),
.topics-grid > .topic-card:nth-child(7) {
    background: var(--topic-bg-4);
}

.topic-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    background: var(--white);
    border-radius: 14px;
    margin-bottom: 18px;
}

.topic-icon.icon-tint-blue {
    background: var(--card-blue-1);
}

.topic-icon.icon-tint-lavender {
    background: #eef2fb;
}

.topic-title {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 8px;
}

.topic-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.55;
}

/* ---------- Responsive: Topics grid ---------- */
@media (max-width: 960px) {
    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .section-heading {
        font-size: 26px;
    }

    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .topic-card {
        padding: 18px;
    }

    .topic-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        margin-bottom: 12px;
    }

    .topic-title {
        font-size: 15px;
    }

    .topic-desc {
        font-size: 12.5px;
    }

    .topics-preview {
        padding: 40px 20px 24px;
        margin: 24px 0;
    }
}

/* ==========================================================================
   Our Story
   ========================================================================== */

.our-story {
    padding: 20px 24px 80px;
}

.story-card {
    max-width: var(--container-width);
    margin: 0 auto;
    background: linear-gradient(135deg, #ecf6fd 0%, #d7ecfc 100%);
    border-radius: var(--radius-lg);
    padding: 48px;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 48px;
    align-items: center;
}

.story-eyebrow {
    display: block;
    color: var(--navy);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.story-subtitle {
    color: var(--navy);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
}

.story-heading {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 30px;
    color: var(--navy);
    margin-bottom: 18px;
}

.story-text {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 24px;
}

.story-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.story-tag {
    background: var(--white);
    color: var(--navy);
    font-size: 13.5px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
}

.story-tag--accent {
    background: var(--lavender);
    color: #5b4fcf;
}

.story-right {
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-image {
    width: 100%;
    max-width: 320px;
    border-radius: var(--radius-sm);
}

/* ---------- Responsive: Our Story ---------- */
@media (max-width: 860px) {
    .story-card {
        grid-template-columns: 1fr;
        padding: 32px;
        gap: 32px;
    }

    .story-right {
        order: -1;
    }
}

@media (max-width: 480px) {
 .our-story {
        margin: 24px 0;
        padding: 40px 20px 24px;
    }

    .story-card {
        padding: 24px;
    }

    .story-heading {
        font-size: 24px;
    }

    .story-text {
        font-size: 14px;
    }
}
/* ==========================================================================
   Featured Resources (Home page)
   ========================================================================== */

.resources-preview {
    padding: 20px 24px 80px;
}

.resources-head {
    max-width: var(--container-width);
    margin: 0 auto 40px;
}

.resources-heading {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 34px;
    color: var(--navy);
    line-height: 1.2;
}

.resources-grid {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.resource-card {
    background: var(--topic-bg-1);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.resource-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.resource-card--blue {
    background: var(--topic-bg-4);
}

.resource-card--lavender {
    background: var(--lavender);
}

.resource-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    background: var(--white);
    border-radius: 14px;
    margin-bottom: 18px;
}

.resource-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 8px;
}

.resource-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ---------- Responsive: Featured Resources ---------- */
@media (max-width: 760px) {
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .resources-heading {
        font-size: 26px;
    }

    .resource-card {
        padding: 33px;
    }

    .resources-preview {
        padding: 40px 20px 24px;
    }
}

/* ==========================================================================
   Latest Insights (Home page)
   ========================================================================== */

.insights-preview {
    padding: 20px 24px 80px;
}

.insights-heading {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 34px;
    color: var(--navy);
    line-height: 1.2;
}

.insights-grid {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.insight-card {
    display: block;
    background: var(--topic-bg-1);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.insight-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.insight-card--blue {
    background: var(--topic-bg-4);
}

.insight-card--lavender {
   background: #DDECFF;
}

.insight-card-image {
    display: block;
    max-width: none;
    width: calc(100% + 56px);
    height: 180px;
    object-fit: cover;
    margin: -28px -28px 20px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.insight-tag {
    display: inline-block;
    background: #F2FAFF;
    color: var(--navy);
    font-size: 12.5px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
}

.insight-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 19px;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 12px;
}

.insight-excerpt {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.insight-read {
    display: block;
    color: #1f8fe0;
    font-size: 13.5px;
    font-weight: 700;
}

/* ---------- Responsive: Latest Insights ---------- */
@media (max-width: 760px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .insights-heading {
        font-size: 26px;
    }

    .insight-card {
        padding: 20px;
    }

    .insights-preview {
        padding: 10px 20px 50px;
    }
}
/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-hero { padding: 60px 24px 20px; }
.contact-hero-text { color: var(--text-muted); font-size: 16px; line-height: 1.6; margin-top: 4px; }
.contact-section { padding: 20px 24px 100px; }
.contact-grid { max-width: var(--container-width); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr; gap: 28px; align-items: start; }

.contact-form-card { background: var(--white); border: 1px solid rgba(16,38,60,0.06); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); padding: 40px; }
.contact-card-heading { font-family: var(--font-body); font-weight: 800; font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.contact-card-subtext { color: var(--text-muted); font-size: 14.5px; margin-bottom: 28px; }

.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form .form-group { display: flex; flex-direction: column; margin-bottom: 20px; }
.contact-form label { font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.contact-form input, .contact-form select, .contact-form textarea {
    font-family: var(--font-body); font-size: 15px; color: var(--text-main);
    background: var(--topic-bg-1); border: 1.5px solid rgba(16,38,60,0.1);
    border-radius: var(--radius-sm); padding: 13px 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none; border-color: #1f8fe0; box-shadow: 0 0 0 4px rgba(31,143,224,0.12);
}
.contact-form input.field-error, .contact-form select.field-error, .contact-form textarea.field-error {
    border-color: #e05a5a; box-shadow: 0 0 0 4px rgba(224,90,90,0.1);
}
.form-error { display: none; color: #e05a5a; font-size: 12.5px; font-weight: 600; margin-top: 6px; }
.form-error.show { display: block; }

.contact-submit { border: none; cursor: pointer; font-family: var(--font-body); margin-top: 4px; }
.contact-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none !important; }

.form-status { margin-top: 16px; font-size: 14.5px; font-weight: 600; display: none; padding: 12px 16px; border-radius: var(--radius-sm); }
.form-status.show { display: block; }
.form-status.success { background: var(--mint-bg); color: var(--mint-text); }
.form-status.error { background: #fdeaea; color: #b23b3b; }

.contact-info-card { background: var(--navy); border-radius: var(--radius-lg); padding: 40px 32px; display: flex; flex-direction: column; gap: 28px; }
.contact-info-block { display: flex; align-items: flex-start; gap: 14px; color: var(--white); }
.contact-info-icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: #8fd0ff; }
.contact-info-label { display: block; font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: rgba(255,255,255,0.55); margin-bottom: 4px; }
.contact-info-value { color: var(--white); font-size: 15px; font-weight: 600; text-decoration: none; }
.contact-info-value:hover { text-decoration: underline; }
.contact-info-note { padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12); }
.contact-info-note p { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.6; }

@media (max-width: 860px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-card { padding: 28px; }
}
@media (max-width: 480px) {
    .contact-form .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-form-card { padding: 22px; }
    .contact-info-card { padding: 28px 22px; }
}
/* ==========================================================================
   Topics Page
   ========================================================================== */

.topics-hero { padding: 60px 24px 10px; }
.topics-hero-text { color: var(--text-muted); font-size: 16px; line-height: 1.6; margin-top: 4px; }

.topics-quicknav { max-width: var(--container-width); margin: 0 auto 20px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.quicknav-pill { display: inline-flex; align-items: center; padding: 9px 20px; background: var(--white); border: 1px solid rgba(16,38,60,0.1); border-radius: var(--radius-pill); color: var(--navy); font-size: 14px; font-weight: 600; text-decoration: none; transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease; }
.quicknav-pill:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-card); }

.topics-detail-wrap { padding: 20px 24px 100px; }
.topic-detail { max-width: var(--container-width); margin: 0 auto; display: grid; grid-template-columns: 90px 1fr; gap: 28px; padding: 44px 40px; border-radius: var(--radius-lg); scroll-margin-top: 24px; background: var(--topic-bg-1); }
.topic-detail:not(:last-child) { margin-bottom: 20px; }
.topic-detail.alt { background: var(--topic-bg-3); }

.topic-detail-icon { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; color: var(--navy); background: var(--white); border-radius: var(--radius-md); }
.topic-detail-icon.icon-tint-blue { background: var(--card-blue-1); }
.topic-detail-icon.icon-tint-lavender { background: #eef2fb; }

.topic-detail-tag { display: inline-block; color: #1f8fe0; font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; }
.topic-detail-title { font-family: var(--font-body); font-weight: 800; font-size: 24px; color: var(--navy); margin-bottom: 12px; }
.topic-detail-text { color: var(--text-main); font-size: 15.5px; line-height: 1.7; margin-bottom: 18px; }

.topic-detail-tips { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.topic-detail-tips li { position: relative; padding-left: 26px; color: var(--text-muted); font-size: 14.5px; line-height: 1.6; }
.topic-detail-tips li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 16px;
    height: 16px;
    background: #1f8fe0;
    border-radius: 50%;
}

.topic-detail-tips li::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 6px;
    width: 10px;
    height: 10px;
    background: var(--white);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/10px no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/10px no-repeat;
}

@media (max-width: 640px) {
    .topic-detail { grid-template-columns: 1fr; padding: 32px 24px; }
    .topic-detail-icon { width: 52px; height: 52px; }
    .quicknav-pill { padding: 8px 16px; font-size: 13px; }
}
/* ==========================================================================
   Resources Page
   ========================================================================== */

.resources-hero { padding: 60px 24px 20px; }
.resources-hero-text { color: var(--text-muted); font-size: 16px; line-height: 1.6; margin-top: 4px; }

.resources-filter { max-width: var(--container-width); margin: 32px auto 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.filter-pill { font-family: var(--font-body); padding: 9px 20px; background: var(--white); border: 1px solid rgba(16,38,60,0.1); border-radius: var(--radius-pill); color: var(--navy); font-size: 14px; font-weight: 600; cursor: pointer; transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease; }
.filter-pill:hover { transform: translateY(-2px); }
.filter-pill.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.resources-page-section { padding: 40px 24px 100px; }
.resources-page-grid { max-width: var(--container-width); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.resource-card-full { display: flex; flex-direction: column; background: var(--topic-bg-1); border-radius: var(--radius-md); padding: 32px; box-shadow: var(--shadow-card); transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease; }
.resource-card-full:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.resource-card-full.is-hidden { display: none; }

.resource-type-tag { display: inline-block; align-self: flex-start; background: rgba(255,255,255,0.7); color: #1f8fe0; font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 4px 12px; border-radius: var(--radius-pill); margin-bottom: 14px; }
.resource-card-full .resource-title { margin-top: 2px; }
.resource-card-full .resource-desc { flex-grow: 1; margin-bottom: 20px; }

.resource-download { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; color: var(--navy); font-size: 14px; font-weight: 700; text-decoration: none; padding-bottom: 2px; border-bottom: 2px solid var(--navy); transition: opacity 0.2s ease; }
.resource-download:hover { opacity: 0.7; }

.resources-empty { display: none; text-align: center; color: var(--text-muted); font-size: 15px; padding: 40px 0; }
.resources-empty.show { display: block; }

@media (max-width: 860px) {
    .resources-page-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .resources-page-grid { grid-template-columns: 1fr; }
    .filter-pill { padding: 8px 16px; font-size: 13px; }
}
/* ==========================================================================
   Reports Page
   ========================================================================== */

.reports-hero { padding: 60px 24px 20px; }
.reports-hero-text { color: var(--text-muted); font-size: 16px; line-height: 1.6; margin-top: 4px; }
.reports-filter { max-width: var(--container-width); margin: 32px auto 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }

.reports-page-section { padding: 40px 24px 100px; }
.reports-page-grid { max-width: var(--container-width); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.report-card { display: flex; flex-direction: column; background: var(--topic-bg-1); border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow-card); transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease; }
.report-card .insight-card-image { margin: -28px -28px 20px; }
.report-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.report-card.is-hidden { display: none; }
.report-card .insight-excerpt { flex-grow: 1; }

.report-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.report-read-link { color: var(--navy); font-size: 13.5px; font-weight: 700; text-decoration: none; }
.report-read-link:hover { text-decoration: underline; }

.reports-empty { display: none; text-align: center; color: var(--text-muted); font-size: 15px; padding: 40px 0; }
.reports-empty.show { display: block; }

@media (max-width: 860px) {
    .reports-page-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .reports-page-grid { grid-template-columns: 1fr; }
}
/* ===== Blog / Report Detail Page ===== */
.blog-detail-hero { padding: 60px 0 20px; }
.blog-detail-back { margin-bottom: 18px; }
.blog-detail-back a { color: var(--text-muted); text-decoration: none; font-weight: 600; font-size: 14px; }
.blog-detail-back a:hover { color: var(--navy); }

.blog-detail-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.blog-detail-category {
    display: inline-block; padding: 6px 14px; border-radius: var(--radius-pill);
    background: var(--lavender); color: var(--navy); font-size: 13px; font-weight: 600;
}

.blog-detail-title { margin-bottom: 14px; }
.blog-detail-excerpt { font-size: 18px; color: var(--text-muted); max-width: 720px; }

.blog-detail-image-wrap { padding: 10px 0 30px; }
.blog-detail-image {
    width: 100%; max-height: 480px; object-fit: cover;
    border-radius: var(--radius-md); box-shadow: var(--shadow-card);
    display: block;
}

.blog-detail-body-wrap { padding: 10px 0 80px; }
.blog-detail-body { max-width: 760px; margin: 0 auto; }
.blog-detail-body p {
    font-size: 17px; line-height: 1.8; color: var(--text-main); margin-bottom: 22px;
}
.blog-detail-placeholder-note {
    font-style: italic; color: var(--text-muted); font-size: 15px;
}
