/* Custom styles for Client Accounting page */
.container {
    justify-content: center;
    display: flex;
    max-width: 1350px;
    width: 100%;
    margin: 0 auto;
    padding: 0 35px;
}


.client-accounting-section {
    padding: 80px 0;
    min-height: calc(100vh - 140px);
    /* Vertical centering in viewport */
    background-image: url('../images/practice/client-managment/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* ----------------------------------
Main Card Container
---------------------------------- */
.client-card {
    background-color: #ffffff;
    width: 100%;
    max-width: 1100px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    display: flex;
    overflow: hidden;
}

/* ----------------------------------
Left Pane (Text Content)
---------------------------------- */
.card-left {
    flex: 1.4;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-left h2 {
    font-family: "Rethink Sans";
    font-size: 48px;
    font-weight: 700;
    color: #0A1629;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.highlight-blue {
    color: #387BBB;
}

.card-left p {
    font-family: "DM Sans";
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 30px;
}

/* Features Row */
.features-row {
    gap: 30px;
    align-items: center;
}

.feature-item-blue {
    font-family: "Rethink Sans";
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 400;
    color: #0f172a;
}

.feature-item {
    font-family: "Rethink Sans";
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 400;
    color: white;
}

/* Blue Check Icon */
.check-icon {
    width: 20px;
    height: 20px;
    background-color: #4b7bb4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ----------------------------------
Right Pane (Blue Background & Pills)
---------------------------------- */
.card-right {
    flex: 1;
    background-color: #4b7bb4;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pill-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

/* White Pill Item */
.pill-item {
    background-color: #ffffff;
    font-family: 'inter';
    color: #1f2937;
    font-size: 19px;
    font-weight: 400;
    padding: 14px 28px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* 4-Point Star Icon */
.star-icon {
    width: 30px;
    height: 30px;
    fill: #4b7bb4;
    flex-shrink: 0;
}

/* ----------------------------------
   Top Section: Common Problems
   ---------------------------------- */
.problems-section {
    background-color: #ffffff;
    padding: 80px 20px 80px 20px;
    text-align: center;
}

.problems-section h2 {
    font-family: "Rethink Sans";
    font-size: 40px;
    font-style: bold;
    font-weight: 700;
    color: #322c2c;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.problems-section .highlight-blue {
    color: #4a7bb5;
}

/* Badges Layout */
.badges-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.badges-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Individual Badge Style */
.problem-badge {
    position: relative;
    background-color: #4a7bb5;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 14px 24px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    text-align: center;
    line-height: 1.4;
}

/* Upward pointing triangle */
.problem-badge::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #4a7bb5;
}

/* ----------------------------------
   Bottom Section: Who Is This Ideal For?
   ---------------------------------- */
.ideal-section {
    background-color: #4a7bb5;
    padding: 80px 0;
    overflow: hidden;
}

.ideal-header {
    text-align: center;
    padding: 0 20px;
    margin-bottom: 50px;
}

.ideal-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.ideal-header p {
    font-size: 16px;
    color: #e0eaf5;
    font-weight: 400;
}

/* Horizontal Scrolling Container */
.cards-scroll-wrapper {
    width: 100%;
    overflow: hidden;
    /* Pure auto-scroll */
    padding: 0 20px;
}

.cards-track {
    display: flex;
    gap: 24px;
    padding: 20px 0;
    width: max-content;
}

@keyframes autoScrollTrack {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-1720px);
    }

    /* 5 cards * (320px + 24px) */
}

.cards-track.auto-scroll-track {
    animation: autoScrollTrack 25s linear infinite;
}

.cards-track.auto-scroll-track:hover {
    animation-play-state: paused;
}

/* ----------------------------------
   Individual Cards (01 to 05)
   ---------------------------------- */
.ideal-card {
    background-color: #ffffff;
    border-radius: 16px;
    width: 320px;
    flex-shrink: 0;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.card-number {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

.ideal-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #4a7bb5;
    margin-bottom: 16px;
    line-height: 1.3;
    min-height: 56px;
}

.ideal-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
}

/* ----------------------------------
   Responsive Adjustments
   ---------------------------------- */
@media (max-width: 1100px) {
    .cards-track {
        padding: 20px 0;
    }
}

@media (max-width: 768px) {
    .problems-section {
        padding: 60px 20px;
    }

    .problems-section h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .badges-row {
        flex-direction: column;
        gap: 20px;
    }

    .problem-badge {
        max-width: 100%;
    }

    .ideal-section {
        padding: 60px 0;
    }

    .ideal-header h2 {
        font-size: 32px;
    }

    .ideal-card {
        width: 280px;
        padding: 30px 24px;
    }

    .ideal-card h3 {
        font-size: 20px;
        min-height: auto;
    }

    @keyframes autoScrollTrackMobile {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-1520px);
        }

        /* 5 cards * (280px + 24px) */
    }

    .cards-track.auto-scroll-track {
        animation: autoScrollTrackMobile 20s linear infinite;
    }
}

/* ----------------------------------
   Client Needs Section
   ---------------------------------- */
.client-needs-section {
    padding: 80px 20px;
    background-color: #f8fafc;
}

.client-needs-section .container {
    flex-direction: column;
}

.client-needs-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.client-needs-section .section-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto 16px auto;
    letter-spacing: -0.5px;
}

