:root {
    --primary-dark: rgb(5, 31, 29);
    --secondary-dark: rgb(5, 47, 44);
    --accent-green: rgb(34, 197, 94);
    --light-green: rgb(220, 252, 231);
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --gradient-primary: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-green) 0%, rgb(16, 185, 129) 100%);
}

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

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--secondary-dark);
    background-color: var(--white);
}

.navbar {
    background: var(--primary-dark);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    text-decoration: none;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
}

.navbar-nav .nav-link {
    color: var(--white);
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-green);
}

.navbar-toggler {
    border: none;
    color: var(--white);
}

.hero-section {
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 550;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-description {
    margin-bottom: 2.5rem;
}

.hero-description p {
    margin-bottom: 1rem;
    opacity: 0.85;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: 64px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
}

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

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.geometric-pattern {
    position: relative;
    height: 500px;
    width: 100%;
}

.cube {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 12px;
    animation: float 6s ease-in-out infinite;
    opacity: 0.8;
}

.cube-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.cube-2 {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.cube-3 {
    bottom: 40%;
    left: 10%;
    animation-delay: 2s;
}

.cube-4 {
    bottom: 20%;
    right: 25%;
    animation-delay: 3s;
}

.cube-5 {
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

.cube-6 {
    top: 70%;
    right: 40%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.stats-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.section-title {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.section-heading {
    font-size: 3rem;
    font-weight: 600;
    color: var(--secondary-dark);
    margin-bottom: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 1rem;
}

.stat-description {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

.features-section {
    padding: 6rem 0;
    background: var(--white);
}

.feature-card {
    padding: 2.5rem;
    border-radius: 16px;
    height: 100%;
    transition: transform 0.3s ease;
}

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

.feature-card-1 {
    background: var(--light-green);
}

.feature-card-2 {
    background: #f1f5f9;
}

.feature-card-3 {
    background: #fef3c7;
}

.feature-card-4 {
    background: #e0f2fe;
}

.feature-card-5 {
    background: #fce7f3;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.cta-section {
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
}

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

.cta-section p {
    font-size: 1.125rem;
    opacity: 0.9;
}

.btn-cta {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.btn-cta:hover {
    background: var(--accent-green);
    color: var(--white);
    border-color: var(--accent-green);
    transform: translateY(-2px);
}

.geometric-pattern-cta {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cube-cta-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.cube-cta-2 {
    top: 60%;
    right: 5%;
    animation-delay: 1s;
}

.cube-cta-3 {
    top: 30%;
    right: 25%;
    animation-delay: 2s;
}

.cube-cta-4 {
    bottom: 20%;
    right: 15%;
    animation-delay: 3s;
}

.cube-cta-5 {
    top: 80%;
    right: 30%;
    animation-delay: 4s;
}

.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 3rem 0 2rem;
}

.footer-brand .logo-text {
    font-size: 1.25rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
    align-items: center;
}

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

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

.footer-contact {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-contact h5 {
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-contact a {
    color: var(--white);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--accent-green);
}

.pricing-hero {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8rem 0 4rem;
    text-align: center;
}

.pricing-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pricing-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-plans {
    padding: 4rem 0;
    background: var(--light-gray);
}

.pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-featured {
    border-color: var(--accent-green);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

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

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-dark);
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-green);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-dark);
}

.period {
    font-size: 1rem;
    color: var(--medium-gray);
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--secondary-dark);
}

.pricing-features i {
    color: var(--accent-green);
    font-size: 1rem;
}

.pricing-footer {
    margin-top: 2rem;
    text-align: center;
}

.btn-pricing {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
    width: 100%;
}

.btn-pricing:hover {
    background: var(--accent-green);
    border-color: var(--accent-green);
}

.btn-pricing-featured {
    background: var(--gradient-accent);
    color: var(--white);
    border: none;
    width: 100%;
}

.btn-pricing-featured:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.pricing-features-detail {
    padding: 6rem 0;
    background: var(--white);
}

.feature-detail {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-detail .feature-icon {
    flex-shrink: 0;
    margin-bottom: 0;
}

.feature-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-dark);
    margin-bottom: 0.75rem;
}

.feature-content p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.pricing-faq {
    padding: 6rem 0;
    background: var(--light-gray);
}

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

.accordion-button {
    background: var(--white);
    color: var(--secondary-dark);
    font-weight: 600;
    border: none;
    padding: 1.5rem;
}

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

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    background: var(--white);
    color: var(--medium-gray);
    padding: 1.5rem;
}

.pricing-cta {
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: var(--white);
}

.contact-hero {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8rem 0 4rem;
    text-align: center;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

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

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

.form-control,
.form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 0.2rem rgba(34, 197, 94, 0.25);
}

.form-check-input:checked {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
}

.thank-you-message {
    text-align: center;
    padding: 3rem;
    background: var(--light-green);
    border-radius: 16px;
    margin-top: 2rem;
}

.thank-you-message i {
    font-size: 4rem;
    color: var(--accent-green);
    margin-bottom: 1.5rem;
}

.thank-you-message h3 {
    color: var(--secondary-dark);
    margin-bottom: 1rem;
}

.thank-you-message p {
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.contact-info {
    padding: 6rem 0;
    background: var(--white);
}

.contact-info-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: var(--light-gray);
    height: 100%;
    transition: transform 0.3s ease;
}

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

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

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

.contact-info-card a {
    color: var(--medium-gray);
    text-decoration: none;
}

.contact-info-card a:hover {
    color: var(--accent-green);
}

.legal-hero {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8rem 0 4rem;
}

.legal-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.legal-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
}

.legal-content {
    padding: 4rem 0;
    background: var(--white);
}

.legal-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--secondary-dark);
}

.legal-text h3 {
    color: var(--secondary-dark);
    font-weight: 600;
    margin: 2.5rem 0 1rem;
    font-size: 1.5rem;
}

.legal-text p {
    margin-bottom: 1.5rem;
}

.legal-text ul,
.legal-text ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

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

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .pricing-title,
    .contact-title {
        font-size: 2.5rem;
    }
    
    .legal-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-links {
        justify-content: flex-start;
        margin-top: 1rem;
    }
    
    .pricing-featured {
        transform: none;
    }
    
    .feature-detail {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
}
