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

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-section {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-shrink: 0;
}

.logo-link {
    text-decoration: none;
}

.logo-text {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #065f46;
    position: relative;
    padding-bottom: 6px;
    line-height: 1;
}

.logo-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #059669 0%, #10b981 100%);
    border-radius: 2px;
}

.tagline {
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 4px;
    color: #059669;
    text-transform: uppercase;
    padding-left: 1px;
    line-height: 1;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #065f46;
    cursor: pointer;
    padding: 5px;
    position: relative;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #065f46;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

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

nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
    align-items: center;
    flex-wrap: wrap;
}

nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    white-space: nowrap;
    min-height: 44px;
    display: flex;
    align-items: center;
}

nav a:hover,
nav a.active-link {
    background-color: #f8f9fa;
    color: #065f46;
}

.nav-shop {
    background: #059669;
    color: white !important;
    padding: 8px 20px;
    margin-left: 5px;
}

.nav-shop:hover {
    background: #065f46 !important;
    color: white !important;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 14px;
    color: #6b7280;
    padding-top: 18px;
}

.breadcrumb a {
    color: #6b7280;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #065f46;
}

.breadcrumb .separator {
    margin: 0 6px;
    color: #9ca3af;
}

.breadcrumb .current {
    color: #9ca3af;
}

/* Hero */
.hero {
    background:
        radial-gradient(circle at 50% 0%, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 34%),
        linear-gradient(180deg, #0a6a4f 0%, #065f46 38%, #05553f 100%);
    color: white;
    padding: 112px 0 96px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 24%),
        radial-gradient(circle at 82% 18%, rgba(16,185,129,0.10) 0%, rgba(16,185,129,0) 20%),
        linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 30%, rgba(0,0,0,0.10) 100%);
    pointer-events: none;
}

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

.hero-copy {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.74);
    margin-bottom: 18px;
}

.hero h1 {
    margin: 0 auto 22px;
    max-width: 900px;
    line-height: 0.98;
    letter-spacing: -0.04em;
    text-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.hero-title-primary {
    display: block;
    font-size: 72px;
    line-height: 0.95;
    font-weight: 800;
    color: #ffffff;
}

.hero-underline {
    width: 0;
    height: 5px;
    margin: 22px auto 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.72) 68%, rgba(255,255,255,0.52) 100%);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
    animation: heroUnderlineGrow 1.2s ease-out 0.15s forwards;
}

@keyframes heroUnderlineGrow {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 220px;
        opacity: 1;
    }
}

.hero-title-secondary {
    display: block;
    margin-top: 4px;
}

.hero-title-for {
    display: block;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.58);
    margin-bottom: 10px;
}

.hero-title-accent {
    display: inline-block;
    font-size: 42px;
    line-height: 1.02;
    font-weight: 800;
    color: #ffffff;
}

.hero-lead {
    font-size: 21px;
    margin-bottom: 14px;
    line-height: 1.66;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.96);
}

.hero-support {
    font-size: 17px;
    line-height: 1.72;
    color: rgba(255,255,255,0.84);
    max-width: 760px;
    margin: 0 auto 36px;
}

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

/* Framework hero variant */
.hero-framework {
    background:
        radial-gradient(circle at 50% 0%, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 34%),
        linear-gradient(180deg, #0a6a4f 0%, #065f46 58%, #05553f 100%);
    padding: 92px 0 76px;
}

.hero-framework::before {
    background:
        radial-gradient(circle at 20% 24%, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 22%),
        linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 32%, rgba(0,0,0,0.08) 100%);
}

.hero-framework .hero-copy {
    max-width: 900px;
}

/* Buttons */
.cta-button,
.btn-primary,
.btn-secondary {
    display: inline-block;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s, border-color 0.3s, color 0.3s;
    min-height: 44px;
}

.cta-button {
    background: #ffffff;
    color: #06503d;
    padding: 15px 32px;
    border-radius: 10px;
    font-size: 17px;
    box-shadow: 0 14px 32px rgba(0,0,0,0.16);
    border: 1px solid rgba(255,255,255,0.28);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(0,0,0,0.2);
    background: #f7faf9;
}

.cta-button-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.34);
    box-shadow: none;
}

.cta-button-secondary:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.5);
    color: #ffffff;
}

