/* Custom Cursor */
body {
    cursor: none;
}

a, button, .btn-consult, .btn-auth, .btn-submit, .btn-cta-primary, .social-item, .news-link, .logo, .qr-img-box, .back-to-top {
    cursor: none;
}

.custom-cursor {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(124, 58, 237, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.15s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
    transform: translate(-50%, -50%);
}

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background: #7c3aed;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
}

.custom-cursor.hover {
    width: 50px;
    height: 50px;
    background: rgba(124, 58, 237, 0.1);
    border-color: #7c3aed;
}

.custom-cursor-dot.hover {
    transform: translate(-50%, -50%) scale(1.5);
}


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

body {
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    background-color: #f5f5f5;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1330px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 90px;
    transition: all 0.3s ease;
}

.header.fixed {
    position: fixed;
    background: rgba(15, 5, 36, 0.95);
    backdrop-filter: blur(10px);
    height: 70px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #a855f7, #6366f1);
    color: #fff;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 22px;
}

.logo-text {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 50px;
}

.nav a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    transition: color 0.3s;
}

.nav a:hover, .nav a.active {
    color: #fff;
    font-weight: bold;
}

.header-btn {
    display: flex;
    align-items: center;
}

.mobile-toggle {
    display: none;
}

.btn-consult {
    display: inline-block;
    background-color: #fff;
    color: #4a148c;
    padding: 10px 36px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    transition: background 0.3s;
}

.btn-consult:hover {
    background-color: #f0f0f0;
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 650px;
    background: #0f0524;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/banner.jpg') no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 10, 67, 0.8) 0%, rgba(58, 21, 128, 0.6) 50%, rgba(23, 7, 55, 0.8) 100%);
    z-index: 2;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(0,0,0,0) 70%);
    filter: blur(50px);
    z-index: 3;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-content {
    width: 580px;
    color: #fff;
    margin-top: 0;
}

.hero-title {
    font-size: 56px;
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    letter-spacing: 2px;
}

.hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

.btn-auth {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, #7c3aed, #a855f7);
    color: #fff;
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.6);
}

.arrow {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    margin-left: 12px;
    position: relative;
}
.arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 6px;
    height: 6px;
    border-top: 2px solid #7c3aed;
    border-right: 2px solid #7c3aed;
}

