/* Cveloo Landing Page - Modern Professional Design */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-color: #00A859;
    --primary-dark: #008748;
    --primary-light: #33B879;
    --secondary-color: #0066CC;
    --accent-color: #FF6B35;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --text-light: #999999;
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-gray: #F5F5F5;
    --border-color: #E5E5E5;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-size-base: 12.8px;
    --line-height-base: 1.6;
    
    /* Spacing */
    --spacing-xs: 0.4rem;
    --spacing-sm: 0.8rem;
    --spacing-md: 1.6rem;
    --spacing-lg: 2.4rem;
    --spacing-xl: 3.2rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all var(--transition-base);
    border-bottom: 1px solid rgba(0, 168, 89, 0.1);
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.99);
    border-bottom: 1px solid rgba(0, 168, 89, 0.15);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 16px;
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-base);
}

.nav-brand:hover .logo-img {
    transform: scale(1.05);
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
    position: relative;
    font-size: 0.85rem;
    padding: 0.3rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-base);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-cta {
    margin-left: 0.8rem;
}

.btn-nav-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white !important;
    padding: 0.94rem 2rem;
    border-radius: 25px;
    font-size: 0.72rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 168, 89, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all var(--transition-base);
    border: 6px solid rgba(255, 255, 255, 0.3);
}

.btn-nav-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 89, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
    border-width: 6px;
}

.btn-nav-primary i {
    font-size: 0.7rem;
    color: white;
}

.btn-nav-secondary {
    background: linear-gradient(135deg, var(--secondary-color), #0052a3);
    color: white !important;
    border: 6px solid rgba(255, 255, 255, 0.4);
    padding: 0.94rem 2rem;
    border-radius: 25px;
    font-size: 0.72rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all var(--transition-base);
}

.btn-nav-secondary:hover {
    background: linear-gradient(135deg, #0052a3, var(--secondary-color));
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
    border-width: 6px;
}

.btn-nav-secondary i {
    font-size: 0.7rem;
    color: white;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0 40px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 168, 89, 0.85) 0%, rgba(0, 102, 204, 0.75) 100%);
    z-index: 1;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3.2rem;
    align-items: center;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 1.6rem 0;
}

@media (min-width: 992px) {
    .hero-wrapper {
        grid-template-columns: 1.2fr 1fr;
    }
}

.hero-content {
    text-align: left;
    animation: fadeInLeft 1s ease;
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    color: white;
    font-size: 0.72rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 3;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-badge i {
    color: white;
    font-size: 0.8rem;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-container {
    animation: fadeInRight 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform var(--transition-base);
    width: 100%;
    max-width: 440px;
    background: white;
}

.hero-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: cover;
    min-height: 360px;
    max-height: 480px;
}

.hero-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s ease-in-out infinite;
}

.hero-image-badge i {
    font-size: 1.6rem;
    color: var(--primary-color);
}

.hero-image-badge strong {
    display: block;
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 800;
}

.hero-image-badge span {
    display: block;
    font-size: 0.68rem;
    color: var(--text-gray);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: linear-gradient(135deg, #ffffff, #f0f0f0, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.hero-subtitle {
    font-size: clamp(0.8rem, 1.6vw, 1rem);
    color: rgba(255, 255, 255, 0.98);
    margin-bottom: 0.75rem;
    line-height: 1.8;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.hero-buttons {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0.6rem;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-base);
    text-align: center;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-trust {
    display: flex;
    justify-content: flex-start;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 0.6rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 40px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: transform var(--transition-fast);
}

.trust-badge:hover {
    transform: translateY(-2px);
}

.trust-badge i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.btn {
    display: inline-block;
    padding: 0.7rem 1.6rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 40px;
    transition: all var(--transition-base);
    border: 10px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Hero section secondary button - better visibility */
.hero .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
    border-width: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-large {
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3.2rem;
    flex-wrap: wrap;
    margin-top: 1.2rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: white;
    font-size: 1.2rem;
    z-index: 2;
    background: rgba(255, 255, 255, 0.2);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Quick Links Section */
.quick-links-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 1.2rem 0;
    position: relative;
    overflow: hidden;
}

.quick-links-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.2rem;
}

.quick-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.6rem;
    background: white;
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.quick-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.quick-link-card:hover::before {
    transform: scaleX(1);
}

.quick-link-card:hover {
    background: white;
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    color: var(--text-dark);
    border-color: var(--primary-color);
}

.quick-link-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 168, 89, 0.3);
    transition: all var(--transition-base);
}

.quick-link-card:hover .quick-link-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(0, 168, 89, 0.4);
}

