/* Font Declarations */
@font-face {
    font-family: 'Pangea';
    src: url('../assets/fonts/Pangea-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Pangea';
    src: url('../assets/fonts/Pangea-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'PangeaText';
    src: url('../assets/fonts/PangeaText-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'PangeaText';
    src: url('../assets/fonts/PangeaText-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

/* Variables */
:root {
    --bg-color: #FAFAFA;
    --text-color: #0F0F0F;
    --btn-bg: #F3F3F3;
    --btn-hover: #EAEAEA;
    --font-heading: 'Pangea', sans-serif;
    --font-body: 'PangeaText', sans-serif;
    --container-max: 1320px;
    --container-padding: 24px;
    --color-primary: #CAFF33;
    --btn-accent: #CAFF33;
    --btn-accent-hover: #BFFF00;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Header */
.site-header {
    padding: 24px 0;
    position: sticky;
    top: 0;
    background: var(--bg-color);
    /* Ensure opaque background if sticky */
    z-index: 100;
}

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

.brand-logo img {
    height: 32px;
    /* Adjusted to match visual weight */
    width: auto;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 48px;
}

.nav-list {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    font-size: 0.9375rem;
    font-weight: 500;
    position: relative;
    /* Context for dropdown */
    height: 100%;
    /* display: flex; removed to avoid flex child behavior for absolute dropdown if buggy */
    display: inline-flex;
    /* improved */
    align-items: center;
}

.nav-item a {
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
    height: 100%;
    /* fill height */
}

.nav-item a:hover {
    color: var(--text-color);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #FFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    padding: 8px 0;

    /* Hiding mechanism */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;

    z-index: 1000;
    /* Higher z-index */
    list-style: none;
    pointer-events: none;
    /* Prevent interaction when hidden */
    display: block;
    /* Force block */
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}



.dropdown-menu li {
    display: block;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    color: var(--text-color);
    font-size: 0.9rem;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background-color: #F5F5F7;
    color: var(--text-color);
    /* Keep text dark */
}

/* Removed empty ruleset */

/* Header CTA */
.btn-header {
    background-color: var(--btn-bg);
    padding: 4px 16px 4px 4px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.btn-header:hover {
    background-color: var(--btn-hover);
}

.btn-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

/* Hero Section */
.hero-section {
    padding: 140px 0 100px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    /* Slight bias to left for 'Erfolgreiche' */
    gap: 60px;
    align-items: flex-start;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 600;
    /* Pangea SemiBold */
    font-size: 5rem;
    /* ~80px */
    letter-spacing: 0.05em;
    /* Slight spacing observed */
    line-height: 1.1;
    text-transform: capitalize;
    /* Ensure visually correct casing if needed, but text is mixed */
    color: #000;
}

/* Fix for specific letter spacing look */
.hero-title {
    letter-spacing: 0.04em;
}

.hero-col-right {
    padding-top: 10px;
    /* Optical alignment with top line of P */
    max-width: 520px;
}

.hero-text {
    font-size: 1.25rem;
    /* ~20px */
    line-height: 1.6;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.btn-discover {
    background-color: var(--btn-bg);
    color: var(--text-color);
    padding: 16px 32px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.2s ease;
}

.btn-discover:hover {
    background-color: var(--btn-hover);
}

.btn-discover svg {
    width: 14px;
    height: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .container-header {
        flex-wrap: wrap;
    }

    .nav-list {
        display: none;
        /* Hide nav for simple mobile version for now, or stack */
        /* For pixel perfect desktop, mobile behavior is secondary but must exist */
    }

    /* Simple Mobile Menu Placeholder */
    .brand-logo {
        flex-grow: 1;
    }

    .header-cta {
        display: none;
        /* Hide CTA on small screens or adjust */
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }

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

    .hero-text {
        font-size: 1.1rem;
    }
}

/* Challenges Section */
.challenges-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--bg-color);
}

.section-header-wrap {
    margin-bottom: 80px;
    max-width: 800px;
}

.section-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--text-color);
}

.section-label svg {
    margin-top: -2px;
}

.section-headline {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 48px;
    row-gap: 80px;
}

.challenge-card {
    display: flex;
    flex-direction: column;
}

.challenge-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: var(--text-color);
}

.challenge-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
    /* Ensure icons look crisp */
}

.challenge-line {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    /* Subtle divider */
    margin-bottom: 24px;
}

.challenge-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.4;
    min-height: 3.2em;
    /* Align cards if titles span 2 lines */
}

.challenge-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(15, 15, 15, 0.8);
}

