/* 
 * work4flow - Component Styles
 * Modern: glassmorphism, gradient cards, polished CTAs, micro-interactions.
 */

/* ========================================
   1. Navigation & Header (Glassmorphism)
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 0;
    transition: var(--transition-base);
    background: #ffffff;
    border-bottom: 1px solid var(--color-border);
}

.header.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 56px;
    width: auto;
    transition: opacity 0.3s ease;
}

.footer-logo {
    height: 48px;
    width: auto;
    display: block;
    margin: 0 auto 1.5rem;
}

.logo:hover {
    opacity: 0.85;
}

.nav-links {
    display: flex;
    align-items: center;
}

/* Direct nav links and dropdown wrappers */
.hidden-mobile > a,
.hidden-mobile > .nav-dropdown {
    margin-left: 2rem;
}

/* Shared styles for nav links and dropdown toggles */
.hidden-mobile > a,
.nav-dropdown-toggle {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text);
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1;
}

/* Dropdown wrapper */
.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0;
    font-family: inherit;
}

.nav-dropdown-toggle:hover {
    color: var(--color-accent);
}

.nav-dropdown-toggle .chevron {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle .chevron {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 0.5rem 0;
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 150;
}

/* Invisible bridge to keep hover alive across the gap */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(8px);
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.65rem 1.25rem;
    margin-left: 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu a:hover {
    background: var(--color-bg-alt);
    color: var(--color-accent);
}

.nav-dropdown-menu a.active {
    color: var(--color-accent-dark);
    background: var(--color-accent-light);
    font-weight: 600;
}

/* Animated underline on hover — only for direct nav links */
.hidden-mobile > a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    border-radius: 1px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hidden-mobile > a:hover {
    color: var(--color-accent);
}

.hidden-mobile > a:hover::after {
    width: 100%;
}

.hidden-mobile > a.active {
    color: var(--color-accent);
}

.hidden-mobile > a.active::after {
    width: 100%;
}

/* Hamburger Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 300;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Close Button (X) */
.menu-close-btn {
    display: none;
    position: relative;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin: -8px;
    z-index: 300;
}

.menu-close-btn span {
    display: block;
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-close-btn span:first-child {
    transform: rotate(45deg);
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -1px;
}

.menu-close-btn span:last-child {
    transform: rotate(-45deg);
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -1px;
}

.menu-close-btn span {
    position: absolute;
    width: 24px;
}

.menu-close-btn span:first-child {
    transform: rotate(45deg);
}

.menu-close-btn span:last-child {
    transform: rotate(-45deg);
}

/* --- Mobile Menu Overlay --- */
.overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100dvh;
    height: 100vh;
    background: var(--color-primary);
    z-index: 200;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.2, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.overlay-menu.active {
    transform: translateX(0);
}

.overlay-menu .overlay-logo {
    height: 64px;
    width: auto;
    margin-bottom: 3rem;
}

.overlay-menu h2 {
    color: var(--color-accent-light);
    font-size: 2rem;
    margin-bottom: 3rem;
    letter-spacing: -0.03em;
}

.overlay-menu .nav-links {
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 300px;
}

/* Direct links in overlay */
.overlay-menu .nav-links > a {
    font-size: 1.5rem;
    color: #fff;
    padding: 1.25rem 0;
    display: block;
    margin-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    width: 100%;
    font-weight: 500;
}

.overlay-menu .nav-links > a::after {
    display: none;
}

.overlay-menu .nav-links > a:hover {
    color: var(--color-accent);
}

/* Dropdown in overlay */
.overlay-menu .nav-dropdown {
    margin-left: 0;
    width: 100%;
    flex-direction: column;
}

.overlay-menu .nav-dropdown-toggle {
    font-size: 1.5rem;
    color: #fff;
    padding: 1.25rem 0;
    width: 100%;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 500;
}

.overlay-menu .nav-dropdown-toggle .chevron {
    width: 20px;
    height: 20px;
}

.overlay-menu .nav-dropdown.open .nav-dropdown-toggle .chevron {
    transform: rotate(180deg);
}

.overlay-menu .nav-dropdown-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0;
    min-width: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.overlay-menu .nav-dropdown.open .nav-dropdown-menu {
    max-height: 500px;
}

.overlay-menu .nav-dropdown-menu a {
    font-size: 1.1rem;
    color: var(--color-text-on-dark);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.overlay-menu .nav-dropdown-menu a:hover {
    background: transparent;
    color: var(--color-accent);
}

/* ========================================
   2. Hero Section
   ======================================== */
.hero-section {
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
    padding-top: 5rem;
}

.hero-section h1 {
    font-size: var(--text-hero);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.05;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.hero-section h1 .text-accent {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section .hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--color-text-light);
    max-width: 640px;
    margin: 0 auto var(--spacing-md);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.hero-section .hero-impact {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.hero-impact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--color-text);
    font-weight: 500;
}

.hero-impact-item .icon {
    color: var(--color-accent);
    width: 20px;
    height: 20px;
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #008dff;
    animation: scrollBounce 2s ease-in-out infinite;
    text-decoration: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.scroll-indicator:hover {
    opacity: 1;
    color: var(--color-accent-dark);
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(10px);
    animation: none;
}

.scroll-indicator svg {
    width: 36px;
    height: 36px;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(8px);
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 1.25rem;
    }
}

/* ========================================
   3. Level Cards (3 Ebenen)
   ======================================== */
.level-card {
    text-align: center;
    padding: var(--spacing-md);
    border-radius: 20px;
    transition: var(--transition-base);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.level-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.level-card:hover {
    border-color: transparent;
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.level-card:hover::before {
    opacity: 1;
}

.level-card h3 {
    color: var(--color-primary);
    font-size: var(--text-h3);
    margin-bottom: var(--spacing-xs);
    margin-top: var(--spacing-sm);
}

.level-card p {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.section-dark .level-card {
    background: var(--color-primary-light);
    border-color: var(--color-border-light);
}

.section-dark .level-card h3 {
    color: var(--color-text-on-dark-bright);
}

.section-dark .level-card p {
    color: var(--color-text-on-dark);
}

.section-dark .level-card:hover {
    border-color: rgba(103, 154, 202, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ========================================
   4. Core Fields (2 Kernfelder)
   ======================================== */
.fields-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.field-card {
    padding: var(--spacing-md);
    border-radius: 20px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
}

.field-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-radius: 0 4px 4px 0;
}

.field-card--health::before {
    background: linear-gradient(180deg, #22c55e, #16a34a);
}

.field-card--coop::before {
    background: linear-gradient(180deg, var(--color-accent), var(--color-accent-dark));
}

.field-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.field-card h3 {
    font-size: var(--text-h3);
    margin-bottom: var(--spacing-sm);
}

.field-card ul {
    list-style: none;
    padding: 0;
    margin-top: var(--spacing-sm);
}

.field-card ul li {
    padding: 0.4rem 0;
    color: var(--color-text-light);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.field-card ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
    flex-shrink: 0;
}

.section-dark .field-card {
    background: var(--color-primary-light);
    border-color: var(--color-border-light);
}

.section-dark .field-card ul li {
    color: var(--color-text-on-dark);
}

@media (max-width: 768px) {
    .fields-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   5. Insight / Quote Block
   ======================================== */
.insight-block {
    padding: var(--spacing-md);
    border-radius: 20px;
    background: rgba(103, 154, 202, 0.08);
    border: 1px solid rgba(103, 154, 202, 0.15);
    text-align: center;
    position: relative;
}

.insight-block h3 {
    color: var(--color-accent-dark);
    margin-bottom: var(--spacing-xs);
}

.insight-block p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-text);
    font-size: 1.05rem;
    line-height: 1.7;
}

.insight-block strong {
    color: var(--color-primary);
}

.section-dark .insight-block {
    background: rgba(103, 154, 202, 0.08);
    border-color: rgba(103, 154, 202, 0.2);
}

.section-dark .insight-block h3 {
    color: var(--color-accent);
}

.section-dark .insight-block p {
    color: var(--color-text-on-dark);
}

.section-dark .insight-block strong {
    color: var(--color-text-on-dark-bright);
}

/* ========================================
   6. Problem List
   ======================================== */
.problem-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.problem-item {
    text-align: center;
    padding: var(--spacing-md);
}

.problem-item .icon {
    color: var(--color-error);
    width: 32px;
    height: 32px;
    margin-bottom: var(--spacing-xs);
}

.problem-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0;
}

.section-dark .problem-item h3 {
    color: var(--color-text-on-dark-bright);
}

@media (max-width: 768px) {
    .problem-list {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
}

/* ========================================
   7. Buttons & CTA
   ======================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2.25rem;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: white;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-base);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(103, 154, 202, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-accent-dark), #0066b3);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(103, 154, 202, 0.4);
    color: white;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-primary .arrow {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-primary:hover .arrow {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2.25rem;
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
    border-radius: 60px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-base);
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--color-accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(103, 154, 202, 0.3);
}

/* ========================================
   8. Impact List (Wirkung)
   ======================================== */
.impact-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
}

.impact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(103, 154, 202, 0.12);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-primary);
}

.impact-list li .icon {
    color: var(--color-accent-dark);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.section-dark .impact-list li {
    background: rgba(103, 154, 202, 0.1);
    color: var(--color-text-on-dark-bright);
}

@media (max-width: 768px) {
    .impact-list {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   9. Insight Cards (Insights Page)
   ======================================== */
.insight-card {
    padding: var(--spacing-md);
    border-radius: 20px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    transition: var(--transition-base);
    margin-bottom: var(--spacing-md);
}

.insight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.insight-card h2 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.insight-card .meta {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
}

.insight-card .tag {
    display: inline-block;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    background: var(--color-accent-light);
    color: var(--color-accent-dark);
    font-weight: 600;
}

/* ========================================
   10. Responsive / Mobile Styles
   ======================================== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .hidden-mobile {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .overlay-menu .nav-links {
        display: flex;
    }

    .hero-section {
        height: 100vh;
        height: 100dvh;
        padding-top: 4rem;
    }

    .hero-section h1 {
        font-size: var(--text-h1);
    }

    .hero-section .hero-impact {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-xs);
    }

    .section-padding {
        padding: var(--spacing-md) 0;
    }

    .section-padding > .container > .text-center,
    .section-padding > .container > div > .text-center {
        margin-bottom: var(--spacing-md);
    }

    h2 {
        font-size: var(--text-h2);
    }

    .level-card {
        padding: var(--spacing-md) var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 100vh;
        height: 100dvh;
        padding-top: 3.5rem;
    }

    .logo {
        font-size: 1.35rem;
    }
}

/* ========================================
   11. Footer
   ======================================== */
.site-footer {
    background: var(--color-primary);
    color: var(--color-text-on-dark);
    padding: var(--spacing-lg) 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-tagline {
    color: var(--color-text-on-dark);
    font-size: 1rem;
}

.footer-nav {
    margin-top: var(--spacing-sm);
}

.footer-nav a {
    color: var(--color-accent-light);
    font-size: 0.875rem;
    margin: 0 0.75rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--color-accent);
}

.footer-copyright {
    margin-top: var(--spacing-md);
    font-size: 0.8rem;
    color: #475569;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-sm);
    flex-wrap: wrap;
}

.footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent-light);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--color-accent);
}

.footer-contact .icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .footer-contact {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }
}

/* ========================================
   12. Legal Page Content
   ======================================== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--color-border);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--color-primary);
}

.legal-section p {
    color: var(--color-text);
    line-height: 1.5;
    margin: 0;
}

.legal-section a {
    color: var(--color-accent);
    word-break: break-all;
}

/* ========================================
   13. Team / Profile Cards
   ======================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    position: relative;
    text-align: center;
    padding: var(--spacing-lg) var(--spacing-md);
    border-radius: 24px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: var(--transition-base);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.team-card-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: var(--spacing-md);
    border: 4px solid var(--color-accent-light);
    box-shadow: 0 8px 30px rgba(103, 154, 202, 0.2);
}

.team-card-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.team-card-roles {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.team-card-roles li {
    padding: 0.5rem 0;
    color: var(--color-text-light);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.team-card-roles li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    flex-shrink: 0;
}

.section-dark .team-card {
    background: var(--color-primary-light);
    border-color: var(--color-border-light);
}

.section-dark .team-card-name {
    color: var(--color-text-on-dark-bright);
}

.section-dark .team-card-roles li {
    color: var(--color-text-on-dark);
}

.team-card-roles {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.team-card-roles li {
    padding: 0.4rem 0;
    color: var(--color-text-light);
    font-size: 0.95rem;
    display: inline-block;
}

.team-card-roles li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
    margin-right: 0.75rem;
    vertical-align: middle;
}

.section-dark .team-card {
    background: var(--color-primary-light);
    border-color: var(--color-border-light);
}

.section-dark .team-card-name {
    color: var(--color-text-on-dark-bright);
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-card-image {
        width: 140px;
        height: 140px;
    }
}

/* ========================================
   14. Page Title
   ======================================== */
.spacer-section {
    flex: 1;
    min-height: 100px;
}

.page-header {
    padding-top: 10rem;
}

.page-title {
    font-size: var(--text-hero);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--color-text-on-dark-bright);
}

.page-title .gradient {
    background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .page-header {
        padding-top: 8rem;
    }
}

/* ========================================
   15. Helpline List
   ======================================== */
.helpline-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.helpline-list li {
    padding: 0.75rem 0;
    color: var(--color-text-light);
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.helpline-list li:last-child {
    border-bottom: none;
}

.helpline-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    flex-shrink: 0;
    margin-top: 0.6rem;
}

.section-dark .helpline-list li {
    color: var(--color-text-on-dark);
    border-bottom-color: var(--color-border-light);
}
