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

body {
    font-family: 'ABeeZee', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

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

/* Header */
.header {
    background: white;
    height: 138px;
    box-shadow: 0px 6px 10px -2px rgba(85, 105, 135, 0.04), 
                0px 2px 4px -2px rgba(85, 105, 135, 0.02);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    height: 89px;
    width: 293px;
    flex-shrink: 0;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-placeholder {
    display: none;
    width: 100%;
    height: 100%;
}

.logo img[style*="display: none"] ~ .logo-placeholder {
    display: flex;
}

.logo-placeholder svg {
    width: 100%;
    height: 100%;
}

.nav {
    display: flex;
    gap: 24px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: #003294;
    font-family: 'ABeeZee', sans-serif;
    font-size: 24px;
    line-height: 24px;
    padding: 10px;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.nav-link:hover {
    opacity: 0.7;
}

.language-btn {
    width: 60px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.language-btn:hover {
    transform: scale(1.1);
}

.flag-icon {
    width: 32px;
    height: 32px;
}

.btn-login {
    background: #003294;
    color: white;
    border: none;
    padding: 16px 28px;
    border-radius: 56px;
    cursor: pointer;
    font-family: 'ABeeZee', sans-serif;
    font-size: 24px;
    line-height: 28px;
    height: 48px;
    box-shadow: 0px 1px 2px 0px rgba(105, 81, 255, 0.05);
    transition: background 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-login:hover {
    background: #002266;
    transform: translateY(-2px);
}

.btn-login:active {
    transform: translateY(0);
}

.arrow-icon {
    width: 24px;
    height: 24px;
    stroke: #E6EDF8;
}

/* Hero Section */
.hero-wrapper {
    background: white;
    padding: 20px 0 40px;
}

.hero-wrapper .container {
    max-width: 95%;
    padding: 0 20px;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('hero-bg.jpg') center/cover no-repeat;
    background-color: #5a9fd4;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 80px 40px;
    position: relative;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
}

.hero-overlay h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    line-height: 1.4;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #333;
}

.section-title-main {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 64px;
    line-height: 68px;
    text-align: center;
    color: #3b3b3b;
    letter-spacing: 0.2px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.title-line-1,
.title-line-2 {
    display: block;
    line-height: 68px;
}

.highlight {
    color: #003294;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
    padding: 0;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.product-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-icon {
    font-size: 80px;
}

.product-card h3 {
    font-size: 20px;
    margin: 20px 10px 10px;
    color: #333;
}

.product-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    padding: 0 10px;
}

.btn-discover {
    background: #003294;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 20px;
    transition: background 0.3s;
}

.btn-discover:hover {
    background: #002266;
}

.btn-solutions {
    background: #00B2FF;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    display: block;
    margin: 0 auto;
    transition: background 0.3s;
}

.btn-solutions:hover {
    background: #0099DD;
}
.btn-solutions-pink {
    background: #FF1493;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    display: block;
    margin: 0 auto;
    transition: background 0.3s;
}

.btn-solutions-pink:hover {
    background: #E0127D;
}
.btn-solutions-pink {
    background: #FF1493;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    display: block;
    margin: 0 auto;
    transition: background 0.3s;
}

.btn-solutions-pink:hover {
    background: #E0127D;
}

/* Reasons Section */
.reasons {
    padding: 80px 0;
    background: #D6E3EC;
}

.reasons .section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 64px;
    line-height: 68px;
    letter-spacing: 0.2px;
    color: #3b3b3b;
    text-align: center;
    margin-bottom: 60px;
}

.reasons-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.reasons-flow-bottom {
    margin-bottom: 50px;
}

.reason-flow-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    position: relative;
}

.reason-circle {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    z-index: 3;
}

.reason-ball {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.reason-num {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.reason-box {
    position: relative;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    padding-left: 40px;
}

.reason-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 1;
}

.reason-box p {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    text-align: center;
    margin: 0;
    position: relative;
    z-index: 2;
    padding: 20px 25px;
}

.reason-arrow {
    width: 30px;
    height: 30px;
    object-fit: contain;
    opacity: 0.6;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.reason-item {
    text-align: center;
}

.reason-number {
    width: 80px;
    height: 80px;
    background: #003294;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.reason-item p {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

/* Discover Section */
.discover {
    padding: 80px 0;
    background: white;
}

.discover-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.discover-text {
    flex: 1;
    position: relative;
}

.discover-line {
    width: 110px;
    height: 5px;
    background: #003294;
    margin-bottom: 30px;
}

.discover-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 64px;
    line-height: 59px;
    letter-spacing: 0.2px;
    color: #3b3b3b;
}

.discover-image {
    flex: 1;
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.discover-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.discover-image iframe {
    border-radius: 15px;
}

.discover-placeholder {
    background: linear-gradient(135deg, #89CFF0 0%, #6BB6D6 100%);
    height: 300px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
}

/* Methods Section */
.methods {
    padding: 80px 0;
    background: #003294;
    color: white;
}

.methods .section-title {
    color: white;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.method-card {
    position: relative;
    border-radius: 15px;
    overflow: visible;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    padding-bottom: 60px;
}

.method-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    z-index: 1;
    bottom: 0;
}

.method-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 55%;
    margin-right: 8%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.method-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.method-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.method-desc {
    background: transparent;
    padding: 12px 18px;
    border-radius: 10px;
    width: 100%;
}

.method-card p {
    font-size: 13px;
    line-height: 1.5;
    color: white;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #F4F4F4;
    color: #333;
}

.contact-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0;
    box-shadow: none;
    position: relative;
    overflow: visible;
}

.contact-card::before {
    display: none;
}

.contact-content {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
    max-width: 450px;
}

.contact-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    color: white;
    text-shadow: 0px 0px 20px rgba(0,0,0,0.35);
    margin: 0;
}

.btn-contact {
    background: #FFC506;
    color: #431773;
    border: none;
    padding: 10px 32px;
    border-radius: 5000px;
    cursor: pointer;
    font-family: 'Poppins', 'ABeeZee', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 36px;
    text-transform: uppercase;
    letter-spacing: 0.036px;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 24px 0px rgba(0,0,0,0.2);
}

.arrow-contact {
    width: 32px;
    height: 32px;
    transform: rotate(90deg);
}

.contact-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.mockup-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin: 0;
}

.contact-placeholder {
    background: rgba(255,255,255,0.1);
    height: 300px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
}

/* Footer */
.footer {
    background: white;
    color: #333;
    padding: 60px 0 30px;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    margin-bottom: 10px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact p {
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.footer-contact .icon {
    font-size: 16px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: bold;
    color: #003294;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #003294;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background: transparent;
    color: #003294;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    border: 1px solid #003294;
}

.social-icons a:hover {
    background: #003294;
    color: white;
}

.social-icons svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
    color: #666;
}

.footer-bottom p {
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .nav-container {
        gap: 30px;
        padding: 0 20px;
    }
    
    .nav {
        gap: 10px;
    }
    
    .nav-link {
        font-size: 18px;
    }
    
    .btn-login {
        font-size: 18px;
        padding: 12px 20px;
    }
}

@media (max-width: 768px) {
    .header {
        height: auto;
        padding: 15px 0;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo {
        height: 60px;
        width: 200px;
    }

    .section-title-main {
        font-size: 36px;
        line-height: 40px;
    }
    
    .title-line-1,
    .title-line-2 {
        line-height: 40px;
    }

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

    .hero-overlay h1 {
        font-size: 32px;
    }

    .stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 32px;
    }

    .section-title {
        font-size: 24px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .reasons-flow {
        flex-direction: column;
        gap: 30px;
    }
    
    .reason-arrow {
        transform: rotate(90deg);
    }

    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-card {
        flex-direction: column;
        padding: 40px 30px;
    }
    
    .contact-text h2 {
        font-size: 28px;
        line-height: 32px;
    }
    
    .btn-contact {
        font-size: 18px;
        padding: 10px 28px;
    }
    
    .mockup-image {
        max-width: 100%;
    }

    .discover-content,
    .contact-content {
        flex-direction: column;
    }

    .methods-grid {
        grid-template-columns: 1fr;
    }

    .contact-text h2 {
        font-size: 28px;
    }
}