@media (max-width: 1024px) {
    .challenges-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 32px;
        row-gap: 60px;
    }

    .section-headline {
        font-size: 2.8rem;
    }
}

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

    .challenges-section {
        padding: 60px 0;
    }

    .section-headline {
        font-size: 2.2rem;
    }

    .challenge-title {
        min-height: auto;
    }
}

/* Vision Section */
.vision-section {
    background-color: #110F11;
    color: #FFFFFF;
    padding: 160px 0;
    display: flex;
    align-items: center;
}

.container-vision {
    max-width: 960px;
    /* Constrain width for readability as per screenshot */
}

.vision-text {
    font-family: var(--font-heading);
    font-size: 3rem;
    /* Large display size ~48px */
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: #F8F8F8;
    /* Soft white */
}

@media (max-width: 1024px) {
    .vision-section {
        padding: 120px 0;
    }

    .vision-text {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .vision-section {
        padding: 80px 0;
    }

    .vision-text {
        font-size: 1.8rem;
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    overflow: hidden;
    /* For large image handling */
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-col-left {
    position: relative;
}

.about-portrait {
    width: 100%;
    border-radius: 12px;
    /* Soft rounding */
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.about-col-right {
    padding-left: 20px;
}

.about-headline {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 40px;
    color: #000;
    letter-spacing: -0.02em;
}

.social-icons {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.social-link {
    width: 32px;
    height: 32px;
    color: #000;
    transition: color 0.2s ease, transform 0.2s ease;
}

.social-link svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.social-link:hover {
    color: #555;
    transform: translateY(-2px);
}

.about-text-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #333;
}

.btn-profile {
    display: inline-block;
    background-color: var(--btn-bg);
    color: var(--text-color);
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    margin-top: 16px;
    transition: background-color 0.2s ease;
}

.btn-profile:hover {
    background-color: var(--btn-hover);
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-col-right {
        padding-left: 0;
    }

    .about-headline {
        font-size: 2.5rem;
    }

    .about-portrait {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 48px;
    row-gap: 80px;
    margin-bottom: 80px;
}

.benefit-card {
    display: flex;
    flex-direction: column;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: var(--text-color);
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.2;
    /* Slightly thinner for elegance */
}

.benefit-line {
    width: 100%;
    height: 1px;
    background-color: #000;
    /* Solid black line as per screenshot design */
    margin-bottom: 24px;
}

.benefit-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.4;
    min-height: 3.2em;
}

.benefit-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(15, 15, 15, 0.8);
}

.benefits-cta {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

/* New Button Style - Lime */
/* Variables moved to top :root */

.btn-primary {
    background-color: var(--btn-accent);
    color: #000;
    padding: 20px 48px;
    /* Large button */
    border-radius: 100px;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.2s ease, background-color 0.2s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background-color: var(--btn-accent-hover);
    transform: scale(1.02);
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 32px;
        row-gap: 60px;
    }
}

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

    .benefits-section {
        padding: 60px 0;
    }

    .btn-primary {
        width: 100%;
        padding: 16px 24px;
    }
}

/* Process Section */
.process-section {
    padding: 120px 0;
    background-color: #FAFAFA;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 60px;
    row-gap: 80px;
}

.process-card {
    display: flex;
    flex-direction: column;
}

.process-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.process-number {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.process-line {
    flex-grow: 1;
    height: 1px;
    background-color: #000;
}

.process-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 32px;
    color: var(--text-color);
}

.process-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1;
    /* Thin and elegant line thickness */
}

.process-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.3;
}

.process-text {
    font-size: 1.125rem;
    /* Slightly larger text ~18px */
    line-height: 1.6;
    color: rgba(15, 15, 15, 0.7);
    max-width: 480px;
}

