/* Reset & Variables */
@property --angle-1 {
    syntax: "<angle>";
    inherits: false;
    initial-value: -75deg;
}

@property --angle-2 {
    syntax: "<angle>";
    inherits: false;
    initial-value: -45deg;
}

:root {
    --anim--hover-time: 400ms;
    --anim--hover-ease: cubic-bezier(0.25, 1, 0.5, 1);
    --primary-blue: #2566b1;
    --primary-hover: #072446;
    --dark-blue: #0F172A;
    --text-dark: #1E293B;
    --text-gray: #475569;
    --text-light: #94A3B8;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --border-color: #E2E8F0;

    --font-family: 'Inter', sans-serif;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

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

body {
    font-family: var(--font-family);
    color: var(--text-gray);
    line-height: 1.6;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #2361a8;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.text-blue {
    color: var(--primary-blue) !important;
}

.text-gradient {
    color: var(--primary-blue);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: #fff;
    box-shadow: 0 4px 14px 0 rgba(30, 101, 208, 0.39);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: #fff;
    box-shadow: 0 6px 20px rgba(30, 101, 208, 0.23);
    transform: translateY(-1px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-outline {
    background: white;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
}

.btn-outline:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    box-shadow: 0 6px 20px rgba(30, 101, 208, 0.1);
    transform: translateY(-1px);
}

.btn-outline-light {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.btn-display {
    display: inline-block;
    background-color: #fff;
    color: var(--text-dark);
    border-radius: 9999px;
    font-weight: 600;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    cursor: default;
    text-align: center;
    transition: none;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background-color: #EFF6FF;
    color: var(--primary-blue);
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.badge i {
    font-size: 1rem;
}

.dark-badge {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgb(255 255 255 / 70%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
    backdrop-filter: blur(10px);
}

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

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
}

.nav-left {
    gap: 40px;
}

.nav-right {
    gap: 32px;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: var(--text-gray);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-dark);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-blue);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-size: 2rem;
    cursor: pointer;
}

/* Mobile Drawer */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 1000;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

#menu-close {
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text-dark);
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-nav-links a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

@media (max-width: 992px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-menu-btn {
        display: block;
        margin-left: 10px;
    }

    .nav-right {
        gap: 12px;
        /* Tighter gap on mobile */
    }

    .nav-right .btn {
        padding: 8px 16px;
        /* Smaller button on mobile */
        font-size: 1.1rem;
    }
}

/* Hero Section */
.hero {
    padding: 150px 0 60px;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, #EFF6FF 0%, #FFFFFF 100%);
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    line-height: 1.05;
    word-spacing: 1.1rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Marquee */
.marquee {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-gray);
    margin-right: 40px;
}

.marquee-item i {
    font-size: 1.2rem;
    color: var(--primary-blue);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 0px;
}

.feature-card {
    background-color: #eff6ff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: #BFDBFE;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    color: var(--primary-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.feature-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.stat-number {
    font-size: 2.5rem;
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.05em;
}

/* Alternating Layout */
.alternating-features {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.split-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

.split-row.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.split-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.split-desc {
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.list-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background-color: #EFF6FF;
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.list-text strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.list-text span {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1.05rem;
}

.text-link:hover {
    gap: 12px;
}

.split-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.ecosystem-img {
    width: 100%;
    /* max-width: 649px; */
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    transition: transform 0.4s ease;
}

.ecosystem-img:hover {
    transform: translateY(-10px);
}

/* UI Mockups */
.ui-mockup {
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 450px;
    padding: 24px;
    border: 1px solid var(--border-color);
}

/* Worker Profile Mockup */
.ui-mockup-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.ui-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.ui-header-info {
    flex: 1;
}

.ui-header-info strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.ui-header-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.ui-status {
    background-color: #DCFCE7;
    color: #166534;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.ui-mockup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.ui-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.ui-val {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.text-red {
    color: #DC2626;
}

.text-green {
    color: #16A34A;
}

.ui-mockup-metrics {
    background-color: var(--bg-light);
    padding: 16px;
    border-radius: 12px;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-gray);
}

.metric-row:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

/* Timeline Mockup */
.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.ui-status.outline {
    background-color: transparent;
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background-color: var(--border-color);
}

.timeline-step {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 32px;
    height: 32px;
    background-color: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-light);
}

.timeline-step.completed .step-icon {
    background-color: #16A34A;
    border-color: #16A34A;
    color: #fff;
}

.timeline-step.active .step-icon {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    background-color: #fff;
}

.step-info strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.step-info span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Service Mockup */
.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.service-header a {
    font-size: 0.85rem;
    font-weight: 600;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.2s;
}

.service-item:hover {
    border-color: var(--primary-blue);
}

.service-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.service-icon.blue {
    background-color: #EFF6FF;
    color: var(--primary-blue);
}

.service-icon.green {
    background-color: #DCFCE7;
    color: #16A34A;
}

.service-icon.orange {
    background-color: #FFEDD5;
    color: #EA580C;
}

.service-info {
    flex: 1;
}

.service-info strong {
    display: block;
    font-size: 0.95rem;
}

.service-info span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.service-status {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 9999px;
}

.service-status.pending {
    background-color: #FEF3C7;
    color: #D97706;
}

.service-status.approved {
    background-color: #DCFCE7;
    color: #16A34A;
}

.service-status.booked {
    background-color: #DBEAFE;
    color: #1D4ED8;
}

.btn-full {
    width: 100%;
    padding: 12px;
    background-color: var(--dark-blue);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}

.btn-full:hover {
    background-color: #1e293b;
}

/* Dark Section */
.dark-section {
    background: linear-gradient(135deg, #1A2744 0%, #0F172A 100%);
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.dark-title {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.dark-subtitle {
    color: #94A3B8;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.trust-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* Timeline Connecting Line */
.trust-cards::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 0;
}

.trust-card {
    background: #131d32;
    /* Solid color to hide the line behind the card */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: left;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.trust-card::after {
    content: attr(data-step);
    position: absolute;
    top: -27px;
    right: -8px;
    font-size: 167px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    z-index: 0;
    line-height: 1;
    pointer-events: none;
    transition: 0.5s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
    border-color: rgba(96, 165, 250, 0.4);
}

.trust-card:hover::after {
    content: attr(data-step);
    position: absolute;
    top: -27px;
    right: -8px;
    font-size: 167px;
    font-weight: 900;
    color: rgb(35 65 127);
    transition: 0.5s ease;
}

.trust-card h3 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.trust-card p {
    position: relative;
    z-index: 2;
    color: #94A3B8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.trust-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(37, 99, 235, 0.2);
    color: #60A5FA;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.pill-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 500;
}

.pill i {
    color: #60A5FA;
}

.dark-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Why Us Section */
.why-us {
    padding: 100px 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
}

.why-us-title {
    font-size: 2.8rem;
    margin-bottom: 24px;
    text-align: left;
    color: #fff;
}

.why-us-image {
    position: relative;
    display: flex;
    justify-content: center;
    animation: floatGlobe 6s ease-in-out infinite;
}

.why-us-image img {
    width: 85%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 50px rgba(37, 102, 177, 0.2));
    animation: rotateGlobe 50s linear infinite;
}

@keyframes floatGlobe {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-25px); }
}

@keyframes rotateGlobe {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(46, 125, 50, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.play-btn-overlay:hover {
    background: rgba(46, 125, 50, 1);
    transform: translate(-50%, -50%) scale(1.05);
}

.why-us-desc {
    font-size: 1.1rem;
    color: #94A3B8;
    margin-bottom: 30px;
    line-height: 1.6;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
}

.why-list .check-icon {
    color: #4CAF50;
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.faq-container {
    display: flex;
    gap: 60px;
}

.faq-left {
    flex: 1;
}

.faq-desc {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
}

.contact-card h4 {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-gray);
}

.contact-item a {
    color: inherit;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-blue);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: var(--primary-blue);
    font-size: 20px;
}

.faq-right {
    flex: 1.5;
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
}

.accordion-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.accordion-header i {
    transition: transform 0.3s ease;
    font-size: 20px;
    color: var(--text-light);
}

.accordion-body {
    padding-bottom: 24px;
    display: none;
    color: var(--text-gray);
    line-height: 1.7;
}

.accordion-item.active .accordion-body {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

/* Footer */
.footer {
    background-color: var(--dark-blue);
    color: #fff;
    padding: 80px 0 30px;
}

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

.footer-logo {
    height: 70px;
    margin-bottom: 24px;
    /* filter: brightness(0) invert(1); */
}

.footer-brand p {
    color: #94A3B8;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

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

.social-links a:hover {
    background: var(--primary-blue);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    color: #fff;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: #94A3B8;
    font-size: 0.95rem;
}

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

.footer-contact p {
    color: #94A3B8;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.footer-contact a {
    color: inherit;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #64748B;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .why-us-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .why-us-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .why-us-content {
        order: 1;
    }

    .why-us-image {
        order: 2;
        max-width: 80%;
        margin: 0 auto;
    }

    .why-list li {
        justify-content: center !important;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .split-row,
    .split-row.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .trust-cards {
        grid-template-columns: 1fr;
    }

    .trust-cards::before {
        display: none;
    }

    .faq-container {
        flex-direction: column;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

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

    .hero-title {
        font-size: 2.4rem;
        word-spacing: normal;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .dark-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .split-title {
        font-size: 1.4rem;
    }

    body {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .dark-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .why-us-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Reveal for Grids */
.reveal-stagger>* {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.reveal-stagger.active>* {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.active>*:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal-stagger.active>*:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal-stagger.active>*:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal-stagger.active>*:nth-child(4) {
    transition-delay: 0.4s;
}

.reveal-stagger.active>*:nth-child(5) {
    transition-delay: 0.5s;
}

.reveal-stagger.active>*:nth-child(6) {
    transition-delay: 0.6s;
}

/* Visual Transition Section */
.visual-transition {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 40px auto 0;
    height: 60vh;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.visual-transition::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-image: url('image/home/klcc2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    animation: zoom-move 30s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes zoom-move {
    0% {
        transform: scale(1) translateY(0);
    }

    100% {
        transform: scale(1.1) translateY(-2%);
    }
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.1) 100%);
    z-index: 2;
}

.visual-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agency-glass-card,
.wallet-glass-card {
    position: absolute;
    width: 100%;
    max-width: 480px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(30px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.agency-glass-card.active,
.wallet-glass-card.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Visual Navigation dots */
.visual-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #fff;
    width: 32px;
    border-radius: 10px;
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.agency-glass-card,
.wallet-glass-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 40px;
    padding: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    text-align: left !important;
}

.agency-header,
.wallet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.agency-header h3,
.wallet-header h3 {
    font-size: 1.6rem;
    color: white !important;
    margin: 0;
    font-weight: 700;
}

.wallet-header .balance-large {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}

.status-pill {
    padding: 6px 18px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Shared Interface Styles */
.interface-items {
    margin-bottom: 25px;
}

.item-group {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 18px 24px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    text-align: left !important;
}

.item-group:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.1);
}

.item-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: left !important;
}

.item-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.item-main-content {
    display: flex;
    align-items: center;
}

.item-icon-small {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    margin-right: 12px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.item-value {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.item-unit {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.balance-large {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}

.item-info-main strong {
    display: block;
    font-size: 1.15rem;
    color: white;
    margin-bottom: 2px;
}

.item-info-main p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.btn-interface {
    width: 100%;
    margin-top: 15px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 999px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-interface:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-item-action {
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-item-action:hover {
    background: rgba(255, 255, 255, 0.3);
}

.item-group.urgent {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.08);
}

.item-group.urgent .item-value {
    color: #fca5a5;
}

@media (max-width: 768px) {

    .agency-glass-card,
    .wallet-glass-card,
    .transfer-glass-card {
        padding: 30px 20px;
        max-width: 90%;
    }

    .agency-header h3,
    .wallet-header h3,
    .transfer-header h3 {
        font-size: 1.3rem;
    }

    .item-value {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .visual-transition {
        height: 400px;
        background-attachment: scroll;
    }
}

/* Platform Showcase */
.platform-showcase {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.glass-showcase-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 60px auto 0;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

/* Simplify Section */
.simplify-section,
#simplify-ops {
    background-color: var(--primary-blue);
    color: white;
    padding: 100px 0;
    overflow: hidden;
}

.simplify-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.simplify-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: #fff;
}

.simplify-desc {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
}

.btn-white {
    background-color: white;
    color: var(--primary-blue);
}

.btn-white:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.simplify-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
}

.simplify-feature {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.simplify-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: invert(1);
}

.simplify-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.simplify-info h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: #ffffff;
}

.simplify-info p {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
    .simplify-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .simplify-title {
        font-size: 2.8rem;
    }

    .simplify-desc {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .simplify-features {
        grid-template-columns: 1fr;
    }
}

/* Final CTA Section */
.final-cta {
    padding: 120px 0;
    background-color: var(--bg-white);
}

.cta-card {
    background: linear-gradient(135deg, #2566b1 0%, #2566b1 100%);
    border-radius: 48px;
    padding: 100px 60px;
    text-align: center;
    color: white;
    box-shadow: 0 50px 120px rgba(30, 101, 208, 0.25);
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white !important;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .cta-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .cta-card {
        padding: 60px 30px;
        border-radius: 32px;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
        margin-bottom: 32px;
    }

    .cta-actions {
        flex-direction: column;
        gap: 16px;
    }

    .cta-actions .btn {
        width: 100%;
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 0 0 0;
    background-color: var(--bg-white);
}

.faq-wrapper {
    display: flex;
    gap: 100px;
}

.faq-left {
    flex: 1;
}

.faq-right {
    flex: 1.5;
}

.faq-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: #1a4f8b;
    line-height: 1.1;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 500px;
}

.get-in-touch {
    background-color: #f8fafc;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.get-in-touch h3 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: #1a4f8b;
    font-weight: 700;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    color: #475569;
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--primary-blue);
}

/* Accordion Styles */
.accordion {
    display: flex;
    flex-direction: column;
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
    padding: 24px 0;
}

.accordion-item:first-child {
    padding-top: 0;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header h3 {
    font-size: 1.1rem;
    color: #1a4f8b;
    font-weight: 700;
    margin: 0;
}

.accordion-header i {
    font-size: 1.2rem;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

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

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding-top: 16px;
}

.accordion-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .faq-wrapper {
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .faq-wrapper {
        flex-direction: column;
        gap: 60px;
    }

    .faq-title {
        font-size: 2.8rem;
    }

    .faq-right {
        flex: 1;
    }
}