.client-needs-section .section-header p {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

.client-needs-section .table-container {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin: 20px 10px;
}

.client-needs-section .table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1.15fr;
    align-items: stretch;
}

.client-needs-section .cell {
    padding: 24px 30px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

.client-needs-section .col-1 {
    background: #FFFAF5;
    border-right: 1px solid #e5e7eb;
}

.client-needs-section .table-row:not(:last-child) .col-1,
.client-needs-section .table-row:not(:last-child) .col-2 {
    border-bottom: 1px solid #e5e7eb;
}

.client-needs-section .header-row .cell {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    justify-content: center;
    text-align: center;
}

.client-needs-section .col-3 {
    background-color: #ffffff;
    border-left: 3px solid #4a77b4;
    border-right: 3px solid #4a77b4;
    margin-left: -2px;
    margin-right: -10px;
    position: relative;
    z-index: 2;
    box-shadow: 12px 0 20px -5px rgba(0, 0, 0, 0.08), -12px 0 20px -5px rgba(0, 0, 0, 0.08);
    padding-left: 32px;
}

.client-needs-section .table-row:not(:last-child) .col-3 {
    border-bottom: 1px solid #e0eaf5;
}

.client-needs-section .header-row .col-3 {
    background-color: #4a77b4;
    color: #ffffff;
    border-top: 3px solid #4a77b4;
    border-radius: 10px 10px 0 0;
    margin-top: -5px;
    padding-top: 40px;
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.1), 12px 0 20px -5px rgba(0, 0, 0, 0.08), -12px 0 20px -5px rgba(0, 0, 0, 0.08);
    z-index: 3;
}

.client-needs-section .table-row:last-child .col-3 {
    border-bottom: 3px solid #4a77b4;
    border-radius: 0 0 10px 10px;
    margin-bottom: -5px;
    padding-bottom: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 12px 0 20px -5px rgba(0, 0, 0, 0.08), -12px 0 20px -5px rgba(0, 0, 0, 0.08);
    z-index: 3;
}

.client-needs-section .solution-highlight {
    color: #4a77b4;
    font-weight: 600;
    margin-left: 4px;
}