@media (max-width: 1024px) {
    .process-grid {
        gap: 48px;
    }

    .process-text {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        row-gap: 60px;
    }

    .process-section {
        padding: 80px 0;
    }
}

/* Projects Section */
.projects-section {
    background-color: #110F11;
    color: #FFFFFF;
    padding: 120px 0;
}

.section-label.is-dark {
    color: #FFFFFF;
}

.section-headline.is-dark {
    color: #FFFFFF;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.project-card {
    display: flex;
    flex-direction: column;
}

.project-image-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    /* Standard aspect ratio for portfolio thumbnails */
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    background-color: #222;
    /* Placeholder bg */
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-image {
    transform: scale(1.03);
}

.project-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #FFFFFF;
}

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

.project-tag {
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 100px;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s ease;
}

.project-card:hover .project-tag {
    background-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

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

    .projects-section {
        padding: 80px 0;
    }
}

/* Steps Section */
.steps-section {
    padding: 120px 0;
    background-color: var(--bg-color);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 48px;
    margin-bottom: 60px;
}

.step-card {
    display: flex;
    flex-direction: column;
}

.step-line-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 80px;
    /* Large space between line and icon as per screenshot */
}

.step-number {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.step-line {
    flex-grow: 1;
    height: 1.5px;
    /* Slightly thicker line */
    background-color: #000;
}

.step-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 32px;
    color: var(--text-color);
}

.step-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.2;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.step-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(15, 15, 15, 0.8);
}

@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 32px;
        row-gap: 60px;
    }
}

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

    .step-line-wrap {
        margin-bottom: 40px;
    }

    .steps-section {
        padding: 80px 0;
    }
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background-color: var(--bg-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
    /* Stretch to match height */
}

/* Removed empty faq-content */

.faq-image-col {
    position: relative;
    display: flex;
}

.faq-image-wrap {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background-color: #E0E0E0;
}

.faq-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.faq-item {
    border-bottom: 1px solid #000;
}

.faq-item:first-child {
    border-top: 1px solid #000;
}

details {
    cursor: pointer;
}

summary {
    list-style: none;
    /* Hide default arrow */
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.25rem;
    font-family: var(--font-heading);
    cursor: pointer;
}

summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

details[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding-bottom: 32px;
    padding-right: 48px;
    color: rgba(15, 15, 15, 0.8);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .faq-grid {
        gap: 48px;
    }
}

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

    .faq-image-col {
        display: none;
        /* Hide image on mobile if desired, or verify with user. Usually vertically stacked. Let's stack it. */
        display: block;
        margin-top: 60px;
    }

    .faq-image-wrap {
        min-height: 400px;
    }

    .faq-section {
        padding: 80px 0;
    }
}

/* Footer Section */
.footer-contact-section {
    background-color: #110F11;
    color: #FFFFFF;
    padding: 120px 0 60px 0;
}

