@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #6c5ce7;
    --primary-hover: #5b4bc4;
    --accent: #82cd47;
    --dark: #2d3436;
    --light: #f9f9fb;
    --white: #ffffff;
    --gray: #636e72;
    --light-purple: #f3f0ff;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    padding: 15px 0;
}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    font-weight: 500;
    color: var(--dark);
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary) !important;
}

.btn-bookmark {
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
}

.btn-bookmark:hover {
    background-color: var(--primary-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgba(243, 240, 255, 0.5) 0%, rgba(255, 255, 255, 1) 90%);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

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

.text-accent-custom {
    color: var(--accent);
}

.search-container {
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    background: var(--white);
    padding: 6px;
}

.search-input {
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    width: 100%;
    outline: none;
}

.btn-search {
    background-color: var(--primary);
    color: var(--white);
    border-radius: 8px;
    padding: 10px 24px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-search:hover {
    background-color: var(--primary-hover);
}

.badge-feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-right: 20px;
    margin-bottom: 10px;
}

.badge-feature i {
    color: var(--primary);
}

/* Mockup graphic */
.hero-mockup-wrapper {
    position: relative;
}

.hero-mockup {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(108, 92, 231, 0.15);
    border: 1px solid rgba(108, 92, 231, 0.1);
    padding: 24px;
}

.mockup-header {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

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

.mockup-card {
    aspect-ratio: 1;
    background: #fdfdfd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

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

/* Tools Section */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.tool-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px 24px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.08);
    border-color: rgba(108, 92, 231, 0.15);
}

.tool-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 1.8rem;
}

.tool-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.tool-description {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 20px;
    flex-grow: 1;
}

.tool-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.tool-link:hover {
    color: var(--primary-hover);
}

.btn-explore {
    background-color: var(--primary);
    color: var(--white);
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

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

/* Why Choose Us */
.features-box {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

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

.feature-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: var(--light-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
}

/* Stats Section */
.stat-card {
    text-align: center;
    padding: 20px;
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--gray);
}

/* Footer */
footer {
    background-color: #fcfcff;
    border-top: 1px solid rgba(0,0,0,0.04);
    padding: 80px 0 30px 0;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-input {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 0.95rem;
    flex-grow: 1;
    outline: none;
}

.btn-subscribe {
    background-color: var(--primary);
    color: var(--white);
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background-color: var(--primary-hover);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.05);
    margin-top: 50px;
    padding-top: 30px;
    font-size: 0.9rem;
    color: var(--gray);
}

/* QR Type Grid Styles */
.qr-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.qr-type-btn {
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: var(--white);
    border-radius: 12px;
    padding: 10px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--dark);
    text-align: center;
    min-height: 75px;
}

.qr-type-btn i {
    font-size: 1.25rem;
    color: var(--primary);
    transition: color 0.3s ease;
}

@media (max-width: 1200px) {
    .qr-type-grid {
        gap: 6px;
    }
    .qr-type-btn {
        padding: 6px 3px;
        font-size: 0.75rem;
        min-height: 65px;
        border-radius: 8px;
    }
    .qr-type-btn i {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .qr-type-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 6px;
        -webkit-overflow-scrolling: touch;
    }
    .qr-type-btn {
        flex: 0 0 auto;
        width: 68px;
        min-height: 55px;
        padding: 5px;
        font-size: 0.7rem;
        gap: 2px;
    }
    .qr-type-btn i {
        font-size: 0.95rem;
    }
}

.qr-type-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.08);
    border-color: rgba(108, 92, 231, 0.3);
}

.qr-type-btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.qr-type-btn.active i {
    color: var(--white);
}

/* Add a Logo Ribbon Badge */
.add-logo-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #ff4757;
    color: white;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(255, 71, 87, 0.4);
    transform: rotate(12deg);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: rotate(12deg) scale(1); }
    50% { transform: rotate(12deg) scale(1.08); }
    100% { transform: rotate(12deg) scale(1); }
}

