﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-700: #552c85;
    --primary-600: #6d37a5;
    --primary-500: #8c50c4;
    --primary-300: #d7c0ef;
    --accent-rose: #ffb4d3;
    --accent-sage: #d9f2e9;
    --accent-sun: #fde4b0;
    --text-dark: #1a1a1a;
    --text-medium: #4a4f5d;
    --text-light: #6b7280;
    --surface: #f8f7fb;
    --surface-alt: #ffffff;
    --surface-dark: #111827;
    --border-soft: rgba(26, 26, 26, 0.08);
    --shadow-soft: 0 25px 60px rgba(17, 24, 39, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--surface);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.75rem;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
}

nav {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

nav .container {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav .logo {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--primary-600);
    text-decoration: none;
    letter-spacing: 0.04em;
}

nav .logo img {
    height: 40px;
    width: auto;
    display: block;
}

nav .nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
    font-size: 0.95rem;
}

nav .nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.2s ease;
}

nav .nav-links a:hover {
    color: var(--primary-600);
}

nav .cta-button {
    background: var(--primary-600);
    color: #fff !important;
    padding: 0.6rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s ease, background 0.2s ease;
}

nav .cta-button:hover {
    transform: translateY(-1px);
    background: var(--primary-500);
}

@media (min-width: 768px) {
    nav .nav-links {
        display: flex;
    }
}

main {
    overflow: hidden;
}

section {
    padding: 5rem 0;
}

.section-light {
    background: var(--surface);
}

.section-surface {
    background: var(--surface-alt);
}

/* Blog & Wissensdatenbank */
.kb-page {
    background: #f7f7fb;
}

.knowledge-hero {
    padding: 6rem 0 3rem;
    background: #ffffff;
}

.knowledge-hero .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-top {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.kb-eyebrow {
    background: rgba(109, 55, 165, 0.1);
    color: var(--primary-700);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
}

.kb-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: #f1eef9;
    color: var(--text-dark);
    border-radius: 12px;
    font-size: 0.95rem;
}

.kb-badge .dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.25);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.5fr auto;
    gap: 2rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.25rem, 3.2vw, 3.25rem);
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 720px;
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #f7f7fb;
    border: 1px solid var(--border-soft);
    border-radius: 1rem;
}

.meta-label {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 0.25rem;
}

.meta-value {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
}

@media (max-width: 991px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-meta {
        justify-self: start;
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }
}

@media (max-width: 640px) {
    .hero-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-meta {
        width: 100%;
    }
}

.section-dark {
    background: var(--surface-dark);
    color: #f9fafb;
}

.section-gradient {
    background: radial-gradient(circle at top right, rgba(140, 80, 196, 0.25), rgba(85, 44, 133, 0.95));
    color: #fff;
}

