:root {
    --primary-green: #56d793;
    --accent-orange: #fe4e12;
    --dark-text: #222222;
    --light-bg: #ffffff;
    --dark-bg: #131419;
    --light-green: #ceede3;
    --medium-green: #91f7c0;
    --dark-green: #163a30;
    --gray-light: #f4f4f4;
    --gray-medium: #dddddd;
    --gray-dark: #4f4f4f;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--light-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.navbar-brand .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    color: var(--dark-text);
    text-decoration: none;
}

.navbar-brand .logo i {
    font-size: 1.8rem;
    color: var(--primary-green);
}

.nav-link {
    font-weight: 500;
    color: var(--dark-text) !important;
    transition: all 0.3s ease;
}

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

.github-stars {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--dark-bg);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
}

.github-stars .star {
    color: #ffd700;
}

.btn-primary {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e63d00;
    border-color: #e63d00;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-green);
    border-color: var(--primary-green);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

.hero-section {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--medium-green) 100%);
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta .btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.hero-dashboard {
    background: var(--dark-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.dashboard-header {
    background: #1a1a1a;
    padding: 1rem;
    border-bottom: 1px solid #333;
}

.dashboard-tabs .tab {
    color: white;
    font-weight: 500;
}

.dashboard-content {
    padding: 2rem;
    color: white;
}

.success-rate h3 {
    color: white;
    margin-bottom: 1rem;
}

.rate-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(var(--primary-green) 0deg 331deg, #333 331deg 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
    position: relative;
}

.rate-circle::before {
    content: '';
    width: 80px;
    height: 80px;
    background: var(--dark-bg);
    border-radius: 50%;
    position: absolute;
}

.rate-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    z-index: 1;
}

.rate-details {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.metric .label {
    font-size: 0.9rem;
    color: #ccc;
}

.metric .value {
    font-weight: 600;
    color: var(--primary-green);
}

.watch-demo {
    background-color: var(--primary-green);
    border: none;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trusted-section {
    background: var(--light-bg);
}

.trusted-section h2 {
    color: var(--gray-dark);
    font-weight: 500;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.logo-item {
    text-align: center;
    font-weight: 600;
    color: var(--gray-medium);
    font-size: 1.1rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

.why-section {
    background: var(--dark-bg);
    color: white;
}

.why-content h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.why-content h3 {
    color: white;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.challenge-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

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

.challenge-icon {
    width: 50px;
    height: 50px;
    background: #da4d4d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.challenge-text {
    color: white;
    font-size: 1rem;
}

.solution-section {
    background: var(--light-green);
    padding: 5rem 0;
}

.solution-section h2 {
    font-size: 3rem;
    color: var(--dark-text);
    margin-bottom: 2rem;
}

.solution-mascot img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--dark-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--gray-dark);
    margin: 0;
}

.how-it-works-section {
    background: var(--light-bg);
}

.process-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.process-number {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.pricing-preview {
    background: var(--gray-light);
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.pricing-card.featured {
    background: var(--primary-green);
    color: white;
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
}

.cta-section {
    background: var(--dark-bg);
    color: white;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section .lead {
    color: #ccc;
    margin-bottom: 2rem;
}

.footer {
    background: var(--dark-text);
    color: white;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    color: white;
}

.footer-brand .logo i {
    color: var(--primary-green);
}

.footer h5 {
    color: white;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.contact-info a {
    color: var(--primary-green);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.pricing-hero {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--medium-green) 100%);
    padding-top: 120px;
}

.pricing-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: var(--gray-dark);
    margin-bottom: 2rem;
}

.pricing-plans {
    background: var(--light-bg);
}

.pricing-plan-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-plan-card:hover {
    transform: translateY(-10px);
}

.pricing-plan-card.featured {
    background: var(--primary-green);
    color: white;
    transform: scale(1.05);
    border: 3px solid var(--dark-green);
}

.pricing-plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
}

.plan-cta {
    margin-bottom: 2rem;
}

.plan-features {
    flex-grow: 1;
}

.plan-features h5 {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.feature-item i {
    font-size: 1rem;
}

.pricing-faq {
    background: var(--gray-light);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background: white;
    border: none;
    font-weight: 600;
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-green);
    color: white;
}

.accordion-body {
    background: white;
    padding: 1.5rem;
}

.pricing-cta {
    background: var(--dark-bg);
    color: white;
}

.pricing-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-cta .lead {
    color: #ccc;
    margin-bottom: 2rem;
}

.contact-hero {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--medium-green) 100%);
    padding-top: 120px;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--gray-dark);
    margin-bottom: 2rem;
}

.contact-form-section {
    background: var(--light-bg);
}

.contact-form-card {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-label {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    border: 2px solid var(--gray-medium);
    border-radius: 8px;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(86, 215, 147, 0.25);
}

.form-control.is-valid {
    border-color: var(--primary-green);
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.contact-info-section {
    background: var(--gray-light);
}

.contact-info-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.contact-info-card h4 {
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

.thank-you-section {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--medium-green) 100%);
    padding-top: 120px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thank-you-card {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.thank-you-icon {
    text-align: center;
    margin-bottom: 2rem;
}

.thank-you-icon i {
    font-size: 4rem;
    color: var(--primary-green);
}

.thank-you-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    text-align: center;
}

.thank-you-message {
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.6;
}

.thank-you-next-steps h3 {
    color: var(--dark-text);
    margin-bottom: 2rem;
    text-align: center;
}

.next-step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.next-step h5 {
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.next-step p {
    color: var(--gray-dark);
    margin: 0;
    font-size: 0.9rem;
}

.thank-you-actions {
    text-align: center;
}

.legal-hero {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--medium-green) 100%);
    padding-top: 120px;
}

.legal-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.legal-subtitle {
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 2rem;
}

.legal-content {
    background: var(--light-bg);
}

.legal-document {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.legal-document h2 {
    color: var(--dark-text);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--gray-light);
}

.legal-document h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-document p {
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-document ul {
    color: var(--gray-dark);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-document li {
    margin-bottom: 0.5rem;
}

.legal-document address {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
    font-style: normal;
}

.legal-document address a {
    color: var(--primary-green);
    text-decoration: none;
}

.legal-document address a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .why-content h3 {
        font-size: 1.8rem;
    }
    
    .solution-section h2 {
        font-size: 2rem;
    }
    
    .metrics {
        grid-template-columns: 1fr;
    }
    
    .pricing-title, .contact-title, .legal-title {
        font-size: 2rem;
    }
    
    .pricing-plan-card.featured {
        transform: none;
    }
    
    .contact-form-card, .legal-document {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .github-stars {
        display: none;
    }
}