.cta-link {
    color: rgba(255,255,255,0.88);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
    padding: 12px 10px;
    display: inline-block;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.cta-link:hover {
    opacity: 0.75;
    color: #ffffff;
}

.btn-primary {
    background: white;
    color: #065f46;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 18px;
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 40px;
    border: 2px solid white;
    border-radius: 5px;
    font-size: 18px;
}

@media (hover: hover) {
    .btn-primary:hover,
    .btn-secondary:hover {
        transform: translateY(-2px);
    }

    .btn-primary:hover {
        box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    }

    .btn-secondary:hover {
        background: rgba(255,255,255,0.1);
    }
}

/* Landing-page NEMF panel */
.nemf-panel {
    background: #f8f9fa;
    padding: 0 0 80px;
}

.nemf-card {
    max-width: 1040px;
    margin: -38px auto 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 16px 42px rgba(17,24,39,0.08);
    padding: 34px 34px 28px;
    position: relative;
    z-index: 2;
}

.nemf-card.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.nemf-card.fade-in-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.nemf-card-top {
    display: grid;
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.nemf-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 14px;
    padding: 8px 12px;
}

.nemf-logo img {
    width: 100%;
    max-width: 280px;
    height: auto;
    display: block;
}

.nemf-card h3 {
    font-size: 30px;
    line-height: 1.16;
    color: #065f46;
    margin-bottom: 12px;
    font-weight: 700;
}

.nemf-card p {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.7;
}

.nemf-framework {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.nemf-framework-item {
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 22px 20px;
    min-height: 100%;
}

.nemf-framework-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #059669;
    margin-bottom: 10px;
}

.nemf-framework-item strong {
    display: block;
    font-size: 20px;
    line-height: 1.25;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.nemf-framework-item p {
    font-size: 15px;
    line-height: 1.65;
    color: #4a5568;
}

.nemf-panel-note {
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
    margin-top: 22px;
}

/* Shared sections */
.why-choose {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about {
    padding: 80px 0;
    background: white;
}

.section-light {
    padding: 80px 0;
    background: white;
}

.section-muted {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: #065f46;
    margin-bottom: 24px;
}

.about-content {
    max-width: 920px;
    margin: 0 auto 32px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.bridge-section-intro {
    max-width: 820px;
    margin: 0 auto 42px;
    text-align: center;
    font-size: 18px;
    line-height: 1.75;
    color: #4a5568;
}

.features-grid,
.bridge-framework-grid,
.bridge-applicability-grid,
.bridge-next-step-grid {
    display: grid;
    gap: 30px;
}

.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.bridge-framework-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 10px;
}

.bridge-applicability-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin-top: 10px;
}

.bridge-next-step-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    margin-top: 24px;
}

.feature-card,
.bridge-framework-card,
.bridge-applicability-card,
.bridge-next-step-card {
    background: white;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.section-light .bridge-framework-card,
.section-light .bridge-applicability-card {
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 14px rgba(17,24,39,0.05);
}

@media (hover: hover) {
    .feature-card:hover,
    .bridge-framework-card:hover,
    .bridge-applicability-card:hover,
    .bridge-next-step-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    }
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
}

.feature-card h3,
.bridge-framework-card h3,
.bridge-applicability-card h3,
.bridge-next-step-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #065f46;
    margin-bottom: 15px;
}

.feature-card p,
.bridge-framework-card p,
.bridge-next-step-card p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 16px;
}

.bridge-framework-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #059669;
    margin-bottom: 12px;
}

.bridge-note-box,
.bridge-positioning-box {
    max-width: 980px;
    margin: 32px auto 40px; /* ← changed bottom from 0 to 40px */
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #059669;
    padding: 24px 26px;
    border-radius: 12px;
}

.bridge-note-box p,
.bridge-positioning-box p {
    color: #2c3e50;
    font-size: 17px;
    line-height: 1.75;
    margin: 0;
}

.bridge-positioning-list {
    margin: 18px 0 0 20px;
    color: #4a5568;
}

.bridge-positioning-list li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.bridge-next-step-card .cta-button,
.bridge-next-step-card .cta-button-secondary {
    margin-top: 18px;
}