.page-hero {
    padding: 6rem 0 4rem;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.page-hero-copy {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 640px;
    margin: 0 auto;
}

.coming-soon {
    border-radius: 1.5rem;
    border: 1px dashed var(--border-soft);
    padding: 2.5rem;
    text-align: center;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.section-heading h2 {
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-heading p {
    color: var(--text-medium);
    font-size: 1.1rem;
}

.section-dark .section-heading p,
.section-dark .section-heading h2 {
    color: inherit;
}

.eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.section-dark .eyebrow,
.section-gradient .eyebrow {
    color: rgba(255, 255, 255, 0.7);
}

.hero {
    position: relative;
    min-height: calc(100vh - 70px);
    background: #0f1322;
    color: #fff;
    overflow: hidden;
    padding: 0;
}

.hero-image {
    position: absolute;
    min-height: calc(100vh - 70px);
    inset: 0;
    z-index: 0;
    opacity: 0;
    animation: fadeInImage 1.5s ease-in 3s forwards;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    text-align: center;
    padding: 3rem 0 2.5rem;
}

.hero-text-1,
.hero-text-2,
.hero-main {
    opacity: 0;
    animation: fadeIn 1.5s ease-in forwards;
}

.hero-text-1 {
    animation-delay: 0.5s;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.hero-text-2 {
    animation-delay: 2.5s;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    margin-bottom: 2.5rem;
}

.hero-content .container {
    transform: translateY(50px);
}

@media (max-width: 640px) {
    .hero-content .container {
        transform: translateY(30px);
    }
}

.hero-divider {
    width: 140px;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
    margin: 0 auto 2rem;
    opacity: 0;
    animation: fadeIn 1.5s ease-in forwards;
    animation-delay: 5s;
}

.hero-main {
    animation-delay: 2.5s;
    margin-top: 15rem;
}

.hero-main h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: calc(2.25rem + 10px);
    line-height: 1.15;
}

.hero-main .subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    list-style: none;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

.hero-meta li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(255, 255, 255, 0.1);
    color: inherit;
}

.hero .pill {
    background: #ede9fe;
    color: #4b1b7a !important;
}

.cta-primary {
    background: linear-gradient(120deg, var(--primary-600), var(--primary-500));
    color: #fff;
    padding: 0.9rem 2.4rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(109, 55, 165, 0.35);
}

.cta-secondary {
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
}

.card-grid {
    display: grid;
    gap: 1.5rem;
}

.card-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 2rem;
    border: 1px solid var(--border-soft);
    box-shadow: 0 20px 45px rgba(15, 19, 34, 0.04);
}

.card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: rgba(109, 55, 165, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-600);
    margin-bottom: 1rem;
}

.insight-card p {
    color: var(--text-medium);
}

.affirmation {
    margin: 3rem auto 0;
    max-width: 640px;
    text-align: center;
    font-size: 1.35rem;
    color: var(--primary-700);
    font-weight: 500;
}

.why .card {
    background: transparent;
    border: none;
    box-shadow: none;
    text-align: center;
}

.why .card h3,
.why .card p {
    text-align: center;
}

.why .card-icon {
    border-radius: 0.75rem;
    background: transparent;
    border: 2px solid #000;
    color: #000;
}

.highlight-box {
    border-radius: 1.25rem;
    padding: 0;
    background: transparent;
    text-align: center;
    border: none;
    margin: 1.5rem 0;
}

.split-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 992px) {
    .split-layout {
        flex-direction: row;
        align-items: stretch;
    }

    .split-layout.reverse {
        flex-direction: row-reverse;
    }
}

.split-text {
    flex: 1;
    font-size: 1.05rem;
    line-height: 1.8;
}

.split-media {
      flex: 1;
  }

.split-media img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    display: block;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

  .scrollable-media {
      max-height: 520px;
      overflow: auto;
      border-radius: 1.25rem;
      border: 1px solid var(--border-soft);
      box-shadow: none;
      background: #f8f6fb;
      padding: 0.75rem;
  }

.scrollable-media-inner {
    min-width: 100%;
}

.scrollable-media img {
        box-shadow: none;
    }

  .fsp-overview .scrollable-media {
      padding: 0;
  }

  .fsp-overview .scrollable-media-inner {
      min-width: 100%;
      height: 100%;
  }

  .fsp-overview .scrollable-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

.screenshot-shell {
    border-radius: 1.25rem;
    background: transparent;
    min-height: 320px;
    color: var(--text-medium);
    display: flex;
    align-items: stretch;
    justify-content: center;
    text-align: center;
    padding: 0;
    box-shadow: none;
}

.feedback-slider {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.feedback-slider-window {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 0.5rem;
    position: relative;
}

  .feedback-slider input {
      display: none;
  }

/* Medisim section layout: text above, image below */
.medisim-experience .split-layout {
    flex-direction: column;
}

.medisim-experience .split-media,
.medisim-experience .video-shell {
    width: 100%;
}

.feedback-slider-track {
    display: flex;
    width: 300%;
    transition: transform 0.45s ease;
}

.feedback-slide {
    flex: 0 0 33.333%;
    width: 33.333%;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback-slide img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 1rem;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.35);
}

