/* Sectoren Page Styles */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ff7a3d;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
    stroke: #1f2937;
}

/* Hero Section */
.sectoren-hero {
    position: relative;
    background:
        radial-gradient(ellipse 900px 600px at 20% 30%, rgba(255, 140, 110, 0.45) 0%, transparent 60%),
        radial-gradient(ellipse 700px 500px at 80% 70%, rgba(255, 180, 150, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse 500px 400px at 50% 50%, rgba(255, 160, 130, 0.2) 0%, transparent 70%),
        linear-gradient(135deg, #ff9b82 0%, #ffb399 35%, #ffc8b3 70%, #ffd4c4 100%);
    padding: 8rem 2rem 7rem;
    overflow: hidden;
    min-height: 75vh;
    display: flex;
    align-items: center;
}

.sectoren-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    z-index: 1;
    pointer-events: none;
}

.hero-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: #ffffff;
    clip-path: ellipse(100% 100% at 50% 0%);
    transform: translateY(-50%);
}

.hero-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: #ffffff;
    clip-path: ellipse(100% 100% at 50% 100%);
    transform: translateY(50%);
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: 2;
    pointer-events: none;
}

.blob-1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(255, 240, 230, 0.3) 40%, transparent 70%);
    top: -100px;
    right: 10%;
}

.blob-2 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, rgba(255, 220, 200, 0.25) 40%, transparent 70%);
    bottom: -80px;
    left: 5%;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 200, 170, 0.4) 0%, rgba(255, 180, 150, 0.2) 40%, transparent 70%);
    top: 45%;
    right: 25%;
}

.hero-bg-shape {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    color: rgba(255, 255, 255, 1);
    opacity: 0.15;
}

.hero-bg-shape svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
}


.sectoren-hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(31, 41, 55, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    stroke: #ff7a3d;
    flex-shrink: 0;
}

.hero-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin: 0 0 1.5rem;
}

.hero-title em {
    font-style: normal;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.0625rem;
    color: #4b5563;
    line-height: 1.65;
    margin: 0 0 2rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.hero-value-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 2rem;
}

.hero-value-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
}

.hero-value-item svg {
    width: 20px;
    height: 20px;
    stroke: #1f2937;
    flex-shrink: 0;
}

.hero-value-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
    letter-spacing: -0.01em;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(31, 41, 55, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-hero-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 41, 55, 0.25);
}

.btn-hero-dark svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.btn-hero-dark:hover svg {
    transform: translateX(3px);
}

.btn-hero-light {
    display: inline-flex;
    align-items: center;
    padding: 1rem 1.75rem;
    background: rgba(255, 255, 255, 0.9);
    color: #374151;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-hero-light:hover {
    background: #ffffff;
    border-color: #ffffff;
}

/* Animate In */
.animate-in {
    opacity: 0;
    transform: translateY(12px);
    animation: fadeInUp 0.5s ease forwards;
}

.animate-in:nth-child(1) { animation-delay: 0.1s; }
.animate-in:nth-child(2) { animation-delay: 0.2s; }
.animate-in:nth-child(3) { animation-delay: 0.3s; }
.animate-in:nth-child(4) { animation-delay: 0.4s; }
.animate-in:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Tag */
.section-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8dd 100%);
    color: #ff7a3d;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    margin-bottom: 0.5rem;
}

/* Why Sector Section */
.why-sector-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.why-sector-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.why-sector-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.why-sector-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    letter-spacing: -0.02em;
}

.why-sector-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.why-sector-main h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.why-sector-main .lead-text {
    font-size: 1.125rem;
    color: #1f2937;
    font-weight: 600;
    line-height: 1.7;
    margin: 0 0 0.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.why-sector-main p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0 0 1rem;
}

.why-sector-main p:last-child {
    margin-bottom: 0;
}

.why-sector-content {
    overflow: hidden;
}

.why-sector-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.why-sector-content .lead-text {
    font-size: 1.125rem;
    color: #1f2937;
    font-weight: 600;
    line-height: 1.7;
    margin: 0 0 0.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.why-sector-content p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0 0 1rem;
}