.footer-contact-inner {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.footer-avatar {
    width: 300px;
    height: 300px;
    flex-shrink: 0;
    border-radius: 20px;
    /* Rounded square */
    overflow: hidden;
    background-color: #333;
}

.footer-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-contact-content {
    max-width: 600px;
}

.footer-headline {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 24px;
    color: #FFF;
}

.footer-subline {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
}

.footer-separator {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 80px;
}

.site-footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-logo-text {
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 250px;
    line-height: 1.6;
}

.footer-col-title {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: #FFF;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 32px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #FFF;
}

@media (max-width: 1024px) {
    .footer-contact-inner {
        gap: 48px;
    }

    .footer-headline {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer-contact-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .footer-avatar {
        width: 120px;
        height: 120px;
    }

    .site-footer {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        /* Stack on mobile usually */
        flex-direction: row;
        /* Keep row if possible, or wrap */
        flex-wrap: wrap;
        gap: 20px;
    }

    /* Contact Page Styles */
    .contact-hero-section {
        padding: 180px 0 120px;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: start;
    }

    .contact-info-col {
        padding-right: 40px;
    }

    .contact-headline {
        font-family: var(--font-heading);
        font-size: 3.5rem;
        line-height: 1.1;
        font-weight: 600;
        margin-bottom: 24px;
        letter-spacing: -0.02em;
    }

    .contact-subline {
        font-size: 1.125rem;
        line-height: 1.6;
        color: rgba(15, 15, 15, 0.7);
        margin-bottom: 48px;
        max-width: 480px;
    }

    .contact-benefits {
        margin-bottom: 60px;
    }

    .contact-benefit-item {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 20px;
        font-weight: 500;
        font-size: 1rem;
    }

    .benefit-check {
        width: 24px;
        height: 24px;
        color: var(--color-primary);
        /* Assuming I have this or just hardcode text color */
        color: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--btn-accent);
        /* Lime check background? Or just icon? Let's use icon color */
        border-radius: 50%;
        /* Let's make it a nice circle with check */
        width: 32px;
        height: 32px;
    }

    .benefit-check svg {
        width: 18px;
        height: 18px;
    }

    .small-label {
        font-size: 0.875rem;
        color: rgba(15, 15, 15, 0.5);
        margin-bottom: 4px;
        font-weight: 500;
    }

    .email-link {
        font-size: 1.25rem;
        color: #000;
        text-decoration: underline;
        font-weight: 600;
        transition: color 0.2s;
    }

    .email-link:hover {
        color: #555;
    }

    /* Form Styles */
    .contact-form-col {
        background-color: #FAFAFA;
        padding: 40px;
        border-radius: 24px;
    }

    .contact-form {
        display: block;
    }

    .form-group {
        margin-bottom: 24px;
    }

    .form-group label {
        display: block;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 8px;
        color: #000;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 16px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        font-family: inherit;
        font-size: 1rem;
        background-color: #FFF;
        transition: border-color 0.2s, box-shadow 0.2s;
        appearance: none;
        /* Reset for Select */
    }

    .select-wrapper {
        position: relative;
    }

    .select-wrapper::after {
        content: '';
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        width: 10px;
        height: 6px;
        background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        pointer-events: none;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        outline: none;
        border-color: #000;
        box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .btn-block {
        width: 100%;
        border: none;
        cursor: pointer;
    }

    .form-disclaimer {
        margin-top: 16px;
        font-size: 0.8rem;
        color: rgba(15, 15, 15, 0.5);
        text-align: center;
    }

    /* Success State */
    .form-success {
        display: none !important;
        /* Hidden by default */
        text-align: center;
        padding: 40px 0;
    }

    .success-icon {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background-color: var(--btn-accent);
        color: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 24px;
    }

    .form-success h3 {
        font-family: var(--font-heading);
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .form-success p {
        color: rgba(15, 15, 15, 0.7);
        margin-bottom: 24px;
    }

    @media (max-width: 900px) {
        .contact-grid {
            grid-template-columns: 1fr;
            gap: 60px;
        }

        .contact-info-col {
            padding-right: 0;
        }

        .contact-headline {
            font-size: 2.5rem;
        }

        .form-row {
            grid-template-columns: 1fr;
            gap: 0;
        }

        .contact-form-col {
            padding: 24px;
        }
    }
}/* --- New Inquiry Page Redesign --- */

.section-inquiry-hero {
    padding: 120px 0 80px;
    background-color: var(--bg-color);
}

.inquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.inquiry-headline {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.inquiry-subline {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(15, 15, 15, 0.7);
    margin-bottom: 32px;
    max-width: 90%;
}

.btn-pill {
    border-radius: 50px;
    padding: 12px 32px;
}

/* Profile Right Column */
.inquiry-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center the profile card */
    gap: 24px;
}

.profile-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    max-width: 400px;
    width: 100%;
}

.profile-image {
    width: 100%;
    height: auto;
    display: block;
}

.profile-links {
    display: flex;
    gap: 16px;
}

.profile-link-btn {
    background-color: #F3F3F3;
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s;
}

.profile-link-btn:hover {
    background-color: #e0e0e0;
}


/* Form Section */
.section-inquiry-form {
    padding: 0 0 100px;
}

.container-medium {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.form-headline {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 32px;
    font-family: var(--font-heading);
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    background-color: #F5F5F5;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-color);
}

.form-input:focus {
    outline: 2px solid #000;
    background-color: #fff;
}

.form-textarea {
    resize: vertical;
}

.pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pill-label {
    cursor: pointer;
}

.pill-label input[type="radio"] {
    display: none;
}

.pill-text {
    display: block;
    padding: 10px 24px;
    background-color: #F5F5F5;
    border-radius: 50px;
    font-size: 0.95rem;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.pill-label input:checked+.pill-text {
    background-color: #000;
    /* Or Lime: #CAFF33 with black text */
    color: #fff;
    /* If user wanted lime from screenshot: */
    /* background-color: #fff; border-color: #000; color: #000; font-weight: 600; box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
}

/* User Screenshot actually looks like grey outline or fill. Let's stick to Black selection for high contrast or try to match the site style (Lime) */
/* Re-evaluating based on "1:1 with screenshot": The screenshot shows pills with grey background, and selected state likely darker. I'll use Black for selected for now as it's cleaner. */


.form-footer-box {
    background-color: #F5F5F5;
    padding: 16px;
    border-radius: 12px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.9rem;
    color: rgba(15, 15, 15, 0.7);
    margin-top: 20px;
}

.info-icon {
    background: #e0e0e0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Collaboration Box */
.section-collaboration {
    padding: 80px 0;
    background-color: #fff;
    /* or light grey if needed */
}

.collaboration-box {
    background-color: #F9F9F9;
    padding: 60px 40px;
    border-radius: 24px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.collaboration-box h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.collaboration-box p {
    font-size: 1.1rem;
    color: rgba(15, 15, 15, 0.7);
    margin-bottom: 32px;
}

.collab-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.icon-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.icon-link:hover {
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
    .inquiry-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .inquiry-profile {
        order: -1;
        /* Image first on mobile? Or regular order. Screenshot has text first. */
        /* Actually lets keep text first. */
        order: 0;
    }

    .inquiry-headline {
        font-size: 2.5rem;
    }

    .profile-card {
        margin: 0 auto;
    }

    .profile-links {
        justify-content: center;
    }
}/* --- Version 2: Pixel Perfect Anfrage --- */

/* Hero Section */
.section-anfrage-hero {
    background-color: #FAFAFA;
    padding: 100px 0 80px;
}

.container-anfrage {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.anfrage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.anfrage-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    color: #000;
    margin-bottom: 32px;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.anfrage-desc {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 40px;
    max-width: 480px;
}

.btn-lime {
    background-color: #CAFF33;
    color: #000;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s;
}

.btn-lime:hover {
    transform: translateY(-2px);
    background-color: #bbf01f;
}

/* Profile Right */
.anfrage-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.profile-card-large {
    border-radius: 20px;
    overflow: hidden;
    width: 320px;
    height: 320px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.profile-img-large {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 320px;
}

.btn-action-pill {
    background-color: #F3F3F3;
    color: #000;
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.2s;
}

.btn-action-pill:hover {
    background-color: #e5e5e5;
}

/* Form Section */
.section-anfrage-form {
    background-color: #FAFAFA;
    padding: 0 0 100px;
}

.container-anfrage-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

.form-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 32px;
    font-family: var(--font-heading);
}

.anfrage-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-field label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #555;
    font-family: var(--font-body);
}

.required {
    color: #FF5555;
}

.input-light {
    width: 100%;
    padding: 16px 20px;
    background-color: #F3F3F3;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    color: #000;
    transition: all 0.2s;
}

.input-light:focus {
    outline: none;
    background-color: #fff;
    border-color: #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.input-light::placeholder,
.textarea-light::placeholder {
    font-family: var(--font-body);
    color: rgba(0, 0, 0, 0.5);
}

.textarea-light {
    min-height: 120px;
    resize: vertical;
    font-family: var(--font-body);
}

/* Radio Cards Grid */
.radio-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.radio-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px;
    background-color: #F3F3F3;
    padding: 16px 20px;
    border-radius: 50px;
    /* Fully rounded pills like image */
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.radio-card:hover {
    background-color: #ebebeb;
}

.radio-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.radio-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    flex: 0 0 20px;
}

.radio-circle::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #000;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s;
}

.radio-card input:checked+.radio-circle {
    border-color: #000;
}

.radio-card input:checked+.radio-circle::after {
    opacity: 1;
    transform: scale(1);
}

.radio-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    display: inline-block !important;
    white-space: nowrap;
    flex: 0 0 auto;
}

/* Checkbox */
.form-checkbox {
    margin-top: 10px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
}

.checkbox-container input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #aaa;
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    margin-top: 2px;
    transition: all 0.2s;
}

.checkbox-container input:checked~.checkmark {
    background-color: #000;
    border-color: #000;
}

.checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
}

.checkbox-container input:checked~.checkmark::after {
    opacity: 1;
}

.checkbox-text a {
    color: inherit;
    text-decoration: underline;
}

/* Submit & Trust */
.btn-lg {
    padding: 18px 32px;
    font-size: 1.05rem;
    margin-top: 20px;
}

.anfrage-trust-box {
    background-color: #F3F3F3;
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.85rem;
    color: #333;
}

.trust-icon {
    color: #333;
    flex-shrink: 0;
}

/* Success Message */
.success-icon-lime {
    color: #CAFF33;
    background: #000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

/* Collaboration Grey */
.section-collaboration-grey {
    background-color: #F3F3F3;
    padding: 80px 0;
}

.collaboration-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.collaboration-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.collaboration-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.6;
}

.collab-socials {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.collab-socials a {
    color: #000;
    transition: transform 0.2s;
}

.collab-socials a:hover {
    transform: translateY(-2px);
}


/* Responsive Adjustments */
@media (max-width: 900px) {
    .anfrage-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .anfrage-profile {
        order: -1;
    }

    .anfrage-text {
        margin: 0 auto;
    }

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

    .radio-grid-2 {
        grid-template-columns: 1fr;
    }
}
/* ========================================
   PROFILE PAGE STYLES
   ======================================== */

/* Profile Section - Timeline */
.profile-section {
    padding: 100px 0;
}

.timeline {
    margin-top: 60px;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(0, 0, 0, 0.1);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -47px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg-color);
    border: 2px solid rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.timeline-item.current::before {
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(202, 255, 51, 0.2);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 20px;
    flex-wrap: wrap;
}

.timeline-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.3;
    color: var(--text-color);
    margin: 0;
}

.timeline-period {
    font-size: 0.875rem;
    color: #666;
    white-space: nowrap;
    padding-top: 4px;
}

.timeline-company {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 12px;
}

.timeline-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 16px;
}

.timeline-focus {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #666;
    margin-top: 12px;
}

.timeline-focus strong {
    color: var(--text-color);
}

/* Education Section */
.education-section {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.education-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.education-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.2s ease;
}

.education-card:hover {
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.education-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: var(--text-color);
}

.education-icon svg {
    width: 100%;
    height: 100%;
}

.education-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.375rem;
    line-height: 1.3;
    color: var(--text-color);
    margin-bottom: 8px;
}

.education-institution {
    font-weight: 600;
    font-size: 1rem;
    color: #666;
    margin-bottom: 8px;
}

.education-degree {
    font-size: 0.9375rem;
    color: #888;
    margin-bottom: 4px;
}

.education-period {
    font-size: 0.875rem;
    color: #999;
}

/* Skills Section */
.skills-section {
    padding: 100px 0;
}

.skills-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.skill-category {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.2s ease;
}

.skill-category:hover {
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.skill-category-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

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

.skill-tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-color);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.2s ease;
}