.feedback-slider-controls {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.feedback-slider-controls label {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.6);   /* darker base */
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.feedback-slider-controls label:hover {
    transform: scale(1.1);
    background: rgba(15, 23, 42, 0.9);   /* darker on hover */
}

#feedback-slide-1:checked ~ .feedback-slider-window .feedback-slider-track {
    transform: translateX(0);
}

#feedback-slide-2:checked ~ .feedback-slider-window .feedback-slider-track {
    transform: translateX(-33.333%);
}

#feedback-slide-3:checked ~ .feedback-slider-window .feedback-slider-track {
    transform: translateX(-66.666%);
}

#feedback-slide-1:checked ~ .feedback-slider-controls label[for="feedback-slide-1"],
#feedback-slide-2:checked ~ .feedback-slider-controls label[for="feedback-slide-2"],
#feedback-slide-3:checked ~ .feedback-slider-controls label[for="feedback-slide-3"] {
    background: #111827;                 /* active: very dark */
    transform: scale(1.2);
}

.product-experience .experience-layout {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 992px) {
    .product-experience .experience-layout {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: stretch;
    }
}

.video-shell {
    position: relative;
    border-radius: 1.5rem;
    height: 520px;
    background: linear-gradient(145deg, #111827, #1f2937);
    overflow: hidden;
    box-shadow: none;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 992px) {
    .video-shell {
        height: 620px;
    }
}

.video-shell span {
    position: absolute;
    text-align: center;
    padding: 1rem;
    font-size: 1rem;
}

.video-shell .video-placeholder-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.65);
}

.soft-panel {
    background: transparent;
    border-radius: 1.5rem;
    padding: 0;
    border: none;
}

.soft-panel p {
    color: var(--text-medium);
}

.accordion-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-card {
    border-radius: 0.5rem;
    background: transparent;
    border: none;
    padding: 1.25rem 0;
    box-shadow: none;
}

.accordion-card summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.accordion-card summary::-webkit-details-marker {
    display: none;
}

.accordion-card svg {
    width: 1rem;
    height: 1rem;
    color: var(--text-light);
    transition: transform 0.2s ease;
}

.accordion-card[open] svg {
    transform: rotate(90deg);
    color: var(--primary-600);
}

.accordion-body {
    max-height: 0;
    opacity: 0;
    transform: translateY(-4px);
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
}

.accordion-card.open .accordion-body {
    opacity: 1;
    transform: translateY(0);
}

.micro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.micro-card {
    border-radius: 1rem;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid var(--border-soft);
}

.micro-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-600);
}

.micro-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.expertise-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .expertise-grid {
        grid-template-columns: 1fr 1fr;
        align-items: flex-start;
    }
}

.expertise-media img {
    border-radius: 1.25rem;
}

.photo-caption {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.expertise-copy h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.soft-list {
    list-style: none;
    margin-top: 1.5rem;
}

.soft-list li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: inherit;
}

.soft-list li span {
    color: var(--primary-300);
    font-weight: 700;
}

