/* Mobile Styles Only */
html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'IBM Plex Sans', sans-serif;
    background: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    height: auto;
    position: relative;
    background: white;
    display: flex;
    flex-direction: column;
}

/* Header Mobile */
.header {
    position: relative;
    height: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    order: 1;
}

.logo-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 200px;
    height: 98px;
    margin-bottom: 15px;
    background: url('image/Layer_1.png') no-repeat center;
    background-size: contain;
}

.logo-text {
    position: relative;
    width: auto;
    text-align: center;
    font-size: 14px;
    color: #333;
}

.nav-section {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-links {
    display: flex;
    gap: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.nav-links a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

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

.cta-button {
    padding: 8px 32px;
    border: 1px solid #101A26;
    border-radius: 32px;
    background: white;
    font-weight: 500;
    font-size: 14px;
    color: #101A26;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #101A26;
    color: white;
}

/* Main Content Mobile */
.main-content {
    position: relative;
    height: auto;
    margin-top: 40px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    order: 2;
}

.content-left {
    position: relative;
    max-width: 100%;
    order: 1;
}

.main-title {
    position: relative;
    width: auto;
    height: auto;
    font-size: 32px;
    line-height: 110%;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    color: #333;
}

.main-title .underlined {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.description {
    position: relative;
    width: auto;
    height: auto;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

.description .bold {
    font-weight: 700;
    color: #333;
}

.learn-more-btn {
    position: relative;
    display: block;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    padding: 12px 48px;
    border: 1px solid #101A26;
    border-radius: 32px;
    background: white;
    font-weight: 500;
    font-size: 16px;
    color: #101A26;
    text-decoration: none;
    transition: all 0.3s;
}

.learn-more-btn:hover {
    background: #101A26;
    color: white;
}

.images-section {
    position: relative;
    width: 100%;
    height: auto;
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.image-1,
.image-2,
.image-3 {
    position: relative;
    width: 100%;
    height: 200px;
    margin: 0;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

.image-1 {
    background-image: url('image/Rectangle 4.png');
}

.image-2 {
    background-image: url('image/Rectangle 3.png');
}

.image-3 {
    background-image: url('image/Rectangle 1.png');
}

/* Bottom Section Mobile */
.bottom-section {
    position: relative;
    width: 100%;
    margin-top: 80px;
    order: 3;
}

.bottom-line {
    width: 100%;
    height: 60px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.bottom-text {
    position: relative;
    font-size: 16px;
    padding: 0 10px;
    height: auto;
    font-weight: 500;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 1px;
    animation: scroll-text 30s linear infinite;
    white-space: nowrap;
}

@keyframes scroll-text {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Leads Section Mobile */
.leads-section {
    position: relative;
    margin-top: 120px;
    height: auto;
    padding: 0 20px;
    order: 4;
}

.leads-dark-block {
    position: relative;
    width: 100%;
    height: auto;
    padding: 40px 30px;
    margin-bottom: 30px;
    background: #101A26;
    border-radius: 12px;
}

.leads-title {
    position: relative;
    width: 100%;
    height: auto;
    font-size: 32px;
    line-height: 110%;
    margin-bottom: 20px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    color: white;
}

.leads-description {
    position: relative;
    width: 100%;
    font-size: 18px;
    line-height: 140%;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    color: #ccc;
}

.leads-description .highlight {
    font-weight: 700;
    color: white;
}

.leads-image {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 12px;
    margin-bottom: 20px;
    margin-top: 20px;
    background: url('image/Rectangle 5.png') no-repeat center;
    background-size: cover;
}

.rocket-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background: #FFD700;
    border-radius: 50%;
}

/* Services Section Mobile */
.services-section {
    position: relative;
    margin-top: 150px;
    height: auto;
    padding: 0 20px;
    order: 5;
}

.services-title {
    position: relative;
    width: auto;
    height: auto;
    font-size: 48px;
    line-height: 110%;
    transform: none;
    text-align: center;
    margin-bottom: 40px;
    display: block;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    color: #333;
}

.services-content {
    position: relative;
    width: 100%;
}

.accordion-item {
    position: relative;
    margin-bottom: 32px;
    background: white;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 16px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid #A9A9A9;
}

.accordion-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    text-transform: uppercase;
    color: #333;
    margin: 0;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
}

.accordion-content.active {
    max-height: 800px;
    padding: 16px 0 32px 0;
}

.accordion-text {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #666;
    margin: 0;
    width: 100%;
}

.accordion-subsection {
    margin-left: 20px;
    margin-top: 20px;
    padding-bottom: 20px;
}

.subsection-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    text-transform: uppercase;
    color: #333;
    margin: 0 0 10px 0;
}

.subsection-text {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #666;
    margin: 0 0 20px 0;
    width: 100%;
}

/* Cases Section Mobile */
.cases-section {
    position: relative;
    margin-top: 100px;
    height: auto;
    padding: 0 20px;
    order: 6;
}

.cases-title {
    position: relative;
    width: auto;
    height: auto;
    font-size: 48px;
    line-height: 110%;
    transform: none;
    text-align: center;
    margin-bottom: 40px;
    display: block;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    color: #333;
}

.case-item {
    position: relative;
    width: 100%;
    margin-bottom: 60px;
}

.case-1,
.case-2,
.case-3 {
    position: relative;
}

.case-header {
    font-size: 20px;
    margin-bottom: 20px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
    color: #333;
}

.case-content {
    font-size: 16px;
    line-height: 140%;
    width: 100%;
    margin-bottom: 20px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 600;
    color: #666;
}

.case-content .problem {
    color: #333;
    font-weight: 700;
}

.case-content .solution {
    color: #333;
    font-weight: 700;
}

.case-image {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
}

.case-1 .case-image {
    background-image: url('image/Rectangle 7.png');
}

.case-2 .case-image {
    background-image: url('image/Rectangle 8.png');
}

.case-3 .case-image {
    background-image: url('image/Rectangle 9.png');
}

/* Contact Form Mobile */
.contact-section {
    position: relative;
    margin-top: 100px;
    height: auto;
    padding: 60px 20px;
    width: 100%;
    background: #101A26;
    order: 7;
}

.contact-title {
    position: relative;
    width: auto;
    height: auto;
    font-size: 48px;
    line-height: 110%;
    transform: none;
    text-align: center;
    margin-bottom: 40px;
    display: block;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    color: white;
}

.contact-form {
    position: relative;
    width: 100%;
    max-width: 484px;
    margin: 0 auto;
}

.form-field {
    position: relative;
    margin-bottom: 40px;
}

.form-input {
    width: 100%;
    height: 64px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #FFFFFF;
    color: white;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    padding: 20px 0 8px 0;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input::placeholder {
    color: #FFFFFF;
    opacity: 0.7;
}

.form-input:focus {
    border-bottom-color: #FFD700;
}

.submit-btn {
    position: relative;
    margin: 40px auto 0;
    display: block;
    width: 250px;
    height: 42px;
    background: #FFD700;
    border: 1px solid #FFD700;
    border-radius: 32px;
    padding: 8px 32px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    color: #101A26;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.submit-btn:hover {
    background: white;
    border-color: white;
    color: #101A26;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

/* Footer Mobile */
.footer-section {
    position: relative;
    margin-top: 80px;
    height: auto;
    padding: 60px 20px;
    width: 100%;
    background: white;
    order: 8;
}

.footer-logo {
    position: relative;
    width: 120px;
    height: 58px;
    margin: 0 auto 30px;
    display: block;
    background: url('image/Layer_1.png') no-repeat center;
    background-size: contain;
}

.footer-nav {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    height: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    line-height: 100%;
    color: #333;
}

.footer-links a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

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

.footer-cta {
    position: relative;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: fit-content;
    border: 1px solid #101A26;
    border-radius: 32px;
    background: white;
    padding: 8px 32px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    color: #101A26;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-cta:hover {
    background: #101A26;
    color: white;
}

.footer-copyright {
    position: relative;
    transform: none;
    width: auto;
    margin: 0 auto;
    font-size: 14px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    line-height: 100%;
    color: #666;
    text-align: center;
}

/* Mobile specific adjustments for very small screens */
@media (max-width: 480px) {
    .main-title {
        font-size: 28px;
    }

    .description {
        font-size: 16px;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .image-1,
    .image-2,
    .image-3 {
        height: 150px;
    }

    .leads-title {
        font-size: 28px;
    }

    .leads-description {
        font-size: 16px;
    }

    .leads-image {
        height: 200px;
    }

    .rocket-circle {
        width: 60px;
        height: 60px;
        top: -30px;
        font-size: 24px;
    }

    .services-title {
        font-size: 32px;
    }

    .accordion-title {
        font-size: 18px;
    }

    .accordion-text {
        font-size: 14px;
    }

    .subsection-text {
        font-size: 14px;
    }

    .subsection-title {
        font-size: 16px;
    }

    .cases-title {
        font-size: 32px;
    }

    .case-header {
        font-size: 18px;
    }

    .case-content {
        font-size: 14px;
    }

    .case-image {
        height: 150px;
    }

    .contact-title {
        font-size: 32px;
    }

    .form-input {
        font-size: 16px;
    }

    .submit-btn {
        font-size: 16px;
        width: 250px;
        height: 38px;
    }

    .footer-logo {
        width: 100px;
        height: 48px;
    }

    .footer-links {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        font-size: 12px;
    }

    .footer-cta {
        font-size: 12px;
        width: 160px;
        height: 36px;
        padding: 6px 20px;
    }

    .footer-copyright {
        font-size: 12px;
    }
}