.skill-tag:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

/* Languages Section */
.languages-section {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.languages-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    max-width: 600px;
}

.language-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.2s ease;
}

.language-card:hover {
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.language-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 8px;
}

.language-level {
    font-size: 1rem;
    color: #666;
}

/* Hero Tagline */
.hero-tagline {
    font-size: 1.125rem;
    color: #666;
    font-style: italic;
    margin-top: 16px;
}

/* Responsive - Profile Page */
@media (max-width: 768px) {
    .timeline {
        padding-left: 30px;
    }
    
    .timeline-item {
        padding-left: 20px;
    }
    
    .timeline-item::before {
        left: -37px;
    }
    
    .timeline-header {
        flex-direction: column;
        gap: 8px;
    }
    
    .timeline-title {
        font-size: 1.25rem;
    }
    
    .education-grid,
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .languages-grid {
        grid-template-columns: 1fr;
    }
}

/* Update Timeline Styles */
.timeline-location {
    font-size: 0.875rem;
    color: #888;
    margin-bottom: 16px;
}

.timeline-list {
    list-style: disc;
    margin-left: 20px;
    margin-top: 12px;
    color: #555;
}

.timeline-list li {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* Remove large icons from Education cards */
.education-icon {
    display: none;
}

/* Adjust Education Card padding */
.education-card {
    padding: 32px 28px;
}

/* Improved Profile Section Spacing */
.profile-section {
    padding: 80px 0;
}

.education-section {
    padding: 80px 0;
}

.skills-section {
    padding: 80px 0;
}

.languages-section {
    padding: 80px 0;
}

/* Better Timeline Item Spacing */
.timeline-item {
    margin-bottom: 48px;
}

.timeline-company {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 4px;
}

.timeline-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0;
}

