/* Desktop Styles Only */
/* Smooth scroll */
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: 1440px;
    margin: 0 auto;
    height: 4845px;
    position: relative;
    background: white;
}

/* Header */
.header {
    position: relative;
    height: 250px;
    z-index: 10;
}

.logo-section {
    position: absolute;
    top: 98px;
    left: 128px;
}

.logo {
    width: 297px;
    height: 145px;
    background: url('image/Layer_1.png') no-repeat center;
    background-size: contain;
}

.logo-text {
    position: absolute;
    top: 132px;
    left: 116px;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #333;
    width: 276px;
}

.nav-section {
    position: absolute;
    top: 95px;
    right: 128px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    display: flex;
    gap: 32px;
    font-weight: 500;
    font-size: 16px;
    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;
    white-space: nowrap;
}

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

/* Main Content */
.main-content {
    position: relative;
    height: 600px;
    margin-top: 90px;
}

.content-left {
    position: absolute;
    top: 0;
    left: 128px;
    max-width: 584px;
}

.main-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 405px;
    height: 104px;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    color: #333;
}

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

.description {
    position: absolute;
    top: 134px;
    left: 0;
    width: 584px;
    height: 156px;
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    color: #666;
}

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

.learn-more-btn {
    position: absolute;
    top: 320px;
    left: 0;
    padding: 12px 48px;
    border: 1px solid #101A26;
    border-radius: 32px;
    background: white;
    font-weight: 500;
    font-size: 16px;
    color: #101A26;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    min-width: 250px;
    text-align: center;
}

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

/* Images Section */
.images-section {
    position: absolute;
    top: -200px;
    right: 0;
    width: 600px;
    height: 0;
}

.image-1 {
    position: absolute;
    width: 501px;
    height: 259px;
    top: 197px;
    left: 39px;
    background: url('image/Rectangle 4.png') no-repeat center;
    background-size: cover;
    border-radius: 12px;
    z-index: 3;
}

.image-2 {
    position: absolute;
    width: 416px;
    height: 259px;
    top: 393px;
    left: -72px;
    background: url('image/Rectangle 3.png') no-repeat center;
    background-size: cover;
    border-radius: 12px;
    z-index: 2;
}

.image-3 {
    position: absolute;
    width: 437px;
    height: 540px;
    top: 367px;
    left: -25px;
    background: url('image/Rectangle 1.png') no-repeat center;
    background-size: cover;
    border-radius: 12px;
    z-index: 1;
}

/* Bottom Section */
.bottom-section {
    position: absolute;
    top: 794px;
    left: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

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

.bottom-text {
    position: absolute;
    top: 14px;
    left: 0;
    width: 100%;
    height: 31px;
    font-weight: 500;
    font-size: 20px;
    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 */
.leads-section {
    position: absolute;
    width: 100%;
    height: 353px;
    top: 1150px;
    left: 0;
    z-index: 2;
}

.leads-dark-block {
    position: absolute;
    width: 579px;
    height: 318px;
    top: 0;
    left: 128px;
    background: #101A26;
    border-radius: 12px;
    z-index: 5;
}

.leads-title {
    position: absolute;
    width: 432px;
    height: 52px;
    top: 64px;
    left: 64px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    color: white;
}

.leads-description {
    position: absolute;
    top: 140px;
    left: 64px;
    width: 450px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    color: #ccc;
}

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

.leads-image {
    position: absolute;
    width: 884px;
    height: 353px;
    top: 108px;
    left: 428px;
    background: url('image/Rectangle 5.png') no-repeat center !important;
    background-size: cover !important;
    border-radius: 12px;
    z-index: 2;
}

.rocket-circle {
    position: absolute;
    width: 128px;
    height: 128px;
    top: 44px;
    left: 643px;
    background: #FFD700;
    border-radius: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

/* Services Section */
.services-section {
    position: absolute;
    top: 1750px;
    left: 0;
    width: 100%;
    height: 1000px;
    z-index: 1;
}

.services-title {
    position: absolute;
    top: 350px;
    left: 128px;
    width: 370px;
    height: 125px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 96px;
    line-height: 100%;
    color: #333;
    transform: rotate(-90deg);
    transform-origin: left bottom;
    z-index: 5;
}

.services-content {
    position: absolute;
    top: 0;
    left: 428px;
    width: 884px;
}

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

.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: 24px;
    line-height: 100%;
    text-transform: uppercase;
    color: #333;
    margin: 0;
}

.accordion-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    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: 20px;
    line-height: 130%;
    color: #666;
    margin: 0;
    width: 748px;
}

.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: 20px;
    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: 20px;
    line-height: 130%;
    color: #666;
    margin: 0 0 20px 0;
    width: 728px;
}

/* Cases Section */
.cases-section {
    position: absolute;
    top: 2820px;
    left: 0;
    width: 100%;
    height: 1200px;
    z-index: 1;
}

.cases-title {
    position: absolute;
    top: 350px;
    left: 70px;
    width: 345px;
    height: 125px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 96px;
    line-height: 100%;
    color: #333;
    transform: rotate(-90deg);
    transform-origin: left top;
    z-index: 5;
}

.case-item {
    position: absolute;
    width: 884px;
    left: 428px;
}

.case-1 {
    top: 0;
}

.case-2 {
    top: 350px;
}

.case-3 {
    top: 700px;
}

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

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

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

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

.case-image {
    position: absolute;
    width: 184px;
    height: 281px;
    border-radius: 12px;
}

.case-1 .case-image {
    top: 0;
    right: 0;
    background: url('image/Rectangle 7.png') no-repeat center;
    background-size: cover;
}

.case-2 .case-image {
    top: 0;
    left: -200px;
    background: url('image/Rectangle 8.png') no-repeat center;
    background-size: cover;
}

.case-3 .case-image {
    top: 0;
    right: 0;
    background: url('image/Rectangle 9.png') no-repeat center;
    background-size: cover;
}

/* Contact Form Section */
.contact-section {
    position: absolute;
    top: 3980px;
    left: 0;
    width: 100vw;
    height: 558px;
    background: #101A26;
    z-index: 1;
    margin-left: calc(50% - 50vw);
}

.contact-title {
    position: absolute;
    top: 480px;
    left: calc(50% - 720px + 128px);
    width: 421px;
    height: 125px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 96px;
    line-height: 100%;
    color: white;
    transform: rotate(-90deg);
    transform-origin: left top;
    z-index: 5;
}

.contact-form {
    position: absolute;
    top: 50px;
    left: calc(50% - 720px + 428px);
    width: 600px;
}

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

.form-input {
    width: 484px;
    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: 20px;
    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: absolute;
    top: 370px;
    left: 116px;
    width: 300px;
    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: 20px;
    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 Section */
.footer-section {
    position: absolute;
    top: 4610px;
    left: 0;
    width: 100%;
    height: 235px;
    background: white;
    z-index: 1;
}

.footer-logo {
    position: absolute;
    top: 0;
    left: 128px;
    width: 159px;
    height: 78px;
    background: url('image/Layer_1.png') no-repeat center;
    background-size: contain;
}

.footer-nav {
    position: absolute;
    top: 21px;
    right: 360px;
    display: flex;
    align-items: center;
    gap: 32px;
    height: 42px;
}

.footer-links {
    display: flex;
    gap: 32px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    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: absolute;
    top: 21px;
    right: 128px;
    width: 203px;
    height: 42px;
    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;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

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

.footer-copyright {
    position: absolute;
    top: 130px;
    left: 50%;
    transform: translateX(-50%);
    width: 212px;
    height: 21px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #666;
    text-align: center;
}