@import "common.css";
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}
h1, h2, h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 58vh; 
    background: url("../../img/LSP-Bild.JPG") no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-size: 3em;
}


@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2em;
    }
}
.lego-serious-play-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.logo-and-tagline {
    text-align: center;
    padding: 40px 0 20px 0;
}

.logo {
    font-size: 2.5em;
    font-weight: 900;
    margin-bottom: 15px;
}
.bold-team{
    font-weight: 900;
}

.logo-and-tagline h2 {
   font-size: 2em;
    margin-bottom: 25px;
    font-weight: 600;
}
.intro-text {
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 1.1em;
}
.intro-text p {
    margin-bottom: 20px;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    color: #0e0e0e;
}
.content-how-it-works {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 5px;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
}

.text-how-it-works {
    flex: 1;
}

.text-how-it-works h3 {
    font-size: 2em;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 700;
}

.image-how-it-works {
    flex: 1;
    display: flex;
    align-items: flex-start;
    border-radius: 8px;
    overflow: hidden;
    max-height: 550px;
}
.full-width-image {
    display: block;
    width: 100%;
    height: 100%; 
    object-fit: cover;
    border-radius: 8px; 
}
.button {
    display: inline-block;
    background-color: #e4002b;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s;
    text-decoration: none;
}
.benefits-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 0 30px;
}

.benefit-item {
    padding: 20px;
    text-align: center;
    background-color: #bebcbc4b;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    font-size: 0.95em;
}

.benefit-item p {
    margin: 0;
}
@media (max-width: 1024px) {
    .lego-serious-play-section {
        padding: 15px;
    }

    .content-how-it-works {
        flex-direction: column;
        padding: 20px;
    }

    .image-how-it-works {
        min-height: 300px;
        width: 100%;
        order: 1;
    }

    .benefits-grid {
        flex-wrap: wrap;
        padding: 0 15px;
    }
    
    .benefit-item {
        flex: 1 1 calc(50% - 20px);
        margin-bottom: 20px;
    }
    
    .benefits-grid > div:nth-child(5) {
        flex: 1 1 100%;
        max-width: calc(50% - 10px);
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 600px) {
    .logo {
        font-size: 2em;
    }
    
    .logo-and-tagline h2 {
        font-size: 1.2em;
    }

    .benefits-grid {
        flex-direction: column;
        padding: 0;
    }
    
    .benefit-item {
        flex: 1 1 100%;
        max-width: 100%;
        margin-bottom: 15px;
        padding: 15px;
    }
    .color-dots-image {
        width: 400px; 
    }
}

.use-cases-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    text-align: center;
}

.section-title {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto 50px auto;
    color: #666;
    font-size: 1.1em;
}
.use-case-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 60px auto;
}