/* Remove default timeline-focus styling if it exists */
.timeline-focus {
    display: none;
}

/* ========================================
   PROFILE PAGE - CLEAN REDESIGN
   ======================================== */

/* Profile Timeline */
.profile-timeline {
    margin-top: 60px;
}

.profile-job {
    margin-bottom: 48px;
}

.job-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.375rem;
    line-height: 1.4;
    color: var(--text-color);
    margin-bottom: 8px;
}

.job-meta {
    font-size: 0.9375rem;
    color: #666;
    margin-bottom: 16px;
}

.job-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 12px;
}

.job-skills {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #666;
}

.job-skills strong {
    color: var(--text-color);
    font-weight: 600;
}

/* Education Items */
.profile-education {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.education-item {
    margin-bottom: 0;
}

.education-degree {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 8px;
}

.education-school {
    font-weight: 600;
    font-size: 1rem;
    color: #666;
    margin-bottom: 6px;
}

.education-detail {
    font-size: 0.9375rem;
    color: #888;
    margin-bottom: 4px;
}

.education-year {
    font-size: 0.875rem;
    color: #999;
}

/* Skills Categories */
.profile-skills {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.skills-category {
    margin-bottom: 0;
}

.skills-category-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text-color);
    margin-bottom: 12px;
}

.skills-list {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #666;
}

