/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #04060d;
    background-color: #ffffff;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 100px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #04060d;
}

h1 {
    font-size: 72px;
    letter-spacing: -1.44px;
}

h2 {
    font-size: 48px;
    letter-spacing: -0.96px;
    line-height: 1.4;
}

h3 {
    font-size: 24px;
    letter-spacing: -0.48px;
    line-height: 1.32;
}

h4 {
    font-size: 20px;
    letter-spacing: -0.4px;
    line-height: 1.5;
}

p {
    font-size: 16px;
    line-height: 1.5;
    color: #7b7b7b;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    border: none;
    border-radius: 0;
    text-decoration: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.32px;
    line-height: 1.5;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background-color: #4559ed;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #3a4ed5;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #4559ed;
    border: 1px solid #4559ed;
}

.btn-outline:hover {
    background-color: #4559ed;
    color: #ffffff;
}

.btn-white {
    background-color: #ffffff;
    color: #4559ed;
}

.btn-white:hover {
    background-color: #f8f9ff;
}

.btn-lg {
    padding: 16px 24px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* Section Badges */
.section-badge {
    display: inline-block;
    background-color: #dde2fc;
    color: #4559ed;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.28px;
    line-height: 1.4;
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    letter-spacing: -0.36px;
    line-height: 1.55;
    margin-bottom: 32px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 16px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #4559ed;
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #04060d;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4559ed;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: #04060d;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 120px 0 0;
    background-color: #ffffff;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 32px;
}

.hero-badge {
    display: inline-block;
    background-color: #dde2fc;
    color: #4559ed;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.28px;
    line-height: 1.4;
    margin-bottom: 16px;
}

.hero-title {
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 18px;
    letter-spacing: -0.36px;
    line-height: 1.55;
    margin-bottom: 48px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-bg {
    opacity: 0.1;
}

/* Company Logos */
.company-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
    margin-bottom: 0;
}

.logo-item {
    font-size: 16px;
    font-weight: 500;
    color: #7b7b7b;
    opacity: 0.7;
}

/* Hero Image */
.hero-image {
    height: 700px;
    margin: 0 -100px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.hero-img-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #4559ed, #6366f1);
    opacity: 0.1;
}

.business-meeting-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    color: #4559ed;
}

.meeting-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(69, 89, 237, 0.1);
}

.meeting-card i {
    font-size: 24px;
}

/* About Section */
.about {
    padding: 120px 0;
    background-color: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 64px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-item i {
    color: #4559ed;
    font-size: 16px;
}

.feature-item span {
    color: #04060d;
    font-size: 16px;
    line-height: 1.5;
}

.about-image {
    height: 561px;
}

.about-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ebff 100%);
    position: relative;
    overflow: hidden;
}

.about-img-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #4559ed, #6366f1);
    opacity: 0.1;
}

.contract-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    color: #4559ed;
}

.contract-visual i {
    font-size: 48px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #4559ed;
    color: #ffffff;
}

.services-header {
    text-align: center;
    margin-bottom: 64px;
}

.services .section-title {
    color: #ffffff;
}

.services .section-description {
    color: #ededed;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 64px;
}

.service-card {
    padding-bottom: 32px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.service-icon {
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 48px;
    color: #ffffff;
}

.service-title {
    color: #ffffff;
    margin-bottom: 8px;
}

.service-description {
    color: #ededed;
    font-size: 16px;
    line-height: 1.5;
}

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

.services .btn-outline {
    color: #ffffff;
    border-color: #ffffff;
}

.services .btn-outline:hover {
    background-color: #ffffff;
    color: #4559ed;
}

/* Highlight Text */
.highlight-text {
    padding: 120px 0 0;
    background-color: #ffffff;
}

.highlight-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.highlight-word {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: -1.44px;
    line-height: 1.2;
    color: #04060d;
}

.highlight-icon {
    color: #4559ed;
}

.highlight-icon i {
    font-size: 48px;
}

/* Key Features */
.key-features {
    padding: 120px 0 0;
    background-color: #ffffff;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.features-image {
    height: 657px;
    position: relative;
}

.features-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    overflow: hidden;
}

.features-img-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #4559ed, #6366f1);
    opacity: 0.1;
}

.discussion-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    color: #4559ed;
}

.discussion-visual i {
    font-size: 48px;
}