.quick-link-card:nth-child(2) .quick-link-icon {
    background: linear-gradient(135deg, var(--secondary-color), #764ba2);
}

.quick-link-card:nth-child(3) .quick-link-icon {
    background: linear-gradient(135deg, var(--accent-color), #FF8C5A);
}

.quick-link-card:nth-child(4) .quick-link-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.quick-link-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.quick-link-card p {
    color: var(--text-gray);
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.quick-link-stats {
    margin-top: auto;
    padding: 0.6rem 0.8rem;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 0.68rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    width: 100%;
    justify-content: center;
    margin-bottom: 1rem;
}

.quick-link-stats i {
    color: var(--primary-color);
}

.quick-link-arrow {
    color: var(--primary-color);
    font-size: 1rem;
    transition: transform var(--transition-base);
}

.quick-link-card:hover .quick-link-arrow {
    transform: translateX(5px);
}

/* Section Styles */
section {
    padding: 1.2rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 1.2rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    max-width: 480px;
    margin: 0 auto;
}

/* Businesses Section */
.businesses-section {
    background: white;
    padding: 1.44rem 0;
    position: relative;
}

.businesses-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(180deg, var(--bg-light) 0%, transparent 100%);
    pointer-events: none;
}

.businesses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 1.6rem;
    margin-top: 0.9rem;
}

.business-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2.8rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all var(--transition-base);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.business-card:hover::before {
    transform: scaleX(1);
}

.business-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.business-card[data-business="mail"]::before {
    background: linear-gradient(90deg, var(--secondary-color), #764ba2);
}

.business-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 0.6rem;
    box-shadow: 0 10px 30px rgba(0, 168, 89, 0.3);
    transition: all var(--transition-base);
}

.business-card:hover .business-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 168, 89, 0.4);
}

.business-card[data-business="mail"] .business-icon {
    background: linear-gradient(135deg, var(--secondary-color), #764ba2);
}

.business-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.business-description {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.business-features {
    list-style: none;
    margin-bottom: 0.6rem;
}

.business-features li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.business-features i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.business-card[data-business="mail"] .business-features i {
    color: var(--secondary-color);
}

.business-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all var(--transition-fast);
}

.btn-link:hover {
    gap: 0.8rem;
}

.business-card[data-business="mail"] .btn-link {
    color: var(--secondary-color);
}

.business-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 16px;
    font-size: 0.68rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: var(--shadow-sm);
    z-index: 10;
}

.business-badge-secondary {
    background: var(--secondary-color);
}

.business-badge i {
    font-size: 0.72rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* Features Section */
.features-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 1.44rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.6rem;
    margin-top: 0.9rem;
}

.feature-item {
    text-align: center;
    padding: 2rem 1.6rem;
    border-radius: 16px;
    transition: all var(--transition-base);
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    background: white;
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 1.2rem;
    box-shadow: 0 8px 20px rgba(0, 168, 89, 0.25);
    transition: all var(--transition-base);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(0, 168, 89, 0.35);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-description {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.8rem;
}

.feature-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    background: var(--bg-light);
    border-radius: 16px;
    font-size: 0.72rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1rem;
}

.feature-highlight i {
    font-size: 0.68rem;
}

/* How It Works Section */
.how-it-works-section {
    background: white;
    padding: 1.44rem 0;
    position: relative;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3.2rem;
    margin-top: 1.2rem;
    position: relative;
}

.step-item {
    text-align: center;
    position: relative;
    padding: 1.6rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
}

.step-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.step-number-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.6rem;
}

.step-connector {
    width: 2px;
    height: 48px;
    background: linear-gradient(180deg, var(--primary-color), transparent);
    margin: 0.8rem 0;
    opacity: 0.3;
}

.step-item:last-child .step-connector {
    display: none;
}

.step-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    margin: 0 auto 1.2rem;
    box-shadow: 0 6px 15px rgba(0, 168, 89, 0.25);
}

.step-number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    font-size: 2.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 168, 89, 0.3);
    transition: all var(--transition-base);
    position: relative;
    z-index: 2;
}

.step-item:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 168, 89, 0.4);
}

.step-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-description {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.8rem;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1.44rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.6rem;
    margin-top: 0.9rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 168, 89, 0.25);
}

.testimonial-rating {
    color: #FFA500;
    font-size: 0.8rem;
}

.testimonial-rating i {
    margin-right: 0.25rem;
}

