/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e5e7eb;
    background-color: #1f2937;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: min(2rem, 8%);
  z-index: 1000;
  backdrop-filter: none;
  background-color: rgba(0, 0, 0, 0.01);
  transition: backdrop-filter 0.5s ease, background-color 0.5s ease;
}

.logo {
  height: 3vw;
  object-fit: contain;
}

body.scrolled .top-bar {
  backdrop-filter: blur(2px); /* Stärkerer Blur beim Scrollen */
  -webkit-backdrop-filter: blur(2px); /* Safari-Unterstützung */
  background-color: rgba(2, 27, 52, 0.589);
  transition: backdrop-filter 1s ease, background-color 0.3s ease;
}

.logo i {
  font-size: 2rem;
}

.cta-button {
  font-weight: bold;
  color: white;
  background-color: #0077b5;
  text-decoration: none;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1vw;
  width: fit-content;
}

.cta-button:hover {
  background-color: #ff914d;
  color: black;
  transform: translateY(-2px);
} 

.hero .container {
    max-width: 80%;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #021b34 0%, #2266a2 100%);
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.hero-content {
    display: grid;
    min-height: 100%;
    grid-template-columns: 4fr 5fr;
    gap: 4rem;
    align-items: stretch;
}

.hero-text {
    align-self: center;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fafafa;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-align: justify;
}

.hero-cta {
    margin-bottom: 2rem;
}

.cta-primary {
    background: #0077B5;
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
}

.cta-primary:hover {
    background: #ff914d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
}

.hero-image {
    display: flex;
    align-items: flex-end;
}

.hero-shot {
    width: 90%;
    height: auto;
    object-fit: cover;
    display: block;
}

.video-placeholder {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 119, 181, 0.9);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(0, 119, 181, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: #f8fafc;
    color: rgb(0, 0, 0);
}

.problem .section-title {
    color: rgb(0, 0, 0);
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.problem-subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #000000;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.problem-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}


.problem-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    background: rgba(0, 0, 0, 0.1);
    border-color: #0077B5;
}

.problem-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.problem-item p {
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: #0077B5;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #ffffff;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-intro {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.7;
    text-align: justify;
    padding: 1rem;
}

.solution-text h3 {
    color: #ffffff;
    padding: 1rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.solution-image {
    background: transparent;
    padding: 0rem;
    border-radius: 16px;
}


.solution-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #ffffff;
}

.benefits .section-title {
    color: rgb(0, 0, 0);
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    background: rgba(0, 0, 0, 0.1);
    border-color: #0077B5;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.benefit-card p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Why Me Section */
.why-me {
    padding: 80px 0;
    background: #0077B5;
}


.why-me-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.options-title {
    text-align: center;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 3rem;
    font-weight: 600;
}

.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #0077B5;
}

.service-card.featured {
    background: linear-gradient(135deg, #0097b5 0%, #005885 100%);
    color: white;
    border-color: #0077B5;
}

.service-card.featured .service-description,
.service-card.featured .service-question {
    color: rgba(255, 255, 255, 0.9);
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #FF6B35;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: #1e293b;
}

.service-card.featured h3 {
    color: white;
}

.service-question {
    font-size: 1.1rem;
    color: #0077B5;
    margin-bottom: 1rem;
    font-weight: 600;
    font-style: italic;
}

.service-description {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

.why-me-cta {
    text-align: center;
}

.why-me-cta .cta-primary {
    background-color: white;
    color: black;
}
.why-me-cta .cta-primary:hover {
    background-color: #ff914d;
    color: white;
}

.cta-text {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: #f8fafc;
}

.process h2 {
    color: black;
}

.process-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: start;
    text-align: justify;
}

.process-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 2rem;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    background: rgba(0, 0, 0, 0.1);
    border-color: #0077B5;
}

.step.step-left {
    flex-direction: row;
}

.step.step-right {
    flex-direction: row-reverse important;
}

.step-visual {
    flex-shrink: 0;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #0077B5;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
}

.step-content {
    flex: 1;
}

.step h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.step p {
    color: #1f2125;
    font-size: 1.1rem;
    line-height: 1.6;
}

.process-image {
    position: relative;
    top: 0;
    height: 100%;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.process-cta {
    text-align: center;
}

/* Process Section 
.process {
    padding: 80px 0;
    background: white;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    max-width: 300px;
    flex: 1;
    min-width: 250px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #0077B5;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
}

.step h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.step p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: #0077B5;
    font-weight: bold;
}

.process-cta {
    text-align: center;
}
*/

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #e6e6e6;
}

.faq h2
    {
        color: black;
    }

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    color: #1e293b;
    font-size: 1.2rem;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #0077B5;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: none;
}