.feature-boxes {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-box {
    display: flex;
    gap: 24px;
    align-items: start;
    padding: 32px;
    border: 1px solid #dfdfdf;
}

.feature-box-icon {
    flex-shrink: 0;
}

.feature-box-icon i {
    font-size: 48px;
    color: #4559ed;
}

.feature-box-content h4 {
    margin-bottom: 8px;
}

.feature-box-content p {
    margin: 0;
}

/* Stats Section */
.stats {
    padding: 120px 0;
    background-color: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.stat-item {
    text-align: center;
    padding: 32px;
    border: 1px solid #dfdfdf;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.96px;
    line-height: 1.4;
    color: #04060d;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    line-height: 1.5;
    color: #7b7b7b;
}


/* Process Section */
.process {
    padding: 120px 0;
    background-color: #ffffff;
}

.process-header {
    text-align: center;
    margin-bottom: 64px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.process-step {
    text-align: center;
    padding: 32px;
    border: 1px solid #dfdfdf;
    position: relative;
}

.process-number {
    width: 48px;
    height: 48px;
    background-color: #4559ed;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.process-title {
    margin-bottom: 16px;
    color: #04060d;
}

.process-description {
    color: #7b7b7b;
    margin: 0;
}

/* Case Studies Section */
.case-studies {
    padding: 120px 0 0;
    background-color: #ffffff;
}

.case-studies-header {
    text-align: center;
    margin-bottom: 48px;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.case-study-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    border: 1px solid #dfdfdf;
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(69, 89, 237, 0.1);
}

.case-study-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background-color: #dde2fc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-study-icon i {
    font-size: 24px;
    color: #4559ed;
}

.case-study-content {
    flex: 1;
}

.case-study-title {
    margin-bottom: 8px;
    color: #04060d;
}

.case-study-description {
    color: #7b7b7b;
    margin-bottom: 16px;
    line-height: 1.5;
}

.case-study-details {
    display: flex;
    gap: 16px;
}

.detail-item {
    font-size: 14px;
    color: #4559ed;
    background-color: #dde2fc;
    padding: 4px 8px;
    border-radius: 4px;
}

.case-study-arrow {
    flex-shrink: 0;
    color: #04060d;
    cursor: pointer;
    transition: color 0.3s ease;
}

.case-study-arrow:hover {
    color: #4559ed;
}

.case-studies-footer {
    text-align: center;
    padding-bottom: 120px;
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background-color: #4559ed;
    color: #ffffff;
}

.testimonial-content {
    text-align: left;
    max-width: 1040px;
}

.testimonials .section-badge {
    background-color: #dde2fc;
    color: #4559ed;
}

.testimonial-quote {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.96px;
    line-height: 1.4;
    color: #ffffff;
    margin: 32px 0;
    border: none;
    padding: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 64px;
}

.author-line {
    width: 63px;
    height: 2px;
    background-color: #dfdfdf;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.36px;
    line-height: 1.55;
    color: #ffffff;
    margin-bottom: 0;
}

.author-role {
    font-size: 14px;
    letter-spacing: -0.28px;
    line-height: 1.4;
    color: #dfdfdf;
}

.testimonial-avatars {
    display: flex;
    align-items: center;
    gap: 8px;
}

.avatar {
    width: 56px;
    height: 56px;
    background-color: #dfdfdf;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar i {
    color: #7b7b7b;
    font-size: 24px;
}

.avatar-line {
    flex: 1;
    height: 2px;
    background-color: #ffffff;
    margin-left: 24px;
}



/* FAQ Section */
.faq {
    padding: 120px 0;
    background-color: #ffffff;
}

.faq-header {
    text-align: center;
    margin-bottom: 64px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.faq-item {
    border: 1px solid #dfdfdf;
    padding: 32px;
}

.faq-question {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    cursor: pointer;
}

.faq-question h4 {
    flex: 1;
    margin: 0;
}

.faq-question i {
    color: #04060d;
    font-size: 16px;
    margin-top: 4px;
}

.faq-answer {
    margin-top: 16px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background-color: #4559ed;
    color: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-title {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: -1.44px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 16px;
}

.contact-description {
    color: #dfdfdf;
    margin-bottom: 32px;
}

.contact-form {
    background-color: #ffffff;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group label {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.28px;
    line-height: 1.4;
    color: #a1a1a1;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #dfdfdf;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.5;
    color: #04060d;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4559ed;
}

.form-group textarea {
    resize: none;
    min-height: 138px;
}

/* Footer */
.footer {
    background-color: #ffffff;
    padding: 32px 0 24px;
}

.footer-content {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding-bottom: 32px;
    border-bottom: 1px solid #dfdfdf;
    margin-bottom: 16px;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #4559ed;
    letter-spacing: -0.5px;
}

.footer-info {
    display: flex;
    gap: 64px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.36px;
    line-height: 1.55;
    color: #04060d;
    margin-bottom: 16px;
}

.footer-section p {
    color: #04060d;
    margin-bottom: 12px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    color: #7b7b7b;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: #7b7b7b;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.5;
}

.footer-links a:hover {
    color: #4559ed;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 50px;
    }
    
    h1 {
        font-size: 48px;
    }
    
    .hero-image {
        margin: 0 -50px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    .hero-content,
    .about-content,
    .features-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .company-logos {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }
    
    .services-grid,
    .features-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .case-study-card {
        flex-direction: column;
        text-align: center;
    }
    

    
    .highlight-content {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-word {
        font-size: 48px;
    }
    
    .hero-image {
        margin: 0 -20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .contact-title {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-image {
        margin: 0 -16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-quote {
        font-size: 32px;
    }
    
    .contact-title {
        font-size: 36px;
    }
}

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

.service-card,
.feature-box,
.stat-item,
.case-study-card,
.faq-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.service-card:hover,
.feature-box:hover,
.stat-item:hover,
.case-study-card:hover,
.faq-item:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}
