/* ============================================
   TENJIN PRICING PAGE - STYLE.CSS
   Exact replica of pricing.pdf using Bootstrap 5.2
   ============================================ */

/* ---------- ROOT VARIABLES ---------- */
:root {
    --orange-primary: #F05515;
    --orange-light: #FA7B3A;
    --orange-gradient: linear-gradient(180deg, #FF7B37 0%, #EA4C0E 100%);
    --navy-dark: #070B14;
    --navy-medium: #151D2A;
    --navy-card: #151C2B;
    --gray-bg: #F8F9FB;
    --gray-cell: #FFFFFF;
    --text-dark: #1F2328;
    --text-medium: #5C6570;
    --text-light: #9B9C9E;
    --white: #FFFFFF;
    --footer-bg: #1A1A1A;
}

.tenjin-logo-icon {
    flex-shrink: 0;
}



.brand-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.brand-sub {
    font-size: 0.55rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 1.5px;
    opacity: 0.7;
    align-self: flex-end;
    margin-bottom: 4px;
    text-transform: uppercase;
}

#main-navbar .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 400;
    padding: 8px 16px;
    transition: color 0.2s ease;
}

#main-navbar .navbar-nav .nav-link:hover,
#main-navbar .navbar-nav .nav-link.active {
    color: var(--white);
}

#main-navbar .navbar-nav .nav-link.dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: 2px;
}

.nav-actions {
    gap: 10px;
}

.btn-login {
    color: var(--white) !important;
    border: 2px solid var(--white);
    border-radius: 6px;
    padding: 7px 24px;
    font-size: 0.9rem;
    font-weight: 500;
    background: transparent;
    transition: all 0.25s ease;
}

.btn-login:hover {
    background-color: var(--white);
    color: var(--navy-dark) !important;
}

.btn-signup {
    color: var(--white) !important;
    background: var(--orange-gradient);
    border: 2px solid var(--orange-primary);
    border-radius: 6px;
    padding: 7px 24px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.btn-signup:hover {
    background: linear-gradient(135deg, #D04A10 0%, #E07828 100%);
    border-color: #D04A10;
}

/* ---------- HERO SECTION ---------- */
.hero-section {
    background-color: rgba(245, 245, 245, 1);
    padding: 70px 0 40px;
}

.hero-heading {
    font-size: 1.45rem;
    line-height: 1.5;
    margin: 0;
    letter-spacing: -0.2px;
}

.text-orange {
    color: var(--orange-primary);
    font-weight: 500;
}

.text-dark-bold {
    color: var(--text-dark);
    font-weight: 700;
}

/* Custom Grid Aligns for Hero & Cards offsets */
@media (min-width: 992px) {
    .col-lg-offset-one-fifth {
        margin-left: 20%;
    }
}

/* Currency Toggle */
.currency-toggle {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    border: 1px solid rgba(55, 55, 55, 1);
    border-radius: 50px;
    padding: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    cursor: pointer;
}

.currency-option {
    padding: 6px 18px;
    border-radius: 50px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--text-medium);
    transition: all 0.3s ease;
}

.currency-option.active {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    background: rgba(255, 80, 0, 1);
    color: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 8px rgba(240, 85, 21, 0.25);
}

/* ---------- PRICING CARDS SECTION ---------- */
.pricing-section {
    background-color: var(--gray-bg);
    padding: 20px 0 50px;
}

.pricing-card {
    background: rgba(255, 255, 255, 1);
    border: none;
    border-radius: 4px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 40px 0 rgba(194, 194, 194, 0.25);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -20px;
    right: -20px;
    height: 160px;
    background: #F8F9FA;
    border-radius: 50%;
    z-index: 0;
}

.card-header-custom, .plan-desc, .plan-price, .plan-actions {
    position: relative;
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-header-custom {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    justify-content: space-between;
}

.plan-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 80, 0, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.plan-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.plan-name {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 80, 0, 1);
    letter-spacing: 0.5px;
    margin: 0;
    text-transform: uppercase;
}

.plan-desc {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: rgba(55, 55, 55, 1);
    line-height: 1.2;
    margin-bottom: 20px;
    flex-grow: 1;
}

.plan-price {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: rgba(55, 55, 55, 1);
}

.plan-actions {
    display: flex;
    flex-direction: column;
}

.btn-plan {
    background: rgba(255, 80, 0, 1) !important;
    font-family: 'Roboto', sans-serif !important;
    display: block;
    width: 100%;
    padding: 10px 0;
    font-size: 18px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 1) !important;
    border-radius: 4px !important;
    text-align: center;
    transition: all 0.25s ease;
    margin-bottom: 8px;
}

.btn-plan-outline {
    color: var(--orange-primary) !important;
    border: 2px solid var(--orange-primary);
    background: transparent;
}

.btn-plan-outline:hover {
    background: var(--orange-primary);
    color: var(--white) !important;
}