.testimonial-text {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-size: 0.84rem;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 2.4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-quote {
    position: absolute;
    bottom: 1.5rem;
    right: 2rem;
    font-size: 2.4rem;
    color: var(--primary-color);
    opacity: 0.1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.testimonial-author strong {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.84rem;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.72rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 1.2rem 0;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    opacity: 0.95;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.cta-guarantee {
    margin-top: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 0.76rem;
    opacity: 0.95;
}

.cta-guarantee i {
    font-size: 1rem;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1.44rem 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.about-content {
    margin-top: 0.72rem;
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.2rem;
    margin-bottom: 3.2rem;
    align-items: start;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.about-intro {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
}

.about-intro-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.2rem;
}

.about-intro-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.about-description {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-value-item {
    display: flex;
    gap: 1rem;
    align-items: start;
    background: white;
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.about-value-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.about-value-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.about-value-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.about-value-content p {
    font-size: 0.8rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.about-stats-container {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 2.4rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
}

.about-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
}

.about-stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.about-stat-icon {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

.about-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.4rem;
    display: block;
}

.about-stat-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
    margin-top: 0.72rem;
}

.about-feature-card {
    background: white;
    padding: 1.6rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.about-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.about-feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.4rem;
}

.about-feature-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.about-feature-card p {
    font-size: 0.8rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .about-main {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq-section {
    background: var(--bg-light);
    padding: 1.44rem 0;
    position: relative;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin: 2.4rem 0;
    flex-wrap: wrap;
}

.faq-category-btn {
    padding: 0.6rem 1.2rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    transition: all var(--transition-base);
}

.faq-category-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.faq-category-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.faq-container {
    max-width: 800px;
    margin: 0.72rem auto 0;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all var(--transition-base), opacity 0.3s ease, transform 0.3s ease;
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
    opacity: 1;
    transform: translateY(0);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.faq-item.hidden {
    display: none;
}

.faq-question {
    width: 100%;
    padding: 1.2rem 1.6rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-fast);
    gap: 1rem;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 1;
}

.faq-question-icon {
    color: var(--primary-color);
    font-size: 1rem;
    width: 24px;
    text-align: center;
}

.faq-chevron {
    color: var(--primary-color);
    transition: transform var(--transition-base);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.6rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.6rem 1.6rem;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.85rem;
    margin: 0;
}

.faq-answer p strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.6rem;
    margin-top: 0.9rem;
}

.contact-item {
    text-align: center;
    padding: 1.6rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    text-decoration: none;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    color: var(--text-dark);
}

.contact-action {
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.72rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap var(--transition-fast);
}

.contact-item:hover .contact-action {
    gap: 0.6rem;
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    margin: 0 auto 1.2rem;
}

.contact-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-info {
    color: var(--text-gray);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3.2rem 0 1.6rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.4rem;
    margin-bottom: 3rem;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.social-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 1.6rem;
        transition: left var(--transition-base);
        box-shadow: var(--shadow-lg);
        gap: 0.8rem;
    }

    .nav-cta {
        margin-left: 0;
        width: 100%;
    }

    .btn-nav-primary,
    .btn-nav-secondary {
        width: 100%;
        text-align: center;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2.4rem;
        text-align: center;
        padding-top: 1.6rem;
    }

    .hero-content {
        text-align: center;
        margin-top: 0;
    }
    
    .hero-badge {
        margin-top: 0;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
    }

    .btn {
        text-align: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-stats {
        gap: 1.6rem;
    }

    .hero-image-wrapper {
        transform: none;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-image-wrapper:hover {
        transform: scale(1.02);
    }

    .businesses-grid {
        grid-template-columns: 1fr;
    }

    .business-card {
        padding: 1.6rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .about-main {
        grid-template-columns: 1fr;
        gap: 2.4rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .about-stats-container {
        padding: 1.6rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .faq-categories {
        gap: 0.6rem;
    }
    
    .faq-category-btn {
        font-size: 0.72rem;
        padding: 0.5rem 1rem;
    }
    
    .faq-question {
        padding: 1rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .faq-question-content {
        gap: 0.6rem;
    }
    
    .faq-question-icon {
        font-size: 0.9rem;
        width: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 30px;
    }
    
    .hero-badge {
        margin-top: 0;
        margin-bottom: 1.2rem;
        padding: 0.5rem 1rem;
        font-size: 0.68rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .business-card {
        padding: 1.2rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .hero-logo-img {
        height: 40px;
    }

    .trust-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .quick-link-card {
        padding: 1.2rem;
    }
    
    .about-intro {
        padding: 1.6rem;
    }
    
    .about-intro-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .about-stats-container {
        padding: 1.2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .about-stat-number {
        font-size: 1.6rem;
    }
    
    .about-feature-card {
        padding: 1.2rem;
    }
    
    .about-feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    
    .faq-categories {
        flex-direction: column;
        align-items: stretch;
    }
    
    .faq-category-btn {
        width: 100%;
        text-align: center;
    }
    
    .faq-question {
        padding: 0.9rem 1rem;
        font-size: 0.8rem;
    }
    
    .faq-answer p {
        font-size: 0.8rem;
    }
}

/* Smooth Scroll Animation */
@media (prefers-reduced-motion: no-preference) {
    .fade-in {
        animation: fadeInUp 0.6s ease forwards;
    }
}