.section-dark .card,
.section-dark .soft-panel {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.feature-hero {
    border-radius: 1.5rem;
    background: linear-gradient(120deg, rgba(109, 55, 165, 0.1), rgba(255, 180, 211, 0.25));
    padding: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.feature-hero p {
    color: var(--text-medium);
}

.feature-hero h2 {
    line-height: 1.25;
}

.cta-inline {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.feature-cards .feature-card {
    border-radius: 1.25rem;
    background: #fff;
    padding: 2rem;
    border: 1px solid var(--border-soft);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.three-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.three-column-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 1.25rem;
    background: rgba(247, 247, 251, 0.85);
}

.icon-circle {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: rgba(109, 55, 165, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-600);
}

.fsp-card-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 900px) {
    .fsp-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fsp-card {
    border-radius: 1.5rem;
    background: #fff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 25px 45px rgba(17, 24, 39, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.fsp-card-media {
    background: #dfe4ef;
    height: 160px;
    overflow: hidden;
}

.fsp-card-media .placeholder {
    height: 100%;
}

.fsp-card-content {
    padding: 1.75rem;
    flex: 1;
}

.fsp-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.fsp-card-content p {
    color: var(--text-medium);
}

.emotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.emotion-card {
    padding: 1rem 1.25rem;
    border-radius: 0.9rem;
    background: #fff;
    text-align: center;
    font-weight: 500;
    color: var(--text-medium);
    border: 1px solid var(--border-soft);
}

.testimonial-grid {
    display: grid;
    gap: 2rem;
}

.testimonial-intro {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 2rem;
    color: var(--text-medium);
}

@media (min-width: 900px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    text-align: left;
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.quote-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--primary-600);
    margin-bottom: 1rem;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-top: 0.5rem;
}

.author-meta p {
    margin: 0;
}

.author-meta span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.team-mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.team-tile {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    min-height: 180px;
    background: #d2d6e2;
}

.team-tile span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(17, 24, 39, 0.68);
    color: #fff;
    padding: 0.6rem;
    font-size: 0.9rem;
    text-align: center;
}

/* Main page - Horizontal scrolling gallery with circular photos */
.advisory-gallery {
    overflow-x: auto;
    padding-bottom: 1rem;
}

.advisory-gallery-inner {
    display: flex;
    gap: 1.5rem;
    min-width: max-content;
}

.advisory-gallery-card {
    width: 250px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.5rem;
    border: 1px solid var(--border-soft);
    text-align: center;
}

.advisory-gallery-photo {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    margin: 0 auto 1rem;
    overflow: hidden;
    background: var(--surface);
}

.advisory-gallery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.advisory-gallery-card .specialty {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-600);
    margin-bottom: 0.35rem;
}

.advisory-gallery-card .description {
    font-size: 0.9rem;
    color: var(--text-light);
}

.text-link {
    color: var(--accent-rose);
    text-decoration: none;
    font-weight: 600;
}

.text-link:hover {
    text-decoration: underline;
}

.case-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.case-card {
    padding: 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid var(--border-soft);
    background: #fff;
    overflow: hidden;
    position: relative;
}

.case-card h3 {
    margin-bottom: 0.5rem;
}

.case-meta {
    margin-top: 0.75rem;
    color: var(--primary-600);
    font-weight: 600;
}

.note-card {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid var(--border-soft);
    background: rgba(247, 247, 251, 0.9);
}

.case-grid + .note-card {
    margin-top: 2rem;
}

.card-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.workflow-steps {
    display: grid;
    gap: 1.5rem;
    margin-top: 2.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .workflow-steps {
        grid-template-columns: 1fr;
    }
}

.workflow-card {
    position: relative;
    padding: 1.75rem 1.75rem 1.5rem 1.75rem;
    border-radius: 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

.workflow-media {
    margin-top: 1.25rem;
}

.workflow-media img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.workflow-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.phase-section {
    margin-top: 3rem;
    padding: 2.25rem 2rem;
    border-radius: 20px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
}

@media (min-width: 1024px) {
    .phase-section {
        margin-top: 3.5rem;
        padding: 2.5rem 2.5rem;
    }
}

.phase-section-heading {
    margin-bottom: 1.75rem;
}

.phase-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: #6b7280;
}

.phase-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .phase-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.phase-card {
    padding: 1.5rem 1.5rem 1.75rem 1.5rem;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

.phase-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.phase-note {
    margin-top: 1.75rem;
    font-size: 0.95rem;
    color: #4b5563;
}

.feedback-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feedback-card {
    border-radius: 1.25rem;
    border: 1px solid var(--border-soft);
    background: #fff;
    padding: 1.5rem;
}

.feedback-list {
    list-style: disc;
    margin-left: 1.25rem;
    margin-bottom: 1rem;
}


.team-roles {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.team.section-dark {
    background: #111827;
}

.team.section-dark .section-heading p {
    color: rgba(255, 255, 255, 0.7);
}

.role-card {
    background: transparent;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--border-soft);
    box-shadow: none;
}

.role-card h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.role-card ul {
    list-style: none;
    color: var(--text-medium);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.role-card ul li span {
    color: var(--primary-600);
    font-weight: 600;
    margin-right: 0.35rem;
}

.team.section-dark .role-card {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.35);
    color: #f9fafb;
    box-shadow: none;
}

.team.section-dark .role-card h4 {
    color: #fff;
}

.team.section-dark .role-card ul {
    color: rgba(255, 255, 255, 0.95);
}

.team.section-dark .role-card ul li span {
    color: var(--primary-300);
}

.role-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    color: var(--primary-600);
    flex-shrink: 0;
    background: transparent;
}