.why-sector-grid .why-sector-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.why-sector-content .why-sector-features {
    float: right;
    width: 420px;
    margin-left: 3rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-card {
    padding: 1.5rem;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: border-color 0.2s ease;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    border-color: #e5e7eb;
}

.feature-card p {
    flex-grow: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #ff7a3d 0%, #ff9b82 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: #ffffff;
    stroke-width: 2;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.35rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Research Section */
.research-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #f9fafb 0%, #f3f4f6 100%);
}

.research-container {
    max-width: 1100px;
    margin: 0 auto;
}

.research-header {
    text-align: center;
    margin-bottom: 3rem;
}

.research-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    letter-spacing: -0.02em;
}

.research-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.research-step {
    flex: 1;
    max-width: 220px;
    text-align: center;
    padding: 0 1rem;
}

.research-icon {
    width: 64px;
    height: 64px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: border-color 0.2s ease, background 0.2s ease;
    padding: 4px;
}

.research-step:hover .research-icon {
    border-color: #ff7a3d;
    background: #fff8f5;
}

.research-icon svg {
    width: 28px;
    height: 28px;
    stroke: #ff7a3d;
    flex-shrink: 0;
}

.research-step h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.5rem;
}

.research-step p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.research-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #e5e7eb 0%, #ff7a3d 50%, #e5e7eb 100%);
    margin-top: 28px;
    flex-shrink: 0;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.benefits-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

.benefits-content > p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0 0 1.75rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefits-list li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.benefits-list li svg {
    width: 20px;
    height: 20px;
    stroke: #ff7a3d;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.benefits-list li div {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.benefits-list li strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
}

.benefits-list li span {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.55;
}

.benefits-visual {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.benefits-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.benefits-image-wrapper img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.benefits-quote {
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border-radius: 12px;
    position: relative;
}

.benefits-quote::before {
    content: '"';
    position: absolute;
    top: -8px;
    left: 16px;
    font-size: 3rem;
    color: #ff7a3d;
    font-weight: 800;
    line-height: 1;
    opacity: 0.4;
}

.benefits-quote blockquote {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    padding-left: 0.25rem;
}

/* Text Blocks Section */
.text-blocks-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.text-blocks-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.text-block {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.text-block:hover {
    border-color: #e5e7eb;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.text-block-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8dd 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.text-block-icon svg {
    width: 22px;
    height: 22px;
    stroke: #ff7a3d;
}

.text-block h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.5rem;
}

.text-block p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Approach Section */
.approach-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.approach-container {
    max-width: 1100px;
    margin: 0 auto;
}

.approach-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.approach-intro {
    font-size: 1rem;
    color: #6b7280;
    margin: 0.75rem 0 0;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.approach-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.approach-card:hover {
    border-color: #ffcab8;
    box-shadow: 0 8px 24px rgba(255, 122, 61, 0.08);
    transform: translateY(-4px);
}

.approach-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fff5f2 0%, #ffe8dd 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    padding: 4px;
}

.approach-card-icon svg {
    width: 28px;
    height: 28px;
    stroke: #ff7a3d;
    flex-shrink: 0;
}

.approach-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.75rem;
}

