:root {
    --primary-dark: #011f53;
    --primary-green: #034737;
    --secondary-blue: #375281;
    --accent-green: #22c55e;
    --light-green: #86efac;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --medium-gray: #64748b;
    --dark-gray: #334155;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0f2557 50%, #1a365d 100%);
    min-height: 100vh;
}

.header-section {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    background: rgba(1, 31, 83, 0.9);
}

.navbar {
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--white);
    text-decoration: none;
}

.logo i {
    font-size: 1.5rem;
    color: var(--accent-green);
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-size: 16px;
    font-weight: 600;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

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

.btn-primary-custom {
    background: var(--primary-green);
    border: none;
    color: var(--white);
    border-radius: 10px;
    padding: 18px 25px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

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

.btn-success-custom {
    background: var(--primary-green);
    border: none;
    color: var(--white);
    border-radius: 10px;
    padding: 18px 25px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

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

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.geometric-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent-green) 0%, #16a34a 50%, var(--primary-green) 100%);
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 0.8;
}

.geometric-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.1) 20px,
        rgba(255, 255, 255, 0.1) 40px
    );
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 50.4px;
    color: var(--white);
    margin-bottom: 2rem;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.subtitle-line {
    height: 2px;
    width: 40px;
    background: var(--accent-green);
}

.subtitle-text {
    color: var(--accent-green);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 500px;
}

.hero-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 10;
}

.product-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.card-content {
    display: flex;
    flex-direction: column;
}

.card-label {
    font-size: 12px;
    color: var(--accent-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-title {
    font-size: 16px;
    color: var(--white);
    font-weight: 600;
}

.how-it-works-section {
    padding: 100px 0;
    background: var(--light-gray);
    color: var(--dark-gray);
}

.section-label {
    color: var(--medium-gray);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 18px;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto 4rem;
}

.feature-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

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

.cta-section {
    background: var(--primary-dark);
    padding: 80px 0;
}

.cta-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

.pricing-hero-section {
    padding: 150px 0 80px;
    text-align: center;
}

.pricing-title {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.pricing-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.pricing-toggle {
    margin-bottom: 4rem;
}

.pricing-toggle .btn-group {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 4px;
}

.pricing-toggle .btn {
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pricing-toggle .btn-outline-primary {
    color: var(--white);
    background: transparent;
}

.pricing-toggle .btn-check:checked + .btn-outline-primary {
    background: var(--accent-green);
    color: var(--white);
}

.pricing-cards-section {
    padding: 0 0 100px;
    background: var(--light-gray);
    color: var(--dark-gray);
}

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

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid var(--accent-green);
    transform: scale(1.05);
}

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

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

.price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

.currency {
    font-size: 24px;
    color: var(--medium-gray);
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-dark);
}

.period {
    font-size: 16px;
    color: var(--medium-gray);
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

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

.pricing-features .bi-check {
    color: var(--accent-green);
    font-weight: bold;
}

.enterprise-section {
    background: var(--primary-dark);
    padding: 80px 0;
}

.enterprise-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.enterprise-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

.contact-section {
    padding: 150px 0 100px;
    background: var(--light-gray);
    color: var(--dark-gray);
}

.contact-label {
    color: var(--medium-gray);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.contact-section h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.contact-description {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 3rem;
    max-width: 500px;
}

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

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.contact-info-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.contact-info-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-details h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--medium-gray);
    margin: 0;
}

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

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

.help-center-card {
    background: var(--primary-dark);
    border-radius: 16px;
    padding: 2.5rem;
    color: var(--white);
}

.help-center-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.help-center-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.thank-you-message {
    margin-top: 2rem;
}

.thank-you-message .alert {
    border: none;
    border-radius: 12px;
    padding: 2rem;
}

.thank-you-message h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.legal-section {
    padding: 150px 0 100px;
    background: var(--light-gray);
    color: var(--dark-gray);
}

.legal-section h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--medium-gray);
    font-size: 16px;
    margin-bottom: 3rem;
}

.legal-content {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.legal-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-content ul {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

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

.contact-details {
    background: var(--light-gray);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

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

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

.footer-section {
    background: var(--primary-green);
    padding: 60px 0 30px;
    color: var(--white);
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-info p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1rem;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    .header-section {
        position: relative;
        background: var(--primary-dark);
    }
    
    .hero-section {
        padding-top: 50px;
    }
    
    .geometric-bg {
        width: 100%;
        clip-path: none;
        opacity: 0.3;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 38px;
    }
    
    .section-title {
        font-size: 32px;
        line-height: 38px;
    }
    
    .pricing-title {
        font-size: 32px;
        line-height: 38px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 28px;
        line-height: 34px;
    }
    
    .section-title {
        font-size: 28px;
        line-height: 34px;
    }
    
    .pricing-title {
        font-size: 28px;
        line-height: 34px;
    }
    
    .hero-cards {
        margin-top: 3rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-info-card {
        padding: 2rem;
    }
    
    .help-center-card {
        padding: 2rem;
    }
}