.cta-section {
    background: linear-gradient(135deg, #065f46 0%, #059669 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #10b981;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

.footer-section a {
    color: #e5e7eb;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
    padding: 5px 0;
}

.footer-section a:hover {
    color: #10b981;
}

.footer-section p {
    color: #e5e7eb;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    color: #6b7280;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 10px;
}

.footer-bottom-links a:hover {
    color: #10b981;
}

.footer-legal,
.footer-tagline,
.footer-tagline-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 6px;
}

/* HCP Gate Overlay */
.hcp-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #065f46 0%, #059669 100%);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.hcp-gate-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hcp-gate-content {
    background: white;
    padding: 50px;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hcp-gate-content h2 {
    color: #065f46;
    margin-top: 0;
    font-size: 2em;
    margin-bottom: 20px;
}

.hcp-gate-notice {
    color: #333;
    line-height: 1.8;
    margin: 20px 0;
    text-align: left;
    font-size: 1.05em;
}

.hcp-gate-warning {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 15px;
    margin: 25px 0;
    text-align: left;
    border-radius: 5px;
}

.hcp-gate-warning p {
    color: #92400e;
    margin: 0;
    font-size: 0.95em;
    line-height: 1.6;
}

.hcp-confirmation-wrapper {
    margin: 30px 0;
    text-align: left;
}

.hcp-confirmation-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background 0.3s;
}

.hcp-confirmation-label:hover {
    background: #e5e7eb;
}

.hcp-confirmation-label input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin-right: 15px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.hcp-confirmation-text {
    color: #333;
    font-size: 1.05em;
    line-height: 1.6;
}

.hcp-gate-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.hcp-btn {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    min-height: 50px;
}

.hcp-btn-enter {
    background: #ccc;
    color: white;
    cursor: not-allowed;
}

.hcp-btn-enter.enabled {
    background: linear-gradient(135deg, #065f46 0%, #059669 100%);
    cursor: pointer;
}

.hcp-btn-enter.enabled:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(6, 95, 70, 0.3);
}

.hcp-btn-exit {
    background: white;
    color: #065f46;
    border: 2px solid #065f46;
}

.hcp-btn-exit:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.hcp-gate-footer {
    color: #666;
    font-size: 0.9em;
    margin-top: 25px;
    text-align: center;
    line-height: 1.6;
}

.hcp-gate-footer a {
    color: #065f46;
    text-decoration: none;
    font-weight: 600;
}