.approach-card p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.approach-highlight {
    grid-column: span 3;
    background: linear-gradient(135deg, #ff7a3d 0%, #ff9b82 100%);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    color: #ffffff;
}

.approach-highlight-number {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    opacity: 0.95;
}

.approach-highlight-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.approach-highlight-desc {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Journey Section */
.journey-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.journey-container {
    max-width: 900px;
    margin: 0 auto;
}

.journey-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.journey-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.journey-step {
    background: #ffffff;
    border: 1.5px solid #f0f0f0;
    border-radius: 14px;
    padding: 1.75rem 2rem;
    display: flex;
    gap: 1.75rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.journey-step:hover {
    border-color: #ff7a3d;
    box-shadow: 0 4px 16px rgba(255, 122, 61, 0.08);
}

.journey-step-number {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #ff7a3d 0%, #ff9b82 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 800;
    color: #ffffff;
    flex-shrink: 0;
}

.journey-step-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.5rem;
}

.journey-step-content p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.journey-cta {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border-radius: 16px;
    padding: 2.25rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.journey-cta-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.35rem;
}

.journey-cta-text p {
    font-size: 1rem;
    color: #d1d5db;
    margin: 0;
}

.journey-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #ff7a3d;
    color: #ffffff;
    padding: 0.85rem 1.75rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.journey-cta-button:hover {
    background: #ff9b82;
    transform: translateX(4px);
}

.journey-cta-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.25s ease;
}

.journey-cta-button:hover svg {
    transform: translateX(3px);
}

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* Sector Cards Section */
.sectoren-grid-section {
    padding: 5rem 2rem 6rem;
    background: linear-gradient(180deg, #ffffff 0%, #faf9f8 100%);
}

.sectoren-grid-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sectoren-grid-header {
    text-align: center;
    margin-bottom: 3rem;
}

.sectoren-grid-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

.sectoren-grid-header p {
    font-size: 1.1rem;
    color: #6b7280;
    margin: 0;
}

/* Sector Cards Grid */
.sectoren-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.sector-card-link {
    text-decoration: none;
    display: block;
}

.sector-article {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 8px 24px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    text-decoration: none;
    outline: none;
}

a.sector-article:focus {
    outline: none;
}

.sector-article:hover {
    transform: translateY(-6px);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.08),
        0 24px 48px rgba(0, 0, 0, 0.06);
    border-color: #e5e7eb;
}

.sector-article-image {
    position: relative;
    height: 160px;
    overflow: hidden;
    background: #f8fafc;
}

.sector-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.sector-article:hover .sector-article-image img {
    transform: scale(1.05);
}

.sector-article-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 0.35rem 0.75rem;
    background: linear-gradient(135deg, #ff7a3d 0%, #ff9b82 100%);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(255, 122, 61, 0.3);
}

.sector-article-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sector-article-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8dd 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.sector-article-icon svg {
    width: 22px;
    height: 22px;
    stroke: #ff7a3d;
}

.sector-article h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.sector-article p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.55;
    margin: 0 0 1rem;
}

.sector-article-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sector-article-features li {
    padding: 0.3rem 0.65rem;
    background: #f8fafc;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
}

.sector-article-cta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ff7a3d;
    margin-top: auto;
    transition: gap 0.3s ease;
}

.sector-article:hover .sector-article-cta {
    gap: 0.65rem;
}

.sector-article-cta svg {
    width: 16px;
    height: 16px;
    stroke: #ff7a3d;
    transition: transform 0.3s ease;
}

.sector-article:hover .sector-article-cta svg {
    transform: translateX(2px);
}

/* Responsive */
@media (max-width: 1100px) {
    .why-sector-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 900px) {
    .why-sector-content .why-sector-features {
        float: none;
        width: 100%;
        margin-left: 0;
        margin-bottom: 2rem;
    }
}