.btn-plan-filled {
    background: linear-gradient(to bottom, #FA7D45, var(--orange-primary));
    color: var(--white);
    border: none;
    box-shadow: 0 4px 6px rgba(240, 85, 21, 0.2);
}

.btn-plan-filled:hover {
    background: linear-gradient(to bottom, #F06121, #DC4A0F);
    color: var(--white);
    box-shadow: 0 6px 12px rgba(240, 85, 21, 0.3);
    transform: translateY(-2px);
}

.trial-note {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(55, 55, 55, 1);
    text-align: center;
    margin: 0;
}

/* ---------- COMPARE PLANS SECTION ---------- */
.compare-section {
    background-color: var(--gray-bg);
    padding: 30px 40px
}

.container-compare-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
}

.compare-table-wrapper {
    min-width: 900px;
}

/* For exact column widths */
.table-col {
    flex: 0 0 20%;
    max-width: 20%;
}

.table-col-comp {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

/* Compare Header Cells */
.compare-header-cell {
    border-radius: 4px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.compare-label-cell {
    background: rgba(255, 80, 0, 1);
    border-radius: 4px;
    height: 80px;
    box-shadow: 0 4px 40px 0 rgba(255, 255, 255, 0);
}

.compare-title {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: rgba(255, 255, 255, 1);
    text-align: center;
}

.compare-plan-cell {
    background: rgba(255, 80, 0, 1);
    transition: all 0.3s ease;
    height: 80px;
    box-shadow: 0 4px 40px 0 rgba(255, 255, 255, 0);
}

.compare-plan-name {
    display: block;
    font-size: 20px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    color: rgba(43, 43, 43, 1);
}

.compare-plan-price {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    color: rgba(255, 255, 255, 1);
}

.compare-plan-price small {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
}

/* Feature Label Cell (orange rounded pill on left) */
.feature-label-cell {
    background: rgba(255, 80, 0, 1);
    color: rgba(255, 255, 255, 1);
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 500;
    padding: 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    box-shadow: 0 4px 40px 0 rgba(255, 255, 255, 0);
}

/* Feature Value Cell (white rounded pill) */
.feature-value-cell {
    background: rgba(255, 255, 255, 1);
    color: rgba(55, 55, 55, 1);
    font-size: 16px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    box-shadow: 0 4px 40px 0 rgba(194, 194, 194, 0.25);
}

.check-icon {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 700;
}

.cross-icon {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 700;
}

/* Section Subheading (e.g. "Test Execution") */
.section-subheading {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    color: rgba(55, 55, 55, 1);
    margin: 40px 0 20px;
    /* padding-left: 24px; */
}

/* ---------- TENJIN VS OTHERS SECTION ---------- */
.comparison-section {
    background-color: rgba(5, 17, 59, 1);
    padding: 40px 0 40px;
}

.comparison-heading {
    text-align: center;
    color: rgba(255, 255, 255, 1);
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 50px;
}

.comparison-heading strong {
    font-weight: 700;
}

.comparison-table-wrapper {
    min-width: 800px;
}

.comparison-table {
    max-width: 1000px;
}

.comp-cell {
    border-radius: 10px;
    /* padding: 18px 20px; */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
}

.comp-header-cell {
    background: rgba(131, 131, 131, 0.16);
    border: 1.75px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(26px);
}

.comp-header-text {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    color: rgba(255, 80, 0, 1) !important;
}

.comp-body-cell {
    background: rgba(131, 131, 131, 0.16);
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    border: 1.75px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(26px);
}

/* .comp-func-cell {
    background: rgba(38, 53, 69, 0.6);
} */

/* ---------- FOOTER ---------- */
.site-footer {
    background-color: var(--footer-bg);
    padding: 20px 0;
}

.footer-copyright {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-link {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--white);
}
.bi-check-lg::before {
    color: rgba(55, 55, 55, 1);
}
.feature-value-cell .text-muted{
    font-size: 16px !important;
    color: rgba(55, 55, 55, 1) !important;
}



/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1199.98px) {
    .compare-plan-price {
        font-size: 1.4rem;
    }
    .feature-value-cell {
        font-size: 0.8rem;
        padding: 14px 8px;
    }
    .feature-label-cell {
        font-size: 0.82rem;
        padding: 14px 12px;
    }
}

@media (max-width: 991.98px) {
    /* Navbar adjustments */
    .nav-actions {
        margin-top: 16px;
        flex-direction: column;
    }
    .btn-login, .btn-signup {
        text-align: center;
    }

    /* Hero */
    .hero-heading {
        text-align: center;
        font-size: 1.35rem;
    }

    /* Comparison section */
    .comparison-heading {
        font-size: 1.6rem;
    }
}

@media (max-width: 767.98px) {
    /* Hero */
    .hero-section {
        padding: 30px 0 24px;
    }

    .hero-heading {
        font-size: 1.25rem;
    }

    /* Pricing cards */
    .pricing-section {
        padding: 10px 0 30px;
    }

    .plan-price {
        font-size: 2rem;
    }

    /* Compare Plans - scrollable */
    .compare-section {
        padding: 20px 0 40px;
    }

    .compare-table-wrapper {
        min-width: 800px;
    }

    .compare-title {
        font-size: 1.5rem;
    }

    /* Tenjin vs Others */
    .comparison-section {
        padding: 40px 0 50px;
    }

    .comparison-table-wrapper {
        min-width: 800px;
    }

    .comparison-heading {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }

    .comp-cell {
        padding: 14px 12px;
        font-size: 0.85rem;
    }

    /* Footer */
    .site-footer {
        text-align: center;
    }

    .footer-copyright {
        margin-bottom: 10px;
    }
}

@media (max-width: 500px) {
    .brand-text {
        font-size: 1.3rem;
    }

    .brand-sub {
        display: none;
    }

    .hero-heading {
        font-size: 1.15rem;
    }

    .currency-toggle {
        margin-top: 10px;
    }

    .pricing-card {
        padding: 24px 20px 20px;
    }

    .plan-name {
        font-size: 1.15rem;
    }

    .plan-price {
        font-size: 1.8rem;
    }

    .comparison-heading {
        font-size: 1.2rem;
    }
    .comp-cell {
        min-height: stretch;
    }
}



/*  ADDITIONAL CUSTOM CSS */
#pricingPage .hero-heading {
    display: flex;
    font-family:  'Roboto', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: rgba(43, 43, 43, 1);
}
