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

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    width: 100%;
    height: 100%;
}

:root {
    --primary-orange: #E67E22;
    --dark-orange: #D35400;
    --light-orange: #F39C12;
    --dark-bg: #2C3E50;
    --light-bg: #ECF0F1;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

/* Header/Navigation */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
    flex-wrap: nowrap;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-orange);
}

.logo-img {
    width: 40px;
    height: auto;
    left: 10px;
    margin: 0;
    padding: 0;
}

.logo-img-header {
    scale: 0.7;
    margin: 0;
    padding: 0;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(44, 62, 80, 0.95);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.mobile-nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--primary-orange);
}

.mobile-cta-button {
    background: var(--primary-orange);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-cta-button:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
}

.cta-button {
    background: var(--primary-orange);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap; /* Verhindert Zeilenumbruch */
}

.cta-button:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    color: white;
    padding: 150px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-feature {
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.hero-intro-img {
    width: 100%;
    object-fit: contain;
    height: 550px;
    /* transform: translateY(-200px); */
}

.hero-content-container {
    max-width: 1200px;
    max-height: 1050px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content-helper {
    transform: translateY(-250px);
}

/* Features Section */
.features {
    padding: 100px 20px;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.feature-img {
    object-fit: contain;
    height: 550px;
    display: block;
    margin: 0 auto;
    transform: translateY(-30px);
}

.section-title span {
    color: var(--primary-orange);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    z-index: 1;
}

.feature-card {
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
    text-align: center;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    max-width: 100px;
    margin: 0 auto 1rem;
}

/* small inline SVG used in hero features */
.feature-symbol {
    width: 40px;
    vertical-align: middle;
    margin-right: 0.6rem;
    display: inline-block;
}

.feature-card h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* How it Works */
.how-it-works {
    padding: 100px 20px;
    background: var(--light-bg);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 2rem;
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.step h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Languages Example */
.languages {
    padding: 100px 20px;
    background: white;
}

.language-examples {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.language-bubble {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 15px;
    max-width: 350px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.language-bubble::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--light-bg);
}

.language-flag {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Pricing */
.pricing {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--text-dark) 100%);
    color: white;
    text-align: center;
}

.pricing-card {
    background: white;
    color: var(--text-dark);
    max-width: 600px;
    margin: 3rem auto;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pricing-badge {
    background: var(--primary-orange);
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: bold;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 1rem;
    border-bottom: 1px solid var(--light-bg);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pricing-features li::before {
    content: '✓';
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 1.5rem;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-orange);
    margin: 2rem 0;
}

/* CTA Section */
.final-cta {
    padding: 100px 20px;
    background: var(--primary-orange);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-white {
    background: white;
    color: var(--primary-orange);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap; /* Verhindert Zeilenumbruch */
}

.cta-button-white:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

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

.footer-info {
    margin-bottom: 2rem;
}

.footer-info p {
    margin: 0.5rem 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

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

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

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

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Inline-style classes moved from HTML */
.header-cta-group {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    margin-left: auto;
}

.header-cta-primary {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
    white-space: nowrap;
}

.header-cta-primary:hover {
    transform: translateX(-100px) translateY(-2px);
}

.header-cta-alt {
    background: #ffffff;
    color: var(--primary-orange);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-weight: 700;
}

.hero-img {
    max-width: 600px;
    margin: 0 auto 1.5rem;
    display: block;
    transform: translateY(-120px);
}

/* Why-section image styling */
.why-img {
    display: inline-block;
    width: 60px;
    height: auto;
    margin: 0 0.75rem 0 0;
    transform: translateY(-20px);
}

/* Header wrapper so image and title sit on one line */
.why-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.hero-description {
    font-size: 1.1rem;
    margin-top: 2rem;
}

.hero-cta-row {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.why-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    color: var(--text-light);
}

.pricing-heading {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.pricing-sub {
    font-size: 1.1rem;
}

.pricing-h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.pricing-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.pricing-paragraph {
    margin: 1.5rem 0;
    line-height: 1.6;
}

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

.pricing-cta+.pricing-cta {
    margin-left: 1rem;
}

.final-cta-row {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-proof-wrapper {
    max-width: 900px;
    margin: 2rem auto;
    text-align: center;
    color: var(--text-dark);
}

.testimonial-figure {
    display: inline-block;
    text-align: left;
    background: var(--light-bg);
    padding: 1rem 1.5rem;
    border-radius: 10px;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    float: left;
    margin-right: 1rem;
    object-fit: cover;
}

.testimonial-quote {
    margin: 0 0 0.5rem 0;
}

.seo-hidden {
    display: none;
}

/* Footer specific classes moved from inline styles */
.footer-company {
    margin-bottom: 1rem;
    color: var(--primary-orange);
}

.footer-contact {
    margin-top: 1rem;
}

.footer-link {
    color: var(--primary-orange);
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-tagline {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-caption {
    font-weight: 700;
    display: block;
    margin-top: 0.5rem;
}

/* =========================================
   MOBILE RESPONSIVENESS (Tablets)
   ========================================= */
@media (max-width: 740px) {
    
    /* ---------- HEADER / NAVIGATION ---------- */
    nav {
        flex-wrap: nowrap;
        padding: 1rem;
    }

    .logo-container {
        scale: 0.9;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-nav-overlay {
        display: block;
    }

    .header-cta-group {
        display: none; /* Hide desktop CTA on mobile */
    }


    /* ---------- HERO ---------- */
    .hero {
        padding: 200px 15px 60px;
        text-align: left;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.1;
        text-align: center;
        margin-bottom: 0px;
    }

    .hero-img {
        max-width: 90%;
        transform: none;
        margin-bottom: 1rem;
    }

    .hero-content-container {
        max-height: 950px;
        transform: translateY(-100px);
    }

    .hero-content-helper {
        transform: translateY(-50px);
    }

    .hero-intro-img {
        height: auto;
        margin-top: 1rem;
    }

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

    .hero-feature {
        font-size: 1.2rem;
    }

    .hero-features {
        gap: 1rem;
    }


    /* ---------- FEATURES SECTION ---------- */
    .feature-container {
        transform: none;
    }

    .feature-img {
        height: auto;
        width: 100%;
        transform: none;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }


    /* ---------- WHY SECTION ---------- */
    .why-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .why-img {
        transform: none;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }


    /* ---------- LANGUAGE BUBBLES ---------- */
    .language-examples {
        flex-direction: column;
        align-items: center;
    }

    .language-bubble {
        max-width: 100%;
        width: 100%;
    }


    /* ---------- PRICING ---------- */
    .pricing-card {
        padding: 2rem;
        margin: 2rem auto;
    }

    .pricing-heading {
        font-size: 1.8rem;
    }


    /* ---------- CTA BUTTONS ---------- */
    .cta-button,
    .cta-button-white {
        font-size: 0.85rem;
        padding: 0.7rem 1.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 200px;
    }

    /* ---------- CTA FINAL ---------- */
    .final-cta h2 {
        font-size: 2rem;
    }

    .final-cta p {
        font-size: 1rem;
    }


    /* ---------- FOOTER ---------- */
    footer {
        padding: 2rem 1rem;
    }

    .testimonial-figure {
        width: 100%;
    }
}

/* =========================================
   DESKTOP NAVIGATION (Medium screens)
   ========================================= */
@media (max-width: 1100px) and (min-width: 740px) {
    
    /* ---------- NAVIGATION ---------- */
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    .header-cta-primary {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .logo-container {
        scale: 0.9;
    }
}

/* =========================================
   MOBILE RESPONSIVENESS (Small Tablets)
   ========================================= */
@media (max-width: 740px) {
    
    /* ---------- NAVIGATION ---------- */
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    .logo-container {
        scale: 0.85;
    }
}

/* =========================================
   MOBILE RESPONSIVENESS (Small Phones)
   ========================================= */
@media (max-width: 480px) {
    
    /* ---------- HEADER / NAVIGATION ---------- */
    nav {
        padding: 0.8rem 1rem;
    }

    .logo-container {
        scale: 0.8;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* ---------- HERO ---------- */
    .hero {
        padding: 180px 10px 40px;
    }

    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .hero-content-container {
        max-height: none;
        transform: translateY(-80px);
    }

    .hero-content-helper {
        transform: translateY(-30px);
    }

    /* ---------- SECTIONS ---------- */
    .section-title {
        font-size: 1.5rem;
    }

    .section {
        padding: 3rem 10px;
    }

    /* ---------- FEATURES ---------- */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    /* ---------- PRICING ---------- */
    .pricing-card {
        padding: 1.5rem;
        margin: 1.5rem auto;
    }

    .pricing-heading {
        font-size: 1.5rem;
    }

    /* ---------- CTA BUTTONS ---------- */
    .cta-button,
    .cta-button-white {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
        max-width: 240px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* ---------- CTA FINAL ---------- */
    .final-cta {
        padding: 3rem 1rem;
    }

    .final-cta h2 {
        font-size: 1.6rem;
    }

    .final-cta p {
        font-size: 0.9rem;
    }

    /* ---------- FOOTER ---------- */
    footer {
        padding: 1.5rem 0.5rem;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content p {
        font-size: 0.8rem;
    }

    .footer-content a {
        font-size: 0.8rem;
    }
}

/* =========================================
   MOBILE RESPONSIVENESS (Very Small Screens)
   ========================================= */
@media (max-width: 380px) {
    
    /* ---------- CONTAINER ---------- */
    .container {
        padding: 0 10px;
    }
    
    /* ---------- FEATURES ---------- */
    .features {
        padding: 50px 10px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

    .feature-card {
        padding: 1rem;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        max-width: none;
    }

    .feature-icon {
        max-width: 60px;
        margin: 0 auto 0.8rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .feature-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* ---------- SECTION TITLES ---------- */
    .section-title {
        font-size: 1.4rem;
        line-height: 1.2;
        margin-bottom: 2rem;
    }

    /* ---------- LANGUAGE BUBBLES ---------- */
    .language-examples {
        flex-direction: column;
        gap: 1rem;
    }

    .language-bubble {
        padding: 1rem;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .language-bubble h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .language-bubble p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}