.hcp-gate-footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    nav ul {
        gap: 3px;
    }

    nav a {
        font-size: 14px;
        padding: 8px 12px;
    }

    .nav-shop {
        padding: 8px 16px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        flex-wrap: nowrap;
        gap: 15px;
    }

    .logo-text {
        font-size: 24px;
    }

    .tagline {
        font-size: 8px;
        letter-spacing: 3px;
    }

    .menu-toggle {
        display: flex;
        order: 3;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    nav.active {
        max-height: 500px;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        align-items: stretch;
        padding: 10px 0;
    }

    nav a {
        display: block;
        width: 100%;
        text-align: left;
        font-size: 16px;
        padding: 15px 20px;
        border-radius: 0;
        border-bottom: 1px solid #f0f0f0;
    }

    nav li:last-child a {
        border-bottom: none;
    }

    .nav-shop {
        margin-left: 0;
        background: transparent;
        color: #059669 !important;
        font-weight: 600;
    }

    .nav-shop:hover {
        background: #f8f9fa !important;
        color: #065f46 !important;
    }

    .hero {
        padding: 88px 0 72px;
    }

    .hero h1 {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .hero-title-primary {
        font-size: 46px;
    }

    .hero-title-accent {
        font-size: 28px;
    }

    .hero-underline {
        margin-top: 18px;
        margin-bottom: 16px;
    }

    @keyframes heroUnderlineGrow {
        from { width: 0; opacity: 0; }
        to { width: 150px; opacity: 1; }
    }

    .hero-lead {
        font-size: 18px;
    }

    .hero-support {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .cta-button,
    .cta-button-secondary,
    .cta-link {
        width: 100%;
        max-width: 340px;
        text-align: center;
    }

    .why-choose,
    .about,
    .cta-section,
    .section-light,
    .section-muted {
        padding: 50px 0;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .bridge-section-intro,
    .about-content p {
        font-size: 16px;
        line-height: 1.7;
    }

    .features-grid,
    .bridge-framework-grid,
    .bridge-applicability-grid,
    .bridge-next-step-grid,
    .nemf-framework {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .nemf-panel {
        padding-bottom: 56px;
    }

    .nemf-card {
        margin-top: -26px;
        padding: 24px 20px 22px;
        border-radius: 16px;
    }

    .nemf-card-top {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .nemf-logo img {
        max-width: 220px;
    }

    .nemf-card h3 {
        font-size: 24px;
    }

    .hcp-gate-content {
        padding: 30px 25px;
        margin: 10px;
    }

    .hcp-gate-content h2 {
        font-size: 1.5em;
    }

    .hcp-gate-notice {
        font-size: 1em;
    }

    .hcp-confirmation-label {
        padding: 12px;
    }

    .hcp-confirmation-text {
        font-size: 1em;
    }

    .hcp-gate-buttons,
    .cta-buttons,
    .footer-bottom-links {
        flex-direction: column;
    }

    .hcp-btn,
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom p {
        font-size: 13px;
    }
}

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

    .hero-eyebrow {
        font-size: 12px;
        letter-spacing: 1.4px;
    }

    .hero-lead {
        font-size: 15px;
    }

    .hero-support {
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }

    .feature-card,
    .bridge-framework-card,
    .bridge-applicability-card,
    .bridge-next-step-card,
    .hcp-gate-content {
        padding: 22px;
    }

    .hcp-gate-content h2 {
        font-size: 1.3em;
    }

    .hcp-confirmation-label input[type="checkbox"] {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 42px 0;
    }

    .hero h1 {
        font-size: 26px;
    }
}

.resource-list {
    margin: 18px 0 0 20px;
    color: #4a5568;
}

.resource-list li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.resource-list a {
    color: #065f46;
    text-decoration: none;
    font-weight: 500;
    word-break: break-word;
}

.resource-list a:hover {
    text-decoration: underline;
}

/* Academic articles */
.academic-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    margin-top: 10px;
}

.article-list {
    list-style: none;
    margin: 18px 0 0 0;
    padding: 0;
}

.article-entry {
    padding: 0 0 18px 0;
    margin-bottom: 18px;
    border-bottom: 1px solid #e5e7eb;
}

.article-entry:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.article-title {
    display: inline-block;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 600;
    color: #065f46;
    text-decoration: none;
    margin-bottom: 6px;
}

.article-title:hover {
    text-decoration: underline;
}

.article-meta {
    font-size: 13px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 6px;
}

.article-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

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

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

    .article-desc {
        font-size: 14px;
    }
}

/* Resources page navigation cards */
.features-grid a {
    color: inherit;
    text-decoration: none;
}

.features-grid a:hover {
    text-decoration: underline;
}

/* Academic articles */
.academic-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    margin-top: 10px;
}

.article-list {
    list-style: none;
    margin: 18px 0 0 0;
    padding: 0;
}

.article-entry {
    padding: 0 0 18px 0;
    margin-bottom: 18px;
    border-bottom: 1px solid #e5e7eb;
}

.article-entry:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.article-title {
    display: inline-block;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 600;
    color: #065f46;
    text-decoration: none;
    margin-bottom: 6px;
}

.article-title:hover {
    text-decoration: underline;
}

.article-meta {
    font-size: 13px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 6px;
}

.article-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

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

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

    .article-desc {
        font-size: 14px;
    }

    .hoc-wrap {
    max-width: 1180px;
    margin: 0 auto;
    }

    .hoc-figure-card {
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 18px;
        box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
        padding: 24px;
        overflow: hidden;
    }

    .hoc-layout {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 280px;
        gap: 24px;
        align-items: start;
    }

    .hoc-graphic {
        min-width: 0;
    }

    .hoc-svg {
        width: 100%;
        height: auto;
        display: block;
    }

    .hoc-note-panel {
        background: #f8fafc;
        border: 1px solid #dbe4ea;
        border-radius: 18px;
        box-shadow: 0 8px 24px rgba(17,24,39,0.06);
        padding: 20px 18px;
    }

    .hoc-note-panel h3 {
        color: #065f46;
        font-size: 20px;
        line-height: 1.35;
        margin: 0 0 14px;
    }

    .hoc-note-panel ul {
        margin: 0;
        padding-left: 18px;
        color: #334155;
    }

    .hoc-note-panel li {
        margin-bottom: 12px;
        font-size: 17px;
        line-height: 1.45;
        font-weight: 600;
    }

    .hoc-note-panel li span {
        display: block;
        font-weight: 600;
    }

    @media (max-width: 1180px) {
        .hoc-layout {
            grid-template-columns: 1fr;
        }

        .hoc-note-panel {
            max-width: 760px;
            margin: 0 auto;
        }
    }

    @media (max-width: 900px) {
        .hoc-figure-card {
            padding: 14px;
            border-radius: 16px;
        }
    }
}