.team.section-dark .role-icon {
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

.role-card summary {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    cursor: pointer;
}

.role-card summary::-webkit-details-marker {
    display: none;
}

.role-toggle {
    width: 1rem;
    height: 1rem;
    color: currentColor;
    margin-left: auto;
    transition: transform 0.2s ease;
}

.role-card[open] .role-toggle {
    transform: rotate(90deg);
}

.role-content {
    flex: 1;
    margin-top: 1rem;
}

.contact-card {
    margin-top: 3rem;
    padding: 2rem;
    border-radius: 1.5rem;
    background: rgba(247, 247, 251, 0.9);
    border: 1px solid var(--border-soft);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-card a {
    color: var(--primary-600);
    text-decoration: none;
}

.section-solid {
    background: var(--primary-700);
    color: #ffffff;
}

.section-solid .section-heading h2,
.section-solid .section-heading p,
.section-solid .eyebrow {
    color: #ffffff;
}

.early-access-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
    justify-items: center;
}

.benefit {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding: 1.5rem;
    border-radius: 1rem;
    border: none;
    background: transparent;
    color: #fff;
}

.benefit h3 {
    margin-bottom: 0.35rem;
    text-align: center;
}

.benefit p {
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
}

.benefit-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.benefit-icon svg {
    stroke: #ffffff;
    color: #ffffff;
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-group {
        flex-direction: row;
        justify-content: center;
    }
}

footer {
    background: #090b14;
    color: rgba(255, 255, 255, 0.85);
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section h4 {
    margin-bottom: 0.75rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li,
.footer-section a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-bottom {
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.placeholder {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@keyframes fadeInImage {
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
.hover-card {
    padding: 0;
    border: none;
}

.case-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.case-overlay {
    padding: 1.5rem;
    background: #fff;
}

.hover-card:hover .case-overlay {
    background: rgba(109, 55, 165, 0.08);
}

.lifestory-card {
    margin-top: 3rem;
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: none;
    background: var(--primary-600);
    color: #fff;
}

.note {
    margin-top: 1rem;
    color: var(--primary-700);
    font-weight: 600;
}
.fsp-hero {
    padding: 5rem 0;
    background: #0b1020;
}

.fsp-hero h1 {
    font-size: clamp(3rem, 5vw, 4rem);
    color: #fff;
}

.hero-title-block {
    max-width: 960px;
    margin: 0;
    text-align: left;
}


.fsp-overview .intro-text {
    max-width: 820px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
}

.fsp-overview .intro-text p {
    margin-bottom: 1rem;
}

.fsp-overview .hero-subtitle {
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.fsp-overview .intro-text .highlight {
    font-weight: 600;
    color: var(--primary-600);
}
.lifestory-card .soft-list li,
.lifestory-card p {
    color: rgba(255, 255, 255, 0.9);
}

.lifestory-card .soft-list li span {
    color: rgba(255, 255, 255, 0.9);
}

.lifestory-card .note {
    color: #fff;
}
.section-heading.align-left {
    text-align: left;
    margin-left: 0;
}

.section-heading.align-left p {
    margin-left: 0;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    color: var(--text-medium);
    font-size: 1.05rem;
    margin-top: 1.5rem;
}

.founder-layout {
    display: grid;
    gap: 3rem;
}

@media (min-width: 992px) {
    .founder-layout {
        grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
        align-items: start;
    }
}

.founder-intro h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 1rem;
}

.founder-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.pill-button {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.pill-button.primary {
    background: var(--primary-600);
    color: #fff;
    border-color: var(--primary-600);
}

.pill-button.primary:hover {
    background: var(--primary-700);
    border-color: var(--primary-700);
}

.pill-button.light {
    background: #f5f4f7;
    color: var(--text-strong);
    border-color: #e5e4ea;
}

  .pill-button.light:hover {
      background: #ebe9f1;
  }

  .pill-button.light.violet-text {
      color: var(--primary-700);
  }

.founder-grid {
    display: grid;
    gap: 2rem 1.5rem;
}

@media (min-width: 768px) {
    .founder-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.founder-card.minimal {
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.founder-card.minimal h3 {
    margin: 0;
    font-size: 1.2rem;
}

.founder-card.minimal .role {
    margin: 0;
    color: var(--primary-700);
    font-weight: 700;
}

.founder-bio {
    margin: 0;
    color: var(--text-medium);
    line-height: 1.6;
    max-width: 260px;
}

.founder-photo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #f0eef5;
    overflow: hidden;
    border: 2px solid #edeaf4;
    margin-bottom: 0.25rem;
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.partner-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .partner-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.partner-card.clean {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: flex-start;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}

.partner-icon.clean {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    border: 1px solid #dcd9e5;
    display: grid;
    place-items: center;
    font-weight: 700;
    color: var(--primary-700);
    background: #f9f8fc;
}

.partner-logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-card.clean ul {
    margin-top: 0.75rem;
    padding-left: 1.1rem;
    color: var(--text-medium);
}

.about-note {
    margin-top: 2rem;
    background: var(--surface);
    border-radius: 1.25rem;
    padding: 1.5rem;
    border: 1px solid var(--border-soft);
}

.advisory-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

/* Über uns page - Vertical cards with full-height rectangular image */
.advisory-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.advisory-cards .advisory-card {
    display: flex;
    background: #fff;
    border-radius: 1.5rem;
    border: 1px solid var(--border-soft);
    box-shadow: 0 18px 40px rgba(15, 19, 34, 0.06);
    width: 100%;
    overflow: hidden;
    align-items: stretch;
}

.advisory-cards .advisory-photo {
    width: 220px;
    flex-shrink: 0;
    display: flex;
    align-items: stretch;
}

.advisory-cards .advisory-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.advisory-card > div:last-child {
    padding: 1.75rem;
}

.advisory-name {
    font-weight: 600;
    margin: 0;
    font-size: 1.15rem;
    text-align: left;
}

.advisory-affiliation {
    margin: 0.2rem 0;
    color: var(--text-medium);
    font-size: 0.95rem;
    text-align: left;
}

.advisory-specialty {
    margin: 0;
    text-align: left;
}

.advisory-role {
    color: var(--primary-600);
    font-weight: 600;
    margin: 0.4rem 0;
    text-align: left;
}

.advisory-quote {
    color: var(--text-medium);
    font-style: italic;
    margin: 0.35rem 0 0;
    text-align: left;
}

.advisory-list,
.benefits-list {
    margin: 1.5rem 0;
    padding-left: 1.25rem;
    color: var(--text-medium);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 1.05rem;
}

/* Blog / Wissensdatenbank Styles */
.blog-overview {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .blog-overview {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-preview-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(178, 99, 224, 0.3);
    padding: 2rem;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.featured-article {
    padding: 2.5rem 0 4.5rem;
}

.featured-card {
    border-radius: 28px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 35px 70px rgba(15, 23, 42, 0.12);
    display: flex;
    flex-direction: column;
}

.featured-media {
    margin: 0;
    line-height: 0;
}

.featured-media img {
    width: 100%;
    height: clamp(260px, 45vw, 460px);
    object-fit: cover;
}

.featured-details {
    padding: 2.5rem 2.75rem 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.featured-details h2 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin: 0;
    line-height: 1.2;
    color: var(--text-dark);
}

.featured-byline {
    font-weight: 600;
    color: var(--primary-700);
    font-size: 0.95rem;
}

.featured-summary {
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 0.25rem;
}

.featured-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    color: var(--text-light);
    font-weight: 500;
}

.featured-link {
    color: var(--primary-600);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.2s ease;
}

.featured-link span {
    font-size: 1.15rem;
}

.featured-link:hover {
    color: var(--primary-500);
}

.tags-inline {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.kb-grid-section {
    padding: 1rem 0 5rem;
}

.kb-toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.kb-toolbar h3 {
    margin-bottom: 0.35rem;
    font-size: 1.4rem;
}

.kb-toolbar p {
    color: var(--text-medium);
    max-width: 520px;
}

.kb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .kb-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.kb-card {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.link-card {
    cursor: pointer;
}

.kb-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
    border-color: rgba(109, 55, 165, 0.25);
}

.kb-card-media {
    margin: 0;
}

.kb-card-media img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.kb-card-body {
    padding: 1.5rem 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    height: 100%;
}

.kb-card-meta {
    font-size: 0.95rem;
    color: var(--text-medium);
}

.kb-card-meta span {
    margin: 0 0.3rem;
    color: var(--text-light);
}

.kb-card h4 {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 700;
}

.kb-card h4,
.kb-card h4 a {
    color: var(--text-dark);
}

.kb-card h4 a {
    text-decoration: none;
}

.kb-card h4 a:hover,
.kb-card h4:hover {
    color: var(--primary-700);
}

.kb-card .excerpt {
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

.kb-pagination {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.pagination-link {
    color: var(--primary-700);
    font-weight: 600;
    text-decoration: none;
    padding: 0.65rem 1rem;
}

.pagination-link.disabled {
    color: var(--text-medium);
    pointer-events: none;
}

.pagination-meta {
    display: flex;
    gap: 0.6rem;
    color: var(--text-medium);
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: #f1eef9;
    color: var(--primary-700);
    font-weight: 600;
    font-size: 0.95rem;
}

.chip.ghost {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    color: var(--text-dark);
    font-weight: 500;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.8rem;
    background: #ede9fe;
    color: var(--primary-800);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pill.ghost {
    background: #f8fafc;
    color: var(--text-dark);
    border: 1px solid var(--border-soft);
}

.kb-grid-section .meta,
.featured-footer span {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.kb-details {
    padding: 4rem 0 5rem;
    background: #ffffff;
}

.blog-articles {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 2.25rem;
}

.blog-article {
    background: #f9fafb;
    border-radius: 1.25rem;
    padding: 2rem;
    border: 1px solid var(--border-soft);
}

.blog-article h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.blog-content {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.blog-content h3 {
    margin-top: 1.75rem;
    font-size: 1.25rem;
    color: var(--primary-700);
}

.blog-content h4 {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.blog-content p {
    margin-bottom: 1rem;
}

.blog-quote {
    border-left: 4px solid var(--primary-600);
    padding: 0.75rem 1rem;
    background: #ede9fe;
    border-radius: 8px;
    font-style: italic;
}

.blog-list {
    margin: 1rem 0;
    padding-left: 1.25rem;
}

.blog-highlight {
    background: #f1eef9;
    border-left: 4px solid var(--primary-600);
    padding: 0.9rem 1rem;
    border-radius: 10px;
    font-weight: 600;
}

/* Article detail */
.article-page {
    background: var(--surface);
}

.article-hero {
    padding: 4rem 0 2rem;
}

.article-hero-card {
    background: #ffffff;
    border-radius: 32px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
    display: grid;
    gap: 2rem;
    overflow: hidden;
}

.article-hero-media {
    margin: 0;
}

.article-hero-media img {
    width: 100%;
    height: clamp(240px, 45vw, 480px);
    object-fit: cover;
}

.article-hero-content {
    padding: 2.5rem 2.5rem 2.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.article-breadcrumb {
    color: var(--primary-600);
    font-weight: 600;
    text-decoration: none;
}

.article-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.article-meta-dot {
    color: var(--text-light);
}

.article-hero-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin: 0.2rem 0;
}

.article-summary {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.7;
}

.article-body {
    background: #ffffff;
    padding: 3rem 0 4rem;
}

.article-content .blog-article {
    margin-bottom: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.article-cta {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-start;
}

.article-related {
    padding: 4rem 0 5rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.related-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 18px;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border-soft);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

.related-card-image {
    height: 160px;
    background-size: cover;
    background-position: center;
}

.related-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.related-card-body h4 {
    font-size: 1.2rem;
}

.related-card-body p {
    margin: 0;
    color: var(--text-medium);
}

@media (min-width: 960px) {
    .article-hero-card {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
        align-items: center;
    }

    .article-hero-media img {
        height: 100%;
    }
}

@media (max-width: 767px) {
    .featured-details {
        padding: 1.75rem 1.75rem 1.5rem;
    }

    .featured-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .kb-toolbar {
        flex-direction: column;
    }
}

.benefits-list {
    list-style: none;
    padding-left: 0;
}

.benefits-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.5rem;
    border: 1px solid var(--border-soft);
}

.benefit-title {
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.benefits-columns {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .benefits-columns {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2rem;
    }
}

.benefits-columns > div {
    text-align: left;
}

/* Early Access Page Styles */
.early-access-hero {
    background: linear-gradient(135deg, #1a0d2e 0%, #2d1b4e 100%);
    padding: 6rem 0;
}

.early-access-hero h1 {
    color: #ffffff;
}

.early-access-intro {
    padding: 5rem 0;
}

.early-access-intro .intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.early-access-intro .intro-text strong {
    color: var(--primary-600);
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 1px solid var(--border-soft);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    position: relative;
}

.benefit-number {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-600);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.benefit-note {
    font-style: italic;
    color: var(--text-light);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-soft);
}

.early-access-countdown {
    background: linear-gradient(135deg, #1a0d2e 0%, #2d1b4e 100%);
    padding: 5rem 0;
    text-align: center;
}

.early-access-countdown h2 {
    color: #ffffff;
    margin-bottom: 3rem;
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.countdown-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 767px) {
    .countdown-value {
        font-size: 2.5rem;
    }
    
    .countdown-item {
        min-width: 80px;
    }
}

.early-access-form {
    padding: 5rem 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    margin-top: 3rem;
}

.early-access-form-element {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 3rem;
    border: 1px solid var(--border-soft);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-size: 1rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-soft);
    border-radius: 0.75rem;
    font-size: 1rem;
    font-family: inherit;
    background: #ffffff;
    color: var(--text-dark);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-600);
    box-shadow: 0 0 0 3px rgba(109, 55, 165, 0.1);
}

.checkbox-group {
    margin-bottom: 2.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    margin-top: 0.15rem;
    cursor: pointer;
    accent-color: var(--primary-600);
}

.checkbox-label span {
    color: var(--text-dark);
    line-height: 1.6;
}

.cta-button-large {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--primary-600);
    color: #ffffff;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    font-family: inherit;
}

.cta-button-large:hover {
    background: var(--primary-700);
    transform: translateY(-2px);
}

.cta-button-large:active {
    transform: translateY(0);
}

.form-note {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #1a0d2e 0%, #2d1b4e 100%);
    padding: 6rem 0;
}

.contact-hero h1 {
    color: #ffffff;
}

.contact-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
    margin-top: 1rem;
}

.contact-form-section {
    padding: 5rem 0;
}

.contact-form {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 3rem;
    border: 1px solid var(--border-soft);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-soft);
    border-radius: 0.75rem;
    font-size: 1rem;
    font-family: inherit;
    background: #ffffff;
    color: var(--text-dark);
    transition: border-color 0.2s, box-shadow 0.2s;
    resize: vertical;
    min-height: 150px;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-600);
    box-shadow: 0 0 0 3px rgba(109, 55, 165, 0.1);
}

.contact-info {
    padding: 5rem 0;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .contact-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-item {
    text-align: center;
}

.contact-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-medium);
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--primary-600);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: var(--primary-700);
    text-decoration: underline;
}
