:root {
    --primary: #5840ef;
    --primary-light: #6f5bf1;
    --primary-dark: #4733d2;
    --primary-lighter: #eeecfc;
    --text-dark: #1e1b4b;
    --text-medium: #4b4870;
    --text-light: #6e6c85;
}

body {
    color: var(--text-medium);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

.bg-primary-custom {
    background-color: var(--primary) !important;
}

.bg-light-custom {
    background-color: #f8f9ff;
}

.bg-purple-light {
    background-color: var(--primary-lighter);
}

.text-primary-custom {
    color: var(--primary) !important;
}

.btn-primary-custom {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(88, 64, 239, 0.3);
}

.btn-outline-primary-custom {
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.3s;
}

.btn-outline-primary-custom:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(88, 64, 239, 0.2);
}

.navbar-brand {
    font-weight: 700;
}

.nav-link {
    color: var(--text-medium);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.logo-icon {
    background-color: var(--primary);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 8px;
}

.hero-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 2.2rem;
    }
}

.card {
    border: none;
    border-radius: 16px;
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(88, 64, 239, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    background-color: var(--primary);
    border-radius: 12px;
    margin-bottom: 20px;
}

.testimonial-card {
    border-radius: 16px;
    border: none;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.customer-card {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.card-mockup {
    background-color: var(--primary);
    border-radius: 16px;
    height: 220px;
    width: 100%;
    padding: 20px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(88, 64, 239, 0.3);
}

.card-chip {
    width: 45px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    margin-bottom: 30px;
}

.card-wave {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.card-number {
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.purple-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: var(--primary);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.purple-circle-1 {
    top: -150px;
    right: -100px;
}

.purple-circle-2 {
    bottom: -150px;
    left: -100px;
}

.app-mockup {
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    max-width: 100%;
    height: auto;
}

.land-app {
    max-width: 100%;
    height: auto;
    rotate: 5deg;
}

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.feature-check {
    color: var(--primary);
    margin-right: 10px;
}

.partner-logo {
    opacity: 0.7;
    transition: opacity 0.3s;
    max-height: 40px;
    width: auto;
}

.partner-logo:hover {
    opacity: 1;
}

.step-circle {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
}

footer {
    background-color: #1a1940;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: white;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.download-btn {
    display: inline-flex;
    align-items: center;
    background-color: #121026;
    color: white;
    border-radius: 12px;
    padding: 8px 20px;
    text-decoration: none;
    transition: all 0.3s;
    margin-right: 10px;
    margin-bottom: 10px;
}

.download-btn:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.download-btn i {
    font-size: 24px;
    margin-right: 10px;
}