@media (max-width: 1100px) {
    .sectoren-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .benefits-visual {
        order: -1;
    }

    .research-timeline {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .research-connector {
        display: none;
    }

    .research-step {
        flex: 0 0 calc(50% - 0.75rem);
        max-width: none;
    }

    .text-blocks-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .approach-highlight {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
    }

    .journey-cta {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 968px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #f0f0f0;
        z-index: 100;
    }

    .nav.active {
        display: flex;
    }

    .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid #f5f5f5;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .sectoren-hero {
        padding: 6rem 1.5rem 5rem;
        min-height: auto;
    }

    .hero-bg-shape {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .why-sector-section {
        padding: 4rem 1.5rem;
    }

    .why-sector-header h2 {
        font-size: 1.75rem;
    }

    .research-section {
        padding: 4rem 1.5rem;
    }

    .research-header h2 {
        font-size: 1.75rem;
    }

    .benefits-section {
        padding: 4rem 1.5rem;
    }

    .benefits-content h2 {
        font-size: 1.75rem;
    }

    .text-blocks-section {
        padding: 4rem 1.5rem;
    }

    .approach-section {
        padding: 4rem 1.5rem;
    }

    .approach-header h2 {
        font-size: 1.75rem;
    }

    .journey-section {
        padding: 4rem 1.5rem;
    }

    .journey-header h2 {
        font-size: 1.75rem;
    }

    .sectoren-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .sectoren-hero {
        padding: 5.5rem 2rem 4.5rem;
        min-height: auto;
    }

    .sectoren-hero-content {
        padding: 0 0.5rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 0.875rem;
        margin-bottom: 1rem;
    }

    .hero-badge span {
        font-size: 0.7rem;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
        line-height: 1.6;
    }

    .hero-value-list {
        margin-bottom: 1.5rem;
        gap: 0.5rem;
    }

    .hero-value-item {
        gap: 0.5rem;
    }

    .hero-value-item svg {
        width: 18px;
        height: 18px;
    }

    .hero-value-item span {
        font-size: 0.75rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .btn-hero-dark,
    .btn-hero-light {
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }

    .why-sector-section {
        padding: 3rem 1.5rem;
    }

    .why-sector-container {
        padding: 0 0.5rem;
    }

    .why-sector-header h2 {
        font-size: 1.5rem;
    }

    .why-sector-main .lead-text {
        font-size: 1rem;
    }

    .why-sector-main h2 {
        margin-top: 0.75rem !important;
        margin-bottom: 1.25rem !important;
    }

    .why-sector-main .lead-text {
        margin-bottom: 0.65rem;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .research-section {
        padding: 3rem 2rem;
    }

    .research-header h2 {
        font-size: 1.5rem;
    }

    .research-step {
        flex: 0 0 100%;
    }

    .benefits-section {
        padding: 3rem 2rem;
    }

    .benefits-content h2 {
        font-size: 1.5rem;
    }

    .benefits-image-wrapper img {
        height: 240px;
    }

    .text-blocks-section {
        padding: 3rem 2rem;
    }

    .text-blocks-container {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .text-block {
        padding: 1.5rem;
    }

    .approach-section {
        padding: 3rem 2rem;
    }

    .approach-header h2 {
        font-size: 1.5rem;
    }

    .approach-card {
        padding: 1.5rem;
    }

    .approach-highlight {
        padding: 1.75rem;
    }

    .approach-highlight-number {
        font-size: 2.5rem;
    }

    .journey-section {
        padding: 3rem 2rem;
    }

    .journey-header h2 {
        font-size: 1.5rem;
    }

    .journey-step {
        padding: 1.5rem;
        gap: 1.25rem;
    }

    .journey-cta {
        padding: 1.75rem;
    }

    .journey-cta-text h3 {
        font-size: 1.15rem;
    }

    .sectoren-grid-section {
        padding: 3rem 2rem 4rem;
    }

    .sectoren-grid-header h2 {
        font-size: 1.5rem;
    }

    .sectoren-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .sector-article {
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        border: 1px solid #e5e7eb;
    }

    .sector-article:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    }

    .sector-article-image {
        height: 140px;
        background: #ffffff;
    }

    .sector-article-image img {
        object-position: center;
    }

    .sector-article-content {
        padding: 1.25rem;
        background: #ffffff;
    }

    .sector-article-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.75rem;
    }

    .sector-article-icon svg {
        width: 20px;
        height: 20px;
    }

    .sector-article h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .sector-article p {
        font-size: 0.8125rem;
        margin-bottom: 0.75rem;
        line-height: 1.5;
    }

    .sector-article-features {
        margin-bottom: 1rem;
    }

    .sector-article-features li {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }

    .sector-article-cta {
        font-size: 0.8125rem;
    }

    .sector-article-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }
  /* Laat de extra tekst onder beide kolommen vallen */


}
