:root {
    --primary: #b90101;
    --primary-dark: #8a0000;
    --secondary: #d10000;
    --accent: #ff0000;
    --dark: #000000;
    --light: #f8fafc;
}

.btn-demo {
    border: 2px solid #b90101;
    background: #000;
    color: #ffffff !important;
    font-weight: bold;
    padding: 4px 15px;
}

.btn-demo:hover,
.btn-demo:active,
.btn-demo:focus,
.btn-demo.active,
.btn-demo.show {
    border-color: #b90101;
    background-color: #b90101;
}

.bg-dark .subscribe-feature-list li span i {
    color: #21c55c !important;
}

.btn-subscribe {
    background: #b90101;
    color: #fff;
    font-weight: bold;
    padding: 6px 25px;
}

.btn-subscribe:hover,
.btn-subscribe:active,
.btn-subscribe:focus,
.btn-subscribe.active,
.btn-subscribe.show {
    border-color: #b90101 !important;
    background-color: #cf0100 !important;
}

.client-heading {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
    font-weight: 700;
}

.text-black{
    color: #000 !important;
}
.text-white{
    color: #fff !important;
}

span.subtext {
    font-weight: 100;
}

span.title-mark {
    color: #b90101;
    font-weight: 700;
}

.feature-p {
    padding: 2rem 1rem !important;
}

.bg-lightblue {
    background-color: #ecf1f6 !important;
}

.image-icon {
    width: 36px;
}

.lead {
    font-size: .9rem;
    font-weight: 500;
    color: #303030;
}

.request-button {
    background: #b90101;
    padding: 7px 26px;
    border-radius: 8px;
    color: #e1e1e1;
    font-weight: 500;
    border: 1px solid #c3c3c3;
}

.rounded-custom {
    border-radius: 1rem !important;
}

.mt-25 {
    margin-top: 24px;
}

.footer {
    background: linear-gradient(180deg, #d2d2d2 0%, #000 50%, #000 100%);
    color: #fff;
    padding: 60px 0 0;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #b90101;
    transform: translateX(5px);
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #b90101;
    color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(185, 1, 1, 0.25);
}

.newsletter-input::placeholder {
    color: #b0b0b0;
}

.btn-newsletter {
    background: #b90101;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(185, 1, 1, 0.4);
    background: #8a0101;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #b90101;
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: #b0b0b0;
}

.rating-stars i {
    color: #ffc107;
    margin-right: 3px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #b90101;
}

.promo-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-heading .subtext {
    display: block;
    color: var(--bs-primary);
    font-size: 2.5rem;
    margin-top: 10px;
}

.section-heading p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-top: 25px;
}

.title-mark {
    color: var(--bs-primary);
    font-weight: 600;
}

.feature-card {
    background: #ffffff;
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    border: 2px solid #f0f0f0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card-details {
    padding: 40px 30px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--bs-primary), var(--dark));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(185, 1, 1, 0.15);
    border-color: var(--bs-primary);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.feature-images {
    height: 280px;
    margin: 0 auto 40px;
}

.feature-card h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--bs-primary);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 25px;
}

.request-button {
    display: inline-block;
    background: var(--bs-primary);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--bs-primary);
    text-align: center;
}