.faq-answer p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Booking Section */
/* Booking Section */
.booking {
    padding: 80px 0;
    background: linear-gradient(135deg, #0077B5 0%, #005885 100%);
    color: white;
}

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

.booking-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.booking-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.booking-reminder {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    display: inline-block;
}

.booking-form iframe {
  width: 100%;
  height: 600px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  background: white;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #0077B5;
}

.booking-form textarea {
    height: 120px;
    resize: vertical;
    margin-bottom: 1.5rem;
    grid-column: 1 / -1;
}

.booking-form .cta-primary {
    width: 80%;
    margin-bottom: 1rem;
}


.booking-note {
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}



/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .solution-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        padding: 2rem 0;
    }

    .cta-primary {
        font-size: 1rem;
    }

    .hero {
        height: auto;              /* kein fixes 100vh mehr */
        min-height: 100vh;         /* mind. ein Fold hoch */
        padding-top: 6rem;         /* Platz für Navbar, falls nötig */
    }

    .hero-content {
        grid-template-columns: 1fr; /* einspaltig */
        gap: 2rem;
        align-items: start;
    }

    .hero-text {
        align-self: start;
        text-align: center;
    }

    .hero-image {
        flex: 1 0 auto;
        display: flex;
        margin: 0 auto 0 auto;
        align-items: flex-end;
        max-width: 630px;
        justify-content: center;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 3rem;
    }

    .step-content h3 {
        font-size: 1.2rem;
    }
    .step-content p {
        font-size: 1.2rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    .process-content {
    grid-template-columns:  1fr;
    }
}

/* Impressum Sections */
.impressum-section {
    padding: 30px 40px;
    border-bottom: 1px solid #4b5563;
}

.impressum-section:last-child {
    border-bottom: none;
}

.impressum-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #f9fafb;
    font-weight: 600;
}

.impressum-content {
    color: #d1d5db;
    line-height: 1.7;
}

.impressum-content p {
    text-align: justify;
    margin-bottom: 15px;
    font-weight: 200;
    font-size: large;
}

.impressum-content p:last-child {
    margin-bottom: 0;
}

.impressum-content strong {
    color: #f3f4f6;
    font-weight: 600;
}

.impressum-content a {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.impressum-content a:hover {
    color: #93c5fd;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #021b34 0%, #2266a2 100%);
    color: white;
    padding: 40px 0;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
}

.footer-logo img {
    max-height: 60px;
    width: auto;
    border-radius: 6px;
}

.footer-info {
    text-align: center;
}

.copyright {
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 8px 16px;
    border-radius: 6px;
}

.footer-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.footer-social {
    display: flex;
    justify-content: flex-end;
}

.linkedin-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.linkedin-link:hover {
    background: #0077b5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.linkedin-link svg {
    width: 20px;
    height: 20px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive Design */
@media (max-width: 1200px) {
    .top-bar {
        padding: 1rem;
    }
    
    .logo {
        height: 7vw;
    }
    
    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: clamp(1rem, 2.5vw, 1rem);
    }
    
    .container {
        width: 95%;
        margin: 0 auto 0 auto;
        border-radius: 8px;
    }
    
    header {
        padding: 20px;
        min-height: 10vh;
    }
    
    .logo-container {
        padding: 0 15px;
    }
    
    .logo-container img {
        max-height: 60px;
    }
    
    .page-header {
        padding: 30px 20px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .impressum-section {
        padding: 25px 25px;
    }
    
    .impressum-section h2 {
        font-size: 1.3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-links {
        gap: 20px;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .top-bar {
        gap: 0.5rem;
    }
    
    .logo {
        height: 8vw;
    }
    
    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        margin-left: 0.5rem !important;
    }
    
    body {
        padding: 0;
    }
    
    .container {
        width: 98%;
        margin: 0 auto 0 auto;
        border-radius: 6px;
    }
    

    header {
        min-height: 12vh;
    }
    
    .page-header {
        padding: 25px 15px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header h2 {
        font-size: 1rem;
    }
    
    .impressum-section {
        padding: 20px 15px;
    }
    
    .impressum-section h2 {
        font-size: 1.2rem;
    }
    
    .impressum-content {
        font-size: 0.95rem;
    }
    
    .impressum-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .footer {
        padding: 30px 0;
    }
    
    .footer-content {
        padding: 0 15px;
        gap: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .linkedin-link {
        justify-content: center;
        font-size: 0.9rem;
    }
}

/* Extra kleine Bildschirme */
@media (max-width: 360px) {
    .top-bar {
        text-align: center;
    }
    
    .logo {
        height: 8vw;
    }
    
    .cta-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
        margin-left: 0.3rem !important;
    }
    
    .container {
        width: 100%;
        margin: 0 auto 0 auto;
        border-radius: 8px;
    }
    
    .page-header {
        padding: 20px 10px;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .page-header h2 {
        font-size: 0.9rem;
    }
    
    .impressum-section {
        padding: 15px 10px;
    }
    
    .impressum-section h2 {
        font-size: 1.1rem;
    }
    
    .impressum-content p {
        font-size: 0.85rem;
    }
    
    .footer-content {
        padding: 0 10px;
    }
}