@media (max-width: 900px) {
    .client-needs-section .table-row {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .client-needs-section .cell {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .client-needs-section .section-header h2 {
        font-size: 28px;
    }

    .client-needs-section .table-container {
        border: none;
        background: transparent;
        margin: 0;
    }

    .client-needs-section .header-row {
        display: none;
    }

    .client-needs-section .table-row {
        display: flex;
        flex-direction: column;
        background-color: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        margin-bottom: 24px;
        overflow: hidden;
    }

    .client-needs-section .cell {
        border-bottom: 1px solid #e5e7eb;
        border-right: none;
        padding: 16px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .client-needs-section .cell::before {
        content: attr(data-label);
        font-size: 12px;
        font-weight: 600;
        color: #9ca3af;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .client-needs-section .col-3 {
        margin: 0;
        padding: 16px 20px;
        border: none;
        border-left: 4px solid #4a77b4;
        box-shadow: none;
        background-color: #f0f6fc;
    }

    .client-needs-section .table-row:last-child .col-3 {
        margin-bottom: 0;
        padding-bottom: 16px;
        border-bottom: none;
        border-radius: 0;
        box-shadow: none;
    }
}

/* ----------------------------------
   Platform Advantages Toggle Section
   ---------------------------------- */
.platform-advantages {
    background-color: #f6f8fa;
    padding: 80px 20px;
}

.platform-advantages .container {
    display: block !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
    width: 100% !important;
}

.platform-advantages .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.platform-advantages .section-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.platform-advantages .section-header p {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
    max-width: 900px;
    margin: 0 auto;
}

.platform-advantages .toggle-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.platform-advantages .toggle-btn {
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    border: 1px solid #d1d5db;
    background-color: transparent;
    color: #374151;
}

.platform-advantages .toggle-btn.active {
    background-color: #487ab6;
    color: #ffffff;
    border-color: #487ab6;
}

.platform-advantages .toggle-btn:hover:not(.active) {
    background-color: #f3f4f6;
}

.platform-advantages .card-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background-color: #315886;
}

.platform-advantages .tab-content {
    display: none;
    flex-direction: row;
    animation: fadeInTab 0.4s ease forwards;
}

.platform-advantages .tab-content.active {
    display: flex;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.platform-advantages .left-col {
    flex: 0 0 45%;
    background-color: #487ab6;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.platform-advantages .inner-pill {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.platform-advantages .left-col h3 {
    font-size: 46px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -1px;
}

.platform-advantages .right-col {
    flex: 1;
    background-color: #315886;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.platform-advantages .benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.platform-advantages .benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
    font-weight: 400;
}

.platform-advantages .check-icon {
    width: 24px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.platform-advantages .check-icon svg {
    width: 12px;
    height: 12px;
    stroke: #ffffff;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

@media (max-width: 900px) {
    .platform-advantages .left-col {
        padding: 60px 40px;
    }

    .platform-advantages .left-col h3 {
        font-size: 38px;
    }

    .platform-advantages .right-col {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .platform-advantages .section-header h2 {
        font-size: 30px;
    }

    .platform-advantages .tab-content {
        flex-direction: column;
    }

    .platform-advantages .left-col {
        flex: auto;
        padding: 50px 30px;
    }

    .platform-advantages .right-col {
        padding: 50px 30px;
    }

    .platform-advantages .toggle-container {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .platform-advantages .toggle-btn {
        width: 100%;
        max-width: 250px;
    }
}

/* ----------------------------------
   Pricing Comparison Section
   ---------------------------------- */
.pricing-comparison-section {
    padding: 80px 20px;
    background-color: #f8fafc;
}

.pricing-comparison-section .container {
    flex-direction: column;
}

.pricing-comparison-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-comparison-section .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.pricing-comparison-section .section-header p {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-comparison-section .table-wrapper {
    border: 12px solid #E6E9F5;
    border-radius: 16px;
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.pricing-comparison-section .table-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pricing-comparison-section .pricing-table {
    display: grid;
    grid-template-columns: 1.1fr 1.5fr 1.5fr;
    min-width: 800px;
}

.pricing-comparison-section .table-row {
    display: contents;
}

.pricing-comparison-section .cell {
    padding: 24px 30px;
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 1.5;
}

.pricing-comparison-section .col-1 {
    background-color: #4a77b4;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
}

.pricing-comparison-section .col-2,
.pricing-comparison-section .col-3 {
    background-color: #ffffff;
    color: #374151;
    border-bottom: 1px solid #f1f5f9;
}

.pricing-comparison-section .col-2 {
    border-right: 1px solid #f1f5f9;
}

.pricing-comparison-section .table-row:last-child .col-2,
.pricing-comparison-section .table-row:last-child .col-3 {
    border-bottom: none;
}

.pricing-comparison-section .header-row .col-1 {
    font-size: 26px;
    font-weight: 700;
    align-items: center;
}

.pricing-comparison-section .header-row .col-2,
.pricing-comparison-section .header-row .col-3 {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-top: 35px;
    padding-bottom: 35px;
}

.pricing-comparison-section .plan-title {
    font-size: 26px;
    font-weight: 700;
    color: #2b5c92;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.pricing-comparison-section .plan-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #4a77b4;
}

@media (max-width: 900px) {
    .pricing-comparison-section .section-header h2 {
        font-size: 30px;
    }

    .pricing-comparison-section .cell {
        padding: 20px;
    }
}

@media (max-width: 600px) {
    .pricing-comparison-section {
        padding: 60px 0;
    }

    .pricing-comparison-section .section-header h2 {
        font-size: 26px;
    }

    .pricing-comparison-section .table-wrapper {
        border-width: 6px;
        border-radius: 12px;
    }

    .pricing-comparison-section .table-scroll::-webkit-scrollbar {
        height: 6px;
    }

    .pricing-comparison-section .table-scroll::-webkit-scrollbar-track {
        background: #f1f5f9;
    }

    .pricing-comparison-section .table-scroll::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 10px;
    }
}

/* Product features banner override for Client Accounting */
.product-features-banner {
    background: #487ab6 !important;
}

/* ----------------------------------
   How This Works Section
   ---------------------------------- */
.how-this-works .container {
    display: block !important;
}

.how-this-works {
    padding: 80px 20px;
    background-color: #ffffff;
}

.how-this-works-header {
    text-align: center;
    margin-bottom: 50px;
}

.how-this-works-header .how-subtitle {
    display: block;
    color: #3b78b8;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 12px;
}

.how-this-works-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2d3748;
    line-height: 1.3;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.how-this-works-header p {
    font-size: 16px;
    line-height: 1.6;
    color: #696969;
    max-width: 800px;
    margin: 0 auto;
}

.how-this-works .cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: stretch;
}

.how-this-works .card {
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.how-this-works .card-left .card-text-area {
    background-color: #3b78b8 !important;
}

.how-this-works .card-right .card-text-area {
    background-color: #2a5d8f !important;
}

/* Override global .card-left and .card-right hero rules */
.how-this-works .card-left,
.how-this-works .card-right {
    flex: 1 !important;
    padding: 0 !important;
    background-color: transparent !important;
    justify-content: flex-start !important;
}

.how-this-works .card-text-area {
    padding: 50px 40px;
    color: #ffffff;
    flex: 1;
}

.how-this-works .card-text-area h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.how-this-works .card-text-area p {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
    color: #e2e8f0;
}

.how-this-works .card-image-area {
    height: 380px;
    flex: none;
    display: flex;
}

.how-this-works .card-image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

@media (max-width: 1024px) {
    .how-this-works .card-text-area {
        padding: 40px 30px;
    }

    .how-this-works .card-image-area {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .how-this-works .cards-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .how-this-works .card-image-area {
        height: 250px;
    }
}

/* =========================================
   Top Section: Split Banner (From test2.html)
   ========================================= */
.pricing-split-banner {
    display: flex;
    width: 100%;
}

/* Left Pane (Darker Blue) */
.split-left {
    flex: 1;
    background-color: #355e8c;
    /* Padding uses percentages to push content towards the center on ultrawide screens */
    padding: 100px 5% 100px 10%;
    display: flex;
    justify-content: flex-end;
    /* Aligns inner container to the right */
}

.split-left-content {
    max-width: 500px;
    width: 100%;
    color: #ffffff;
}

.split-left-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.split-left-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    font-weight: 400;
}

/* Right Pane (Lighter Blue) */
.split-right {
    flex: 1;
    background-color: #4a7bb5;
    padding: 100px 10% 100px 5%;
    display: flex;
    justify-content: flex-start;
    /* Aligns inner container to the left */
}

.split-right-content {
    max-width: 500px;
    width: 100%;
    color: #ffffff;
}

.split-right-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
}

/* Vertical Timeline List */
.timeline-list {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    padding-bottom: 24px;
    /* Space between items */
}

/* Remove bottom padding from the last item so the line doesn't extend */
.timeline-item:last-child {
    padding-bottom: 0;
}

/* The vertical connecting line */
.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 11px;
    /* Centers the 1px line under the 24px circle */
    width: 1px;
    height: calc(100% - 24px);
    background-color: #ffffff;
    z-index: 1;
}

/* Hollow Circle Icon */
.timeline-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1.5px solid white;
    z-index: 2;
    margin-top: -2px;
}

.timeline-icon svg.logo-icon-svg {
    width: 60% !important;
    height: auto !important;
}

.timeline-item span {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.4;
}

/* Responsive Adjustments for Split Banner */
@media (max-width: 950px) {

    /* Stack Split Banner */
    .pricing-split-banner {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        padding: 60px 20px;
        justify-content: center;
    }

    .split-left-content,
    .split-right-content {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .split-left-content h2 {
        font-size: 30px;
    }
}

/* =========================================
   Bottom Section: Consultant Billing Card (From test2.html)
   ========================================= */
.billing-section {
    padding: 80px 20px;
}

/* Main Blue Card Wrapper */
.billing-card-wrapper {
    background-color: #4a7bb5;
    border-radius: 20px;
    display: flex;
    align-items: stretch;
    /* The padding on the top, right, and bottom creates the inset border effect for the dark card */
    padding: 12px 12px 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Left Content (Inside Blue Wrapper) */
.billing-left {
    flex: 0 0 35%;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #ffffff;
}

.billing-left h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
}

.billing-left p {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 40px;
}

.billing-section .btn-get-started {
    background-color: #ffffff;
    color: #355e8c;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.2s ease;
    font-family: 'Inter', sans-serif;
    display: inline-block;
}

.billing-section .btn-get-started:hover {
    background-color: #f1f5f9;
}

/* Right Content (Dark Green/Black Card) */
.billing-right {
    flex: 1;
    background-color: #1a2522;
    /* Very dark green/charcoal */
    border-radius: 16px;
    /* Inner rounded corners */
    padding: 50px 50px;
    color: #ffffff;
}

.billing-right h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* Checkmark List inside Dark Card */
.checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #e2e8f0;
    line-height: 1.5;
}

.billing-section .check-circle {
    width: 20px;
    height: 20px;
    background-color: #4a7bb5;
    /* Solid blue circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.billing-section .check-circle svg {
    width: 12px;
    height: auto;
    fill: #ffffff;
}

/* Stack Billing Card */
@media (max-width: 950px) {
    .billing-card-wrapper {
        flex-direction: column;
        padding: 12px;
        /* Pad all sides on mobile to inset the dark card completely */
    }

    .billing-left {
        flex: auto;
        padding: 40px 20px;
        align-items: center;
        text-align: center;
    }

    .billing-left p {
        margin-bottom: 30px;
    }

    .billing-right {
        padding: 40px 30px;
    }
}

@media (max-width: 600px) {
    .billing-left h3 {
        font-size: 24px;
    }

    .billing-right h4 {
        font-size: 18px;
    }
}

/* ----------------------------------
   Module-Based Plans Section (From test3.html)
   ---------------------------------- */
.module-plans-section {
    padding: 80px 20px;
    background-color: #f7f7f7;
}

.module-plans-section .container {
    display: block !important;
    max-width: 1200px;
    margin: 0 auto;
}

.module-plans-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.module-plans-section .section-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #333333;
    letter-spacing: -0.5px;
}

/* Pricing Cards Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.plan-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Card Top: Centered Alignment */
.plan-top {
    text-align: center;
    border-bottom: 1px solid transparent;
    margin-bottom: 30px;
}

.plan-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    /* text-transform: uppercase; */
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.plan-subtitle {
    font-size: 13px;
    color: #4b5563;
    margin-bottom: 30px;
}

.price-label {
    font-size: 14px;
    font-weight: 500;
    color: #4a7bb5;
    display: block;
    margin-bottom: 10px;
}

.price-block {
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: #1f2937;
    margin-bottom: 4px;
}

.currency {
    font-size: 40px;
    font-weight: 600;
    margin-right: 2px;
}

.amount {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -1px;
}

.price-suffix {
    font-size: 15px;
    color: #9ca3af;
    display: block;
    margin-bottom: 24px;
}

.btn-more {
    background-color: #4a7bb5;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s;
}

.btn-more:hover {
    background-color: #3b6496;
}

/* Card Bottom: Left Alignment */
.plan-bottom {
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.plan-summary {
    font-size: 14px;
    font-weight: 600;
    color: #4a7bb5;
    margin-bottom: 20px;
    line-height: 1.4;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}

.check-icon {
    width: 16px;
    height: 16px;
    background-color: #4a7bb5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-icon svg {
    width: 8px;
    height: 8px;
    stroke: white;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* Bottom Banner CTA */
.explore-banner {
    background-color: #F5FAFF;
    border: 1px solid #EAEAEA;
    border-radius: 12px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.banner-text {
    flex: 1;
}

.banner-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.banner-text p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
}

.btn-contact {
    background-color: #4a7bb5;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s;
}

.btn-contact:hover {
    background-color: #3b6496;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .plans-grid {
        gap: 20px;
    }

    .plan-card {
        padding: 40px 20px;
    }

    .amount {
        font-size: 40px;
    }
}

@media (max-width: 850px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .explore-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
}

@media (max-width: 650px) {
    .module-plans-section .section-header h2 {
        font-size: 30px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .btn-contact {
        width: 100%;
        text-align: center;
    }
}

/* All AccoTick Products Section (Light Theme) */
.all-products-light-section {
    padding: 60px 0;
    text-align: center;
    background-color: #F7F7F7;
    border-top: 1px solid #f0f0f0;
}

.all-products-light-section .products-heading-footer {
    color: #487ab6;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 40px;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
}

.text-center {
    text-align: center;
}

.all-products-light-section .footer-products-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.all-products-light-section .footer-product-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    padding: 12px 25px;
    background: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: left;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.all-products-light-section .footer-product-pill:hover {
    background: #f8fafc;
    border-color: #487ab6;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.all-products-light-section .fp-icon-img {
    width: 28px;
    height: 28px;
    filter: none;
    object-fit: contain;
}

.all-products-light-section .fp-brand {
    font-family: 'Rethink Sans';
    font-weight: 500;
    font-size: 10px;
    color: #8a8a8a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1px;
}

.all-products-light-section .fp-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    font-family: 'DM Sans', sans-serif;
}

@media (max-width: 768px) {
    .all-products-light-section .footer-products-row {
        gap: 15px;
        padding: 0 15px;
    }

    .all-products-light-section .footer-product-pill {
        padding: 10px 20px;
        width: calc(50% - 15px);
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    .all-products-light-section .footer-product-pill {
        width: 100%;
    }
}

/* FAQ Section */
.client-faq-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.client-faq-section .container {
    max-width: 850px;
    margin: 0 auto;
    display: block !important;
}

.client-faq-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.client-faq-section .subtitle {
    display: block;
    color: #4a7bb5;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 12px;
}

.client-faq-section .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #3b6598;
    letter-spacing: -0.5px;
}

.client-faq-section .faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.client-faq-section .faq-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
    transition: border-color 0.2s ease;
}

.client-faq-section .faq-card:hover {
    border-color: #d1d5db;
}

.client-faq-section .faq-question-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    cursor: pointer;
}

.client-faq-section .faq-question-row h3 {
    font-family: 'Rethink Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #170f49;
    line-height: 1.5;
    margin: 0;
}

.client-faq-section .icon-circle {
    width: 28px;
    height: 28px;
    background-color: #4a7bb4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.client-faq-section .icon-circle svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-top: 2px;
    transition: transform 0.2s ease;
}

.client-faq-section .faq-answer {
    max-height: 1000px;
    opacity: 1;
    overflow: visible;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    margin-top: 12px;
    padding-right: 40px;
}

.client-faq-section .faq-answer p {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #6f6c8f;
    margin: 0;
}

/* Accordion Collapsed State */
.client-faq-section .faq-card.collapsed .faq-answer {
    max-height: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
    margin-top: 0 !important;
}

.client-faq-section .faq-card.collapsed .icon-circle svg {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .client-faq-section .section-header h2 {
        font-size: 28px;
    }

    .client-faq-section .faq-card {
        padding: 20px;
    }

    .client-faq-section .faq-answer {
        padding-right: 0;
    }
}

.copyright-bar {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.brand-desc {
    font-family: 'DM Sans';
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    vertical-align: middle;
    margin-top: 20px;
    color: #99A8AB;
    opacity: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}