.request-button:hover {
    background: var(--dark);
    border-color: var(--dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(185, 1, 1, 0.3);
}

.rounded-xl {
    border-radius: 50px;
}

@media (max-width: 768px) {

    .section-heading h2,
    .section-heading .subtext {
        font-size: 1.8rem;
    }

    .promo-section {
        padding: 60px 0;
    }

    .feature-card {
        margin-bottom: 30px;
    }
}

.work-process {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #2a0000 50%, #000000 100%);
}

.bg-linear-gradient {
    background: linear-gradient(135deg, #000000 0%, #2a0000 50%, #000000 100%);
}

.section-heading {
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-heading h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-heading p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.process-wrapper {
    position: relative;
}

.process-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 28px;
    padding-bottom: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 25px;
    text-align: center;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.process-card:hover::before {
    transform: scaleX(1);
}

.process-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.process-icon {
    width: 90px;
    height: 90px;
    margin: 0 0 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.process-card:hover .icon-circle {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
}

.icon-circle::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-card:hover .icon-circle::after {
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.process-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.process-card:hover h3 {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
}

.connector-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.5) 50%,
            rgba(255, 255, 255, 0.2) 100%);
    transform: translateY(-50%);
    z-index: -1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
    bottom: -50px;
    right: -50px;
    animation-delay: 5s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

@media (max-width: 991px) {
    .section-heading h2 {
        font-size: 2.2rem;
    }

    .process-card {
        margin-bottom: 30px;
    }

    .connector-line {
        display: none;
    }
}

@media (max-width: 767px) {
    .section-heading h2 {
        font-size: 1.8rem;
    }
}

/* Option 1: Black to Gray */
.bg-linear-gradient-1 {
    background: linear-gradient(135deg, #000000 0%, #d2d2d2 100%);
}

/* Option 2: Gray to Black */
.bg-linear-gradient-2 {
    background: linear-gradient(135deg, #d2d2d2 0%, #000000 100%);
}

/* Option 3: Black edges with Gray center */
.bg-linear-gradient-3 {
    background: linear-gradient(135deg, #000000 0%, #d2d2d2 50%, #000000 100%);
}

/* Option 4: Gray edges with Black center */
.bg-linear-gradient-4 {
    background: linear-gradient(135deg, #d2d2d2 0%, #000000 50%, #d2d2d2 100%);
}

/* Option 5: Multi-stop with varying intensity */
.bg-linear-gradient-5 {
    background: linear-gradient(180deg, #cfcfcf71 0%, #cfcfcfde 25%, #d2d2d2a4 75%, #d2d2d2 100%);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-float {
    transition: all 0.3s ease;
}

.animate-float:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15) !important;
}

.vertical-dots-line.last {
    border-color: white;
}



.testimonial-section {
    padding: 120px 0;
    background: var(--bg-gray);
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(180deg, rgba(185, 1, 1, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.feature-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(270deg, rgba(185, 1, 1, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.testimonial-section .section-heading h4 {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.testimonial-section .section-heading h2 {
    color: var(--dark);
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.testimonial-section .section-heading p {
    color: #4a5568;
    font-size: 18px;
    line-height: 1.8;
}

.testimonial-card {
    background: white;
    border: none !important;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red) 0%, #ff4444 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(185, 1, 1, 0.15);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #ff4444 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 32px;
    right: 32px;
    opacity: 0.1;
    font-size: 28px;
    color: white;
}

.author-section {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}

.author-section img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid var(--primary-red);
    padding: 2px;
}

.author-info h6 {
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.author-info small {
    color: #718096;
    font-size: 14px;
    font-weight: 500;
}

.testimonial-card blockquote h6 {
    color: var(--dark);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
}

.testimonial-card blockquote {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    font-style: italic;
}

.review-rate {
    margin-top: 24px;
}

.review-rate li i {
    font-size: 18px;
    color: #fbbf24;
    margin-right: 4px;
}

.swiper-button-next,
.swiper-button-prev {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-red);
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    font-weight: 900;
    color: var(--dark);
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
    color: white;
}

.swiper-button-next {
    right: 10px;
}

.swiper-button-prev {
    left: 10px;
}

@media (max-width: 768px) {
    .section-heading h2 {
        font-size: 36px;
    }

    .testimonial-card {
        padding: 32px;
    }

    .testimonial-section {
        padding: 80px 0;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 44px;
        height: 44px;
    }
}

.sign-in {
    background: #000;
    font-weight: bold;
    padding: 4px 15px;
    font-weight: 800;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s ease;
    color: var(--bs-primary) !important;
}

.sign-in:hover {
    font-weight: 800;
    border: 1px solid var(--bs-primary) !important;
    box-shadow: 0 8px 25px rgba(185, 1, 1, 0.4);
}

/* Contact Page Styles */
.contact-info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(185, 1, 1, 0.15);
}

.contact-info-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #b90101, #e60000);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-card .icon-wrapper i {
    font-size: 1.5rem;
    color: white;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 12px 20px;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #b90101;
    box-shadow: 0 0 0 3px rgba(185, 1, 1, 0.1);
}

.social-icon-link {
    width: 45px;
    height: 45px;
    background: rgba(185, 1, 1, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b90101;
    transition: all 0.3s ease;
}

.social-icon-link:hover {
    background: #b90101;
    color: white;
    transform: translateY(-3px);
}

/* About Page Styles */
.mission-card,
.vision-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(185, 1, 1, 0.15);
}

.mission-card .icon-wrapper,
.vision-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #b90101, #e60000);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-card .icon-wrapper i,
.vision-card .icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.value-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 35px 25px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(185, 1, 1, 0.15);
}

.value-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(185, 1, 1, 0.1);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.value-card .icon-wrapper i {
    font-size: 1.5rem;
    color: #b90101;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #b90101, #e60000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.team-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(185, 1, 1, 0.15);
}

.team-img-wrapper {
    overflow: hidden;
    border-radius: 15px;
}

.team-img-wrapper img {
    transition: transform 0.3s ease;
}

.team-card:hover .team-img-wrapper img {
    transform: scale(1.1);
}

.team-social a {
    width: 35px;
    height: 35px;
    background: rgba(185, 1, 1, 0.1);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #b90101;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: #b90101;
    color: white;
    transform: translateY(-3px);
}

/* Pricing Page Styles */
.billing-toggle-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    padding: 8px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.billing-label {
    font-weight: 600;
    color: #64748b;
}

.billing-switch {
    position: relative;
    width: 52px;
    height: 28px;
}

.billing-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.billing-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #e5e7eb;
    border-radius: 28px;
    transition: 0.4s;
    padding: 0;
}
.slider{
    padding: 0;
    
}

.billing-switch .slider:before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background: white;
    border-radius: 50%;
    transition: 0.4s;
}

.billing-switch input:checked+.slider {
    background: linear-gradient(135deg, #b90101, #e60000);
}

.billing-switch input:checked+.slider:before {
    transform: translateX(24px);
}

.save-badge {
    background: linear-gradient(135deg, #b90101, #e60000);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 8px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 30px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.pricing-card.popular {
    border-color: #b90101;
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(185, 1, 1, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #b90101, #e60000);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-price {
    margin: 30px 0;
}

.pricing-price .currency {
    font-size: 2rem;
    font-weight: 700;
    color: #b90101;
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 4rem;
    font-weight: 800;
    color: #b90101;
    line-height: 1;
}

.pricing-price .period {
    font-size: 1.2rem;
    color: #64748b;
}

.pricing-price .custom-pricing {
    font-size: 3rem;
    font-weight: 800;
    color: #b90101;
}

.features-list {
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.feature-item i {
    color: #b90101;
    margin-top: 3px;
    flex-shrink: 0;
}

.comparison-table-wrapper {
    background: white;
    border-radius: 20px;
    padding: 30px;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    margin: 0;
}

.comparison-table thead th {
    background: #f8f9fa;
    padding: 20px;
    font-weight: 700;
    border: none;
}

.comparison-table tbody td {
    padding: 18px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.popular-col {
    background: rgba(185, 1, 1, 0.05);
}

/* Demo Page Styles */
.demo-benefit {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #b90101, #e60000);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.demo-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Legal Pages Styles */
.legal-document {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.legal-document h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #b90101;
    font-weight: 700;
}

.legal-document h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-document p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #475569;
}

.legal-document ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-document ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #475569;
}

@media (max-width: 991px) {
    .pricing-card.popular {
        transform: scale(1);
    }

    .legal-document {
        padding: 30px 20px;
    }
}