.case-item {
    text-align: center;
    color: #fff;
    font-weight: bold;
    border-radius: 10px;
    padding: 40px 25px;
    width: calc(33.333% - 15px);
    min-width: 250px;
    box-sizing: border-box;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.icon {
    display: block;
    position: absolute;
    top: 20px;
    left: 20px; 
    font-size: 1.8em;
}
.case-item p {
    line-height: 1.4;
    padding-top: 25px;
}
.case-item:nth-child(4),
.case-item:nth-child(5) {
  flex-basis: calc(33.333% - 20px);
}
.case-item.red { background-color: #e4002b; }
.case-item.green { background-color: #00843d; }
.case-item.blue { background-color: #005f97; }
.case-item.yellow { background-color: #ffc700;  }
.case-item.orange { background-color: #ff8c00; }

.case-study-block {
    display: flex;
    gap: 40px;
    background-color: #bebcbc33;
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    margin-bottom: 80px;
}

.case-study-content {
    flex: 1.5; 
    padding-right: 20px;
}

.case-study-tag {
    color: #0d0d0e; 
    font-weight: bold;
    margin-bottom: 15px;
}


.case-study-quote {
    font-size: 1.8em;
    font-style: italic;
    color: #333;
    padding-left: 20px;
    margin: 20px 0;
    line-height: 1.4;
}

.case-study-detail {
    color: #555;
    margin-bottom: 30px;
}

.case-study-link {
    color: #080808; 
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 30px;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background-color: #ccc; 
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.client-text p {
    margin: 0;
    line-height: 1.3;
}

.client-name {
    font-weight: bold;
}

.client-title {
    font-size: 0.9em;
    color: #777;
}

.case-study-media {
    flex: 1;
    min-height: 400px;
    background-color: #ddd; 
    border-radius: 8px;
    overflow: hidden;
}

.case-study-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bottom-info-grid {
    display: flex;
    gap: 50px;
    padding: 0 20px;
    text-align: left;
}

.info-block {
    flex: 1;
    text-align: left;
}

.info-block h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 700;
}

.info-block p {
    color: #555;
    margin-bottom: 15px;
}

@media (max-width: 1024px) {
    .use-case-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 15px;
    }
    .use-case-grid > div:nth-child(4) {
        grid-column: span 1; 
    }
    .use-case-grid > div:nth-child(5) {
        grid-column: span 1;
    }
    .case-study-block {
        flex-direction: column; 
        padding: 20px;
    }
    
    .case-study-media {
        order: 1; 
        min-height: 250px;
    }
    
    .case-study-content {
        padding-right: 0;
    }
    .bottom-info-grid {
        flex-direction: column;
        padding: 0 15px;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 2em;
    }
    .use-case-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }
    
    .case-item {
        min-height: 120px;
    }
    .use-case-grid > div:nth-child(4) {
        grid-column: span 1; 
    }
    .use-case-grid > div:nth-child(5) {
        grid-column: span 1;
    }
    .case-study-quote {
        font-size: 1.4em;
    }
    
    .case-study-media {
        min-height: 200px;
    }
}
.quote-section {
  position: relative;
  padding: 100px 20px;
  background-image: url("../../img/LSP-Bild.JPG");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}
.quote-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(10, 10, 10, 0.795); 
    z-index: 1; 
  }
.quote-content {
  color: #fff;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.quote-text {
    font-size: 1.5em;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 25px;
}

.quote-author {
  font-size:  1em;
  font-weight: 400;
  color: #fff;
}
.quote-paragraph {
  font-size:  2.2em;
  color: #fff;
  margin-bottom: 20px;
}
.team-competencies-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    text-align: center;
}

.competencies-header {
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.competencies-header h2 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 15px;
}

.competencies-header p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.4;
}
.competencies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
    padding: 0 10px;
}

.competency-card {
    background-color: #bebcbc4b; 
    padding: 30px;
    border-radius: 8px;
    min-height: 180px; 
    text-align: center; 
    
}

.competency-card p {
    font-size: 1em;
    font-weight: bold;
    line-height: 1.5;
    margin: 0;
}

.competency-card .small-text {
    font-size: 0.85em;
    color: #777;
    margin-top: 15px;
}
@media (max-width: 1024px) {
    .competencies-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 15px;
    }
    
    .competency-card {
        margin-bottom: 20px; 
    }
}


@media (max-width: 600px) {
    .competencies-header h2 {
        font-size: 1.8em;
    }

    .competencies-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }
    
    .competency-card {
        min-height: auto; 
        padding: 20px;
        margin-bottom: 15px;
    }
}
.cta-banner-section {
    padding: 80px 5%;
    background-color: #88888833;
    text-align: center;
}

.cta-banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-banner-content h2 {
    font-size: 2.2em;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.cta-banner-content p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--text-color);
}

.cta-banner-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px; 
}
.cta-banner-buttons .btn-cta.primary {
    background-color: #F42B37;
    color: #ffffff;
    padding: 15px 30px;
    font-size: 1em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.cta-banner-buttons .btn-cta.primary:hover {
    background-color: #DD6822; 
}

.cta-button.secondary {
    color: #0e0d0d;
    padding: 15px 30px;
    font-size: 1em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    background-color: #77757559;
}

.cta-button.secondary:hover {
    background-color: #DD6822
}
@media (max-width: 600px) {
    .cta-banner-section {
        padding: 50px 3%;
    }

    .cta-banner-content h2 {
        font-size: 1.8em;
    }

    .cta-banner-content p {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .cta-banner-buttons {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-banner-buttons .btn-cta.primary {
        width: 70%; 
        max-width: 300px;
        padding: 12px 20px;
    }
}