/* Languages */
.profile-languages {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 600px;
}

.language-item {
    margin-bottom: 0;
}

.language-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 6px;
}

.language-level {
    font-size: 1rem;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .profile-education,
    .profile-skills,
    .profile-languages {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .job-title {
        font-size: 1.25rem;
    }
}

/* Vibe Projects - Added for /vibe page */
.vibe-project-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.vibe-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    background: #f0f0f0; 
}

.vibe-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.vibe-image-container:hover .vibe-image {
    transform: scale(1.02);
}

.vibe-content {
    padding-top: 10px;
}

.vibe-tags {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.vibe-tag {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 14px;
    background: rgba(0,0,0,0.04);
    border-radius: 100px;
    color: #555;
    font-family: var(--font-body);
}

.vibe-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 24px;
    color: #000;
}

.vibe-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 32px;
}

.vibe-meta-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 24px;
}

.vibe-meta-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

.vibe-meta-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #CAFF33;
    border-radius: 50%;
}

.vibe-date {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 8px;
    display: block;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .vibe-project-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .vibe-title {
        font-size: 2rem;
    }
}

/* Fix for Vibe Project Layout - Ensure side-by-side on tablets/laptops */
@media (max-width: 1024px) {
    .vibe-project-row {
        grid-template-columns: 1.2fr 0.8fr !important; /* Override stacking */
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .vibe-project-row {
        grid-template-columns: 1fr !important; /* Stack only on mobile */
        gap: 40px;
    }
}

/* Update Vibe List Icons - Sleek Line */
.vibe-meta-list li::before {
    content: '';
    width: 14px; /* Longer sleek line */
    height: 1.5px; /* Thin but visible */
    background: #000; /* Crisp Black */
    border-radius: 0; /* Square edges */
    margin-right: 2px; /* Adjust spacing */
}