/* QR Card */
.hero-qr-card {
    background: #fff;
    width: 280px;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    position: relative;
    z-index: 100;
    margin-top: 10px;
    height: max-content;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-qr-card.fixed {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    width: 180px;
    padding: 15px 10px;
    border-radius: 16px 0 0 16px;
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
}

.hero-qr-card.fixed .qr-img-box {
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
}

.hero-qr-card.fixed .qr-title {
    font-size: 14px;
}

.hero-qr-card.fixed .qr-desc {
    display: none;
}

.hero-qr-card.fixed .qr-tips {
    font-size: 12px;
}

.qr-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.qr-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.qr-img-box {
    width: 180px;
    height: 180px;
    margin: 0 auto 15px;
    background: #fff;
    padding: 0;
    position: relative;
}

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

.qr-center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 8px;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.qr-center-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.qr-tips {
    font-size: 13px;
    color: #333;
    font-weight: bold;
}

/* Stats Section */
.stats-section {
    position: relative;
    margin-top: -80px;
    z-index: 200;
    padding-bottom: 50px;
}

.stats-box {
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 80px;
    box-shadow: 0 25px 60px rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.08);
    min-height: 220px;
    position: relative;
    overflow: visible;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    justify-content: center;
    opacity: 1;
    transform: none;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.stat-item.animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .section-title {
    font-size: 44px;
    font-weight: bold;
    color: #1a1a1a;
    padding-left: 0;
    display: block;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.stat-icon {
    width: 64px;
    height: 64px;
    background: #f8f5ff;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
}

.stat-item:hover .stat-icon {
    background: #7c3aed;
    transform: translateY(-5px) rotate(5deg);
}

.stat-item:hover .stat-icon svg path {
    fill: #fff;
}

.stat-icon svg {
    width: 32px;
    height: 32px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(124, 58, 237, 0.1), transparent);
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-num-box {
    display: flex;
    align-items: baseline;
}

.stat-num {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    color: #7c3aed; /* Added solid color fallback */
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-suffix {
    font-size: 28px;
    font-weight: 700;
    color: #7c3aed;
    margin-left: 4px;
}

.stat-label {
    font-size: 18px;
    color: #666;
    font-weight: 600;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

/* Advantages Section */
.advantages-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 20px;
}

.advantage-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(124, 58, 237, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(124, 58, 237, 0.12);
    border-color: rgba(124, 58, 237, 0.2);
}

.advantage-icon {
    width: 100px;
    height: 100px;
    background: #f8f5ff;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px;
    transition: all 0.4s ease;
}

.advantage-card:hover .advantage-icon {
    background: #7c3aed;
    transform: scale(1.1) rotate(5deg);
}

.advantage-card:hover .advantage-icon svg path,
.advantage-card:hover .advantage-icon svg circle {
    fill: #fff !important;
}

.advantage-title {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.advantage-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* Process Section */
.process-section {
    padding: 90px 0;
    background-color: #fcfbfe;
}

.process-container {
    padding: 0;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.process-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.process-step-num {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.process-card {
    background: #fff;
    padding: 30px 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(243, 239, 255, 0.5);
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.08);
    background: #fff;
    border-color: rgba(124, 58, 237, 0.2);
}

.process-icon {
    width: 52px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    opacity: 0.9;
}

.process-icon svg {
    width: 100%;
    height: 100%;
}

.process-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.process-item-title {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
}

.process-item-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

.process-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.5;
}

.process-connector svg {
    width: 100%;
    height: 100%;
}
/* Market Section */
.market-section {
    padding: 90px 0;
    background-color: #fff;
    position: relative;
}

.market-content-box {
    display: flex;
    align-items: center;
    gap: 60px;
    background: #fbfaff;
    padding: 60px;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.05);
}

.market-info {
    flex: 1;
}

.market-info-text {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.market-info-text .highlight {
    color: #7c3aed;
    font-weight: bold;
    font-size: 20px;
}

.market-info-strong {
    font-size: 20px;
    color: #4c1d95;
    font-weight: bold;
    line-height: 1.6;
}

.market-cards {
    display: flex;
    gap: 30px;
    flex: 2;
}

.market-data-card {
    flex: 1;
    background: #fff;
    padding: 35px 30px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.4s ease;
}

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

.market-card-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.market-card-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.market-num {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
}

.market-num.highlight {
    color: #7c3aed;
}

.market-label {
    font-size: 15px;
    color: #333;
    font-weight: 600;
}

.market-source {
    font-size: 13px;
    color: #999;
}

/* News Section */
.news-section {
    padding: 90px 0;
    background-color: #fcfbfe;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.news-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.news-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.12);
}

.news-card-img {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-item:hover .news-card-img img {
    transform: scale(1.1);
}

.news-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(124, 58, 237, 0.9);
    color: #fff;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.news-tag.purple {
    background: rgba(168, 85, 247, 0.9);
}

.news-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-date {
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
}

.news-card-title {
    font-size: 18px;
    font-weight: bold;
    color: #1a1a1a;
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 54px;
}

.news-card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link {
    margin-top: auto;
    font-size: 14px;
    color: #7c3aed;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.news-link:hover {
    color: #5b21b6;
}

.news-link i.icon-arrow {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 2px;
    transition: transform 0.3s;
}

.news-link:hover i.icon-arrow {
    transform: translateX(5px) rotate(45deg);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: #fcfbfe;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: #fff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s;
    border: 1px solid rgba(124, 58, 237, 0.05);
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 58, 237, 0.2);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.08);
}

.faq-question {
    font-size: 19px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-question::before {
    content: 'Q';
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #fff;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
}

.faq-answer {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    padding-left: 40px;
}

/* Footer Section */
.footer {
    padding: 80px 0 40px;
    background: #0f0524;
    color: rgba(255, 255, 255, 0.6);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-info {
    flex: 0 0 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.footer-logo .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 18px;
    background: linear-gradient(135deg, #a855f7, #6366f1);
    color: #fff;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.footer-logo .logo-text {
    font-size: 22px;
    color: #fff;
    font-weight: bold;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-item {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: all 0.3s;
}

.social-item:hover {
    background: #7c3aed;
    transform: translateY(-3px);
}

.footer-links-group {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-link-col h4 {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 25px;
}

.footer-link-col ul {
    list-style: none;
}

.footer-link-col li {
    margin-bottom: 12px;
}

.footer-link-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}

.footer-link-col a:hover {
    color: #7c3aed;
}

.footer-link-col span {
    font-size: 14px;
    display: block;
}

.footer-qr {
    flex: 0 0 120px;
    text-align: center;
}

.footer-qr h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-qr-img {
    width: 100px;
    height: 100px;
    background: #fff;
    padding: 5px;
    border-radius: 8px;
    margin: 0 auto 10px;
}

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

.footer-qr p {
    font-size: 12px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: #fff;
    color: #7c3aed;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #7c3aed;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4);
}

.back-to-top svg {
    transition: transform 0.3s;
}

.back-to-top:hover svg {
    transform: translateY(-2px);
}

/* Consult Modal Styles */
.consult-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.consult-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 5, 36, 0.85);
    backdrop-filter: blur(8px);
}

.modal-container {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 32px;
    padding: 50px 40px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
    transform: scale(0.8) translateY(20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
}

.consult-modal.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3efff;
    border: none;
    font-size: 24px;
    color: #7c3aed;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-close:hover {
    background: #7c3aed;
    color: #fff;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 35px;
}

.modal-logo {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #fff;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.modal-header h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 800;
}

.modal-header p {
    font-size: 14px;
    color: #666;
}

.modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-code-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    padding: 10px;
    background: #fff;
    border: 1px solid #f3efff;
    border-radius: 20px;
    margin-bottom: 25px;
    overflow: hidden;
}

.qr-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qr-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #7c3aed, transparent);
    animation: scanMove 3s infinite linear;
}

@keyframes scanMove {
    0% { top: 0; }
    100% { top: 100%; }
}

.contact-info-mini {
    width: 100%;
    background: #fbfaff;
    padding: 15px;
    border-radius: 16px;
    text-align: center;
}

.info-item .label {
    color: #999;
    font-size: 13px;
}

.info-item .value {
    color: #7c3aed;
    font-weight: 700;
    font-size: 15px;
}

.modal-footer {
    margin-top: 35px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.modal-footer p {
    font-size: 12px;
    color: #bbb;
    letter-spacing: 1px;
}

/* Contact Section homepage fix */
.contact-section {
    padding: 90px 0;
    background-color: #fff;
}

.contact-box {
    display: flex;
    gap: 80px;
    background: #fbfaff;
    padding: 60px;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.05);
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: #f3efff;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 18px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.contact-text p {
    font-size: 16px;
    color: #666;
}

.contact-form {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #7c3aed;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(90deg, #7c3aed, #a855f7);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}

/* Partners Section */
.partners-section {
    padding: 60px 0;
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.partners-title {
    text-align: center;
    font-size: 16px;
    color: #999;
    margin-bottom: 40px;
    font-weight: 500;
    letter-spacing: 1px;
}

.partners-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.partner-item {
    font-size: 20px;
    font-weight: bold;
    color: #ccc;
    filter: grayscale(1);
    opacity: 0.6;
    transition: all 0.3s;
}

.partner-item:hover {
    filter: grayscale(0);
    opacity: 1;
    color: #7c3aed;
    transform: scale(1.1);
}

/* CTA Bar */
.cta-bar {
    padding: 60px 0;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 86c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm66-3c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-46-45c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm40 24c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/3E%3C/svg%3E");
    z-index: 1;
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.cta-text p {
    font-size: 18px;
    opacity: 0.9;
}

.btn-cta-primary {
    display: inline-block;
    padding: 16px 45px;
    background: #fff;
    color: #7c3aed;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: #f8f5ff;
}

/* About Layout in index fix */
.about-section {
    padding: 120px 0;
    position: relative;
    background-color: #fff;
    overflow: visible;
}

.about-layout-new {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-visual {
    flex: 0 0 580px;
    position: relative;
}

.main-img-wrapper {
    width: 100%;
    height: 520px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 40px 100px rgba(124, 58, 237, 0.12);
}

.main-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #fff;
    padding: 35px;
    border-radius: 10px;
    z-index: 3;
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.3);
    text-align: center;
}

.experience-badge .years {
    display: block;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
    opacity: 0.9;
    letter-spacing: 1px;
}

.about-info-new {
    flex: 1;
}

.about-title-new {
    font-size: 44px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 30px;
}

.about-desc-new {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-features-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-item-new {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-num-box {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.feature-num {
    font-size: 36px;
    font-weight: 800;
    color: #7c3aed;
    line-height: 1;
}

.feature-suffix {
    font-size: 18px;
    font-weight: 700;
    color: #7c3aed;
}

.feature-label {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.feature-sub {
    font-size: 14px;
    color: #888;
    line-height: 1.5;
}


