:root {
    --primary-color: #0056b3; /* Blue from logo/screenshots */
    --secondary-color: #00a86b; /* Green from logo/screenshots */
    --accent-color: #007bff; /* Lighter blue for buttons/links */
    --text-color: #333333;
    --light-text: #666666;
    --bg-color: #ffffff;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a1a;
    --white: #ffffff;
    --error-color: #dc3545;
    --success-color: #28a745;
    --font-main: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #004494;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 86, 179, 0.3);
}

.btn-submit {
    background-color: var(--secondary-color);
    color: var(--white);
    width: 100%;
    font-size: 1.1rem;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #008f5b;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 168, 107, 0.3);
}

/* Header / Hero Section */
.hero {
    position: relative;
    padding: 20px 0 80px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
    overflow: hidden;
}

.hero-bg-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iZyIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwNTZiMyIgb3BhY2l0eT0iMC4wNSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwYTg2YiIgb3BhY2l0eT0iMC4wNSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxwYXRoIGQ9Ik0wLDAgTDEwMCwwIEwxMDAsMTAwIEwwLDEwMCBaIiBmaWxsPSJ1cmwoI2cpIi8+PC9zdmc+'); /* Subtle pattern */
    z-index: 0;
    clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-icon {
    margin-right: 10px;
    font-size: 1.8rem;
}

.logo-sub {
    color: var(--text-color);
}

.contact-info a {
    color: var(--text-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 10;
}

.hero-text {
    flex: 1;
    max-width: 900px;
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(0, 86, 179, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    background: rgba(0, 168, 107, 0.1);
    padding: 10px;
    border-radius: 50%;
}

.stat-item div {
    display: flex;
    flex-direction: column;
}

.stat-item strong {
    font-size: 1.2rem;
    color: var(--text-color);
}

.stat-item span {
    font-size: 0.9rem;
    color: var(--light-text);
}


/* Lead Form Section */
.lead-section {
    padding: 80px 0;
    background-color: var(--white);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.form-header p {
    color: var(--light-text);
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.input-icon-wrapper {
    position: relative;
}

.input-icon-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.form-group input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: var(--font-main);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.error-message {
    color: var(--error-color);
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
    height: 1.2em; /* Reserve space */
}

.privacy-text {
    text-align: center;
    font-size: 0.85rem;
    color: #999;
    margin-top: 15px;
}

.privacy-text i {
    margin-right: 5px;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.step-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.step-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.step-card p {
    color: var(--light-text);
    font-size: 0.95rem;
}

.cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

.cta-wrapper h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Beliefs Section */
.beliefs {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
}

.beliefs-content {
    max-width: 800px;
    margin: 0 auto;
}

.beliefs h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.quote-box {
    position: relative;
    padding: 0 40px;
}

.quote-box i {
    font-size: 3rem;
    color: var(--secondary-color);
    opacity: 0.5;
    margin-bottom: 20px;
    display: block;
}

.quote-box p {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--white);
    overflow: hidden;
}

.testimonials-carousel {
    overflow: hidden;
    position: relative;
    margin: 0 -20px;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    animation: scroll 60s linear infinite;
    width: fit-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #eee;
    min-width: 350px;
    max-width: 350px;
    flex-shrink: 0;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.user-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.role {
    font-size: 0.85rem;
    color: var(--light-text);
}

.rating {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-card p {
    color: var(--light-text);
    font-style: italic;
}

/* Partners Section */
.partners {
    padding: 60px 0;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 40px;
}

.partner-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover {
    opacity: 1;
    color: var(--primary-color);
}

.partner-logo i {
    font-size: 2rem;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo .logo-text {
    color: #fff;
}

.footer-logo .logo-sub {
    color: #aaa;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact a {
    color: var(--secondary-color);
}

.copyright {
    text-align: center;
    color: #666;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        margin-bottom: 20px;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-bg-decoration {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
        clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid {
        gap: 30px;
    }

    .partner-logo {
        font-size: 1.2rem;
    }

    .partner-logo i {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 15px 0 60px;
    }

    .navbar {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 40px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .stat-item {
        width: 100%;
        justify-content: center;
    }

    .lead-section {
        padding: 60px 0;
    }

    .how-it-works {
        padding: 60px 0;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .beliefs {
        padding: 60px 0;
    }

    .beliefs h2 {
        font-size: 2rem;
    }

    .quote-box p {
        font-size: 1.1rem;
    }

    .testimonials {
        padding: 60px 0;
    }

    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
        padding: 25px;
    }

    .partners {
        padding: 50px 0;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    footer {
        padding: 40px 0 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .badge {
        font-size: 0.8rem;
        padding: 4px 12px;
    }

    .subtitle {
        font-size: 0.95rem;
    }

    .stat-item i {
        font-size: 1.5rem;
        padding: 8px;
    }

    .stat-item strong {
        font-size: 1rem;
    }

    .stat-item span {
        font-size: 0.8rem;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }

    .form-wrapper {
        padding: 25px 20px;
    }

    .form-header h2 {
        font-size: 1.5rem;
    }

    .form-header p {
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .step-card {
        padding: 25px 20px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
    }

    .step-icon i {
        font-size: 1.5rem;
    }

    .step-card h3 {
        font-size: 1.1rem;
    }

    .step-card p {
        font-size: 0.9rem;
    }

    .cta-wrapper h3 {
        font-size: 1.2rem;
    }

    .beliefs h2 {
        font-size: 1.6rem;
    }

    .quote-box {
        padding: 0 20px;
    }

    .quote-box i {
        font-size: 2rem;
    }

    .quote-box p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
        padding: 20px;
    }

    .avatar {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .user-info h4 {
        font-size: 1rem;
    }

    .role {
        font-size: 0.8rem;
    }

    .testimonial-card p {
        font-size: 0.9rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .partner-logo {
        font-size: 1.1rem;
        justify-content: center;
    }

    .partner-logo i {
        font-size: 1.3rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .logo-icon {
        font-size: 1.5rem;
    }

    .contact-info a {
        font-size: 0.9rem;
    }
}

/* Utility classes for accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}