/* Custom container with reduced padding */
.container-slim {
    width: 100%;
    padding-right: 2rem;
    padding-left: 2rem;
    margin-right: auto;
    margin-left: auto;
}

@media(min-width: 1200px) {
    .container-slim {
        max-width: 1300px;
    }
}

/* --- HERO SECTION STYLES --- */
.hero-section {
    background: white;
    padding: 3.5rem 0 2.5rem 0;
    overflow: hidden;
}

.hero-section h1 {
    color: #232323;
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.hero-section.lead {
    font-size: 1.05rem;
    color: #5C5C5C;
    line-height: 1.5;
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-section.btn-accent-main {
    background: #3081C3;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    transition: all 0.2s ease;
}

.hero-section.btn-outline-primary {
    background: transparent;
    border: 1.5px solid #3081C3;
    border-radius: 8px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    color: #3081C3;
    margin-left: 0.5rem;
    transition: all 0.2s ease;
}

.hero-section.btn-accent-main:hover {
    background: #2952cc;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(55, 100, 229, 0.15);
}

.hero-section.btn-outline-primary:hover {
    background: rgba(55, 100, 229, 0.04);
    transform: translateY(-1px);
}

.hero-right-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    margin-left: -20px;
    margin-top: 10px;
    filter: drop-shadow(0 8px 24px rgba(55, 100, 229, 0.12));
}

.info-boxes {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
}

.info-box-secure {
    background: #EAF3FB;
    border-radius: 14px;
    padding: 1.2rem 1.4rem;
    width: 380px;
    height: auto;
    min-height: 160px;
    border-left: 4px solid #3081C3;
    position: relative;
}

.info-box-specialty {
    background: #E9F7EF;
    border-radius: 14px;
    padding: 1.2rem 1.4rem;
    width: 220px;
    height: auto;
    min-height: 160px;
    border-left: 4px solid #2AD47A;
    position: relative;
}

.info-box-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.7rem;
}

.info-box-title {
    font-weight: 700;
    color: #232323;
    font-size: 1.05rem;
}

.info-box-text {
    color: #232323;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.info-box-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.specialty-logo {
    position: absolute;
    bottom: 1.2rem;
    right: 1.2rem;
    width: 42px;
    height: auto;
}

@media(max-width: 1200px) {
    .info-box-secure {
        width: 340px;
    }

    .info-box-specialty {
        width: 220px;
    }

    .hero-right-img {
        max-width: 440px;
    }

    .features-container {
        padding: 0 20px;
        gap: 20px;
    }

    .feature-card {
        width: calc((100%-40px) / 3);
        min-width: 300px;
    }
}

@media(max-width: 991px) {

    /* Hero Section */
    .hero-section {
        padding: 2rem 0;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .info-boxes {
        flex-direction: column;
        gap: 1rem;
    }

    .info-box-secure,
    .info-box-specialty {
        width: 100%;
        height: auto;
        min-height: 140px;
    }

    .hero-right-img {
        max-width: 100%;
        margin: 2rem auto 0;
    }

    /* Features Section */
    .features-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .feature-card {
        width: calc(50%-20px);
        min-width: 280px;
        height: auto;
        min-height: 400px;
    }

    /* How It Works Section */
    .how-it-works-section {
        padding: 60px 0;
    }

    .how-it-works-content {
        text-align: center;
        margin: 0 auto 2rem;
    }

    .how-it-works-content h1 {
        font-size: 2.2rem;
    }

    /* Pricing Section */
    .pricing-cards {
        flex-wrap: wrap;
        gap: 20px;
    }

    .pricing-card {
        width: calc(50%-10px);
        min-width: 280px;
    }

    /* Testimonials Section */
    .testimonial-carousel {
        max-width: 90%;
        height: 420px;
    }

    .testimonial-card {
        height: 360px;
    }
}

@media(max-width: 768px) {

    /* Hero Section */
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section.lead {
        font-size: 1rem;
    }

    /* Features Section */
    .features-container {
        padding: 0 15px;
    }

    .feature-card {
        width: 100%;
        margin-bottom: 20px;
        min-height: 380px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    /* How It Works Section */
    .how-it-works-content h1 {
        font-size: 2rem;
    }

    /* Pricing Section */
    .pricing-card {
        width: 100%;
    }

    .pricing-header h2 {
        font-size: 2rem;
    }

    /* Testimonials Section */
    .testimonial-carousel {
        height: auto;
        min-height: 500px;
    }

    .testimonial-card {
        height: auto;
        min-height: 440px;
    }

    .testimonial-card-inner {
        flex-direction: column;
    }

    .testimonial-image-wrapper {
        width: 100%;
        height: 200px;
    }

    .testimonial-content {
        padding: 20px;
    }

    .testimonial-heading {
        font-size: 1.2rem;
    }

    .testimonials-header h2 {
        font-size: 2rem;
    }
}

@media(max-width: 576px) {

    /* Hero Section */
    .hero-section {
        padding: 1.5rem 0;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section.btn-accent-main,
    .hero-section.btn-outline-primary {
        width: 100%;
        margin: 0.5rem 0;
    }

    /* Features Section */
    .feature-card {
        padding: 1rem;
        min-height: 350px;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    /* How It Works Section */
    .how-it-works-content h1 {
        font-size: 1.8rem;
    }

    /* Pricing Section */
    .pricing-card {
        padding: 20px;
    }

    .pricing-header h2 {
        font-size: 1.8rem;
    }

    /* Testimonials Section */
    .testimonial-carousel {
        min-height: 480px;
    }

    .testimonial-card {
        min-height: 420px;
    }

    .testimonial-image-wrapper {
        height: 180px;
    }

    .testimonial-content {
        padding: 15px;
    }

    .testimonial-quote {
        font-size: 0.9rem;
    }

    .testimonials-header h2 {
        font-size: 1.8rem;
    }
}

@media(max-width: 480px) {

    /* Features Section */
    .features-container {
        padding: 0 10px;
    }

    .feature-card {
        min-height: 320px;
    }

    .feature-image.first-card img {
        width: 160px;
    }

    .feature-image.third-card img {
        width: 220px;
    }

    /* Testimonials Section */
    .testimonial-carousel {
        min-height: 460px;
        padding: 10px 0;
    }

    .testimonial-card {
        min-height: 400px;
    }

    .testimonial-image-wrapper {
        height: 160px;
    }
}

/*vendor section*/


.vendor-container {
    width: 100%;
    padding: 15px 0;
    background: white;
    border-bottom: 2px solid #efefef;
}

.vendor-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-logo-img {
    height: 30px;
    max-width: 120px;
    object-fit: contain;
}

/* Responsive adjustments */
@media(max-width: 768px) {
    .vendor-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .product-logo-img {
        height: 25px;
        margin: 5px 15px;
    }
}

/* Optional dark left border like in the image */
.vendor-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background-color: #333;
}



.section-container {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.content-left {
    flex: 1;
    min-width: 300px;
}

.list-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.circle {
    width: 40px;
    height: 40px;
    border: 1px solid #999;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 15px;
    font-weight: bold;
}

.list-item h3 {
    margin: 0;
    font-size: 16px;
}

.list-item p {
    margin: 5px 0 0 0;
    font-size: 14px;
    color: #555;
}

.bottom-text {
    margin-top: 40px;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.content-right {
    flex: 0 0 250px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.highlight-box {
    background-color: #d8f5dd;
    padding: 25px;
    border-radius: 10px;
    text-align: left;
}

.highlight-box h2 {
    margin: 0;
    font-size: 32px;
    font-weight: bold;
}

.highlight-box p {
    .dashboard-pixel-description {
        max-width: 100%;
    }
}

@media(max-width: 600px) {
    .dashboard-section-pixel {
        padding: 24px 0 0 0;
    }

    .dashboard-pixel-container {
        gap: 18px;
        padding: 0 8px;
    }

    .dashboard-pixel-image-area {
        min-height: 180px;
        height: 220px;
        max-width: 100%;
    }

    .dashboard-pixel-demo-btn-row {
        left: 8px;
        bottom: 8px;
        width: calc(100%-16px);
    }

    .dashboard-pixel-demo-btn {
        padding: 8px 18px 8px 14px;
        font-size: 0.95rem;
    }

    .dashboard-pixel-arrow-circle {
        width: 32px;
        height: 32px;
        font-size: 1.1em;
    }

    .dashboard-pixel-stats-box {
        height: 56px;
        padding: 0 12px;
        min-width: 0;
        max-width: 100%;
    }

    .dashboard-pixel-feature-item {
        gap: 10px;
        padding: 12px 0;
    }

    .dashboard-pixel-feature-divider {
        height: 28px;
        margin-right: 8px;
    }

    .dashboard-pixel-description {
        font-size: 0.98rem;
    }
}

/* --- DEMO DASHBOARD SECTION --- */
.demo-dashboard-section {
    background: #fff;
    padding: 80px 24px;
    overflow: hidden;
}

.demo-dashboard-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.demo-dashboard-left {
    flex: 1;
    max-width: 600px;
}

.demo-dashboard-laptop {
    position: relative;
    width: 100%;
    margin-bottom: 24px;
}

.demo-dashboard-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.demo-dashboard-buttons {
    position: absolute;
    left: 24px;
    bottom: 24px;
    display: flex;
    color: white;
    align-items: center;
    width: calc(100%-48px);
    justify-content: space-between;
}

.demo-dashboard-demo-btn {
    background: #3081C3;
    color: #fff;
    border-radius: 16px;
    padding: 16px 28px;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.demo-dashboard-demo-btn:hover {
    background: #2566a8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.demo-dashboard-arrow-btn {
    background: #3081C3;
    color: white;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 200;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.demo-dashboard-stats-box {
    background: #d8f5dd;
    padding: 20px 28px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 45px;
    margin-top: 32px;
}

.demo-dashboard-stats-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #232323;
    line-height: 1;
}

.demo-dashboard-stats-text {
    font-size: 1.1rem;
    color: #232323;
    line-height: 1.4;
    flex: 1;
    padding-left: 110px;
}

.demo-dashboard-right {
    flex: 1;
    max-width: 480px;
}

.demo-dashboard-top-text {
    margin-top: 48px;
}

.demo-dashboard-heading {
    font-size: 2.75rem;
    font-weight: 700;
    color: #232323;
    line-height: 1.2;
    margin: 0 0 28px;
}

.demo-dashboard-description {
    font-size: 1.15rem;
    line-height: 1.6;
    color: black;
    margin: 0;
    max-width: 600px;
}

.demo-dashboard-feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media(max-width: 768px) and(min-width: 471px) {
    .demo-dashboard-feature-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .demo-dashboard-feature-item {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding-bottom: 15px;
        border-bottom: 1px solid #eaeaea;
    }

    .demo-dashboard-feature-number {
        margin-bottom: 8px;
    }

    .demo-dashboard-feature-title {
        margin: 8px 0;
    }

    .demo-dashboard-feature-desc {
        max-width: 100%;
    }
}

@media(max-width: 470px) {
    .demo-dashboard-feature-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .demo-dashboard-feature-item {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding-bottom: 15px;
        border-bottom: 1px solid #eaeaea;
    }
}

.demo-dashboard-feature-item {
    display: grid;
    grid-template-columns: 40px 80px 1fr;
    gap: 16px;
    align-items: start;
    padding-bottom: 24px;
    border-bottom: 1px solid #eaeaea;
}

.demo-dashboard-feature-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #232323;
    font-size: 1.3rem;
}

.demo-dashboard-feature-title {
    font-weight: 700;
    color: #232323;
    font-size: 1.2rem;
}

.demo-dashboard-feature-desc {
    color: black;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 400px;
}

/* Tablet Styles */
@media(max-width: 1024px) {
    .demo-dashboard-container {
        flex-direction: column;
        gap: 40px;
    }

    .demo-dashboard-left,
    .demo-dashboard-right {
        max-width: 100%;
    }

    .demo-dashboard-stats-box {
        padding: 16px 24px;
        gap: 24px;
    }

    .demo-dashboard-stats-text {
        padding-left: 0;
    }
}

/* Mobile Large Styles */
@media(max-width: 768px) {
    .demo-dashboard-section {
        padding: 40px 16px;
    }

    .demo-dashboard-heading {
        font-size: 2.25rem;
    }

    .demo-dashboard-description {
        font-size: 1rem;
    }

    .demo-dashboard-demo-btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .demo-dashboard-arrow-btn {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .demo-dashboard-stats-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .demo-dashboard-stats-text {
        font-size: 0.95rem;
    }

    .demo-dashboard-feature-list {
        max-width: 500px;
        margin: 0 auto;
        padding: 0 65px;
        text-align: center;
    }

    .demo-dashboard-feature-item {
        grid-template-columns: 36px 1fr;
        gap: 16px;
        text-align: left;
    }
}

/* Time Saving Section */
.time-saving-section {
    padding: 80px 0;
    background-color: white;
}

.time-saving-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.time-saving-header {
    text-align: center;
    margin-bottom: 48px;
}

.time-saving-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #232323;
    margin-bottom: 16px;
    line-height: 1.2;
}

.time-saving-highlight {
    color: #3081C3;
}

.time-saving-subtitle {
    font-size: 1.1rem;
    color: #5C5C5C;
    max-width: 600px;
    margin: 0 auto;
}

.time-saving-comparison {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.time-saving-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.time-saving-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
}

.time-saving-row:last-child {
    border-bottom: none;
}

.time-saving-header-row {
    background-color: #f8fafc;
    font-weight: 600;
}

.time-saving-cell {
    padding: 20px 24px;
    font-size: 1rem;
    color: #374151;
}

.time-saving-cell.task {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.time-saving-cell.highlight {
    color: #3081C3;
    font-weight: 500;
}

.task-icon {
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.task-icon.typing {
    background-image: url('../img/typing-icon.svg');
}

.task-icon.structure {
    background-image: url('../img/structure-icon.svg');
}

.task-icon.coding {
    background-image: url('../img/coding-icon.svg');
}

.task-icon.navigation {
    background-image: url('../img/navigation-icon.svg');
}

/* Time Saving Section Responsive */
@media(max-width: 768px) {
    .time-saving-section {
        padding: 60px 0;
    }

    .time-saving-title {
        font-size: 2rem;
    }

    .time-saving-subtitle {
        font-size: 1rem;
        padding: 0 16px;
    }

    .time-saving-row {
        grid-template-columns: 1.2fr 1fr 1fr;
    }

    .time-saving-cell {
        padding: 16px;
        font-size: 0.95rem;
    }

    .time-saving-comparison {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media(max-width: 640px) {
    .time-saving-container {
        padding: 0 16px;
    }

    .time-saving-row {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        padding: 16px 0;
        gap: 8px;
    }

    .time-saving-header-row {
        display: none;
    }

    .time-saving-cell {
        padding: 8px 16px;
        text-align: left;
    }

    .time-saving-cell:not(.task):before {
        content: attr(data-label);
        font-weight: 600;
        display: block;
        margin-bottom: 4px;
        color: #6b7280;
        font-size: 0.85rem;
    }
}

/* Mobile Small Styles */
@media(max-width: 480px) {
    .demo-dashboard-section {
        padding: 32px 12px;
    }

    .demo-dashboard-buttons {
        left: 16px;
        bottom: 16px;
        width: calc(100%-32px);
    }

    .demo-dashboard-demo-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        border-radius: 12px;
    }

    .demo-dashboard-arrow-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .demo-dashboard-feature-item {
        grid-template-columns: 32px 1fr;
        gap: 12px;
        padding-bottom: 20px;
    }

    .demo-dashboard-feature-number {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .demo-dashboard-stats-box {
        padding: 16px;
    }

    .demo-dashboard-stats-number {
        font-size: 2rem;
    }

    .demo-dashboard-stats-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/* Features Section Styles */
.features-section {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

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

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4B5563;
    margin-bottom: 24px;
    flex-grow: 1;
}

.feature-image {
    margin-top: auto;
    text-align: center;
    padding: 20px 0;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.feature-image.first-card img {
    max-width: 200px;
    margin: 0 auto;
}

.feature-image.third-card img {
    max-width: 280px;
    margin: 0 auto;
}

.soap-notes-content {
    background: #F8F9FA;
    border-radius: 12px;
    padding: 20px;
    margin-top: auto;
}

.soap-notes-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #E5E7EB;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

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

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4B5563;
    margin-bottom: 24px;
    flex-grow: 1;
}

.feature-image {
    margin-top: auto;
    text-align: center;
    padding: 20px 0;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.feature-image.first-card img {
    max-width: 200px;
    margin: 0 auto;
}

.feature-image.third-card img {
    max-width: 280px;
    margin: 0 auto;
}

.soap-notes-content {
    background: #F8F9FA;
    border-radius: 12px;
    padding: 20px;
    margin-top: auto;
}

.soap-notes-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #E5E7EB;
}

.soap-notes-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 12px;
}

/* Features Section Responsive */
@media(max-width: 1200px) {
    .features-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media(max-width: 991px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature-card {
        min-height: 380px;
    }
}

@media(max-width: 768px) {
    .features-section {
        padding: 40px 0;
    }

    .features-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .feature-card {
        min-height: 350px;
    }

    .feature-card h3 {
        font-size: 20px;
    }

    .feature-card p {
        font-size: 15px;
    }

    .feature-image.first-card img {
        max-width: 160px;
    }

    .feature-image.third-card img {
        max-width: 220px;
    }
}

@media(max-width: 576px) {
    .features-section {
        padding: 30px 0;
    }

    .features-container {
        padding: 0 15px;
    }

    .feature-card {
        min-height: 320px;
        padding: 20px;
    }

    .feature-image {
        padding: 15px 0;
    }

    .soap-notes-content {
        padding: 15px;
    }
}

/* --- HOW IT WORKS SECTION STYLES --- */
.how-it-works-section {
    background: #fff;
    padding: 80px 0 60px;
}

.how-it-works-content {
    max-width: 460px;
}

.how-it-works-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #232323;
}

.how-it-works-content h1.highlight {
    color: #3081C3;
}

.how-it-works-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #5C5C5C;
    margin-bottom: 32px;
}

.get-started-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #3081C3;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.get-started-btn:hover {
    background: #2952cc;
    transform: translateY(-1px);
    color: white;
}

.steps-image {
    max-width: 100%;
    height: auto;
}

/* --- PRICING SECTION STYLES --- */
.pricing-section {
    background: #fff;
    padding: 60px 0;
    font-family: 'Urbanist', sans-serif;
}

.pricing-header {
    text-align: center;
    margin-bottom: 48px;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 24px;
}

.pricing-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 32px;
    width: 360px;
    min-height: 520px;
    display: flex;
    flex-direction: column;
}

.pricing-card.highlighted {
    background: #3081C3;
    color: white;
    position: relative;
    box-shadow: 0 4px 20px rgba(55, 100, 229, 0.2);
}

.most-popular-tag {
    position: absolute;
    top: -12px;
    left: 24px;
    background: #fff;
    color: #3081C3;
    padding: 4px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.pricing-card h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 24px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.pricing-price.currency {
    font-size: 20px;
    font-weight: 500;
}

.pricing-price.amount {
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
}

.pricing-period {
    font-size: 14px;
    color: inherit;
    opacity: 0.8;
    margin-left: 2px;
}

.pricing-subtitle {
    font-size: 14px;
    color: #ffffff;
    margin: 16px 0 32px;
    line-height: 1.5;
}

.highlighted.pricing-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.5;
}

.pricing-feature-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    padding: 4px;
}

.highlighted.pricing-feature-icon {
    background: rgba(255, 255, 255, 0.1);
}

.pricing-feature-icon svg {
    width: 12px;
    height: 12px;
    stroke: #22C55E;
    stroke-width: 2;
}

.highlighted.pricing-feature-icon svg {
    stroke: #fff;
}

.pricing-btn {
    margin-top: auto;
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 26px;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s ease;
}

.pricing-btn.free,
.pricing-btn.plus {
    background: #3081C3;
    color: white;
}

.pricing-btn.pro {
    background: white;
    color: #3081C3;
}

.pricing-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(55, 100, 229, 0.15);
}

.pricing-price span {

    text-align: center;
}

/* --- TESTIMONIALS SECTION STYLES --- */
.testimonials-section {
    background: #fff;
    padding: 80px 0;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #232323;
}

.testimonials-header h2 span {
    color: #3081C3;
}

.testimonials-header p {
    font-size: 1.1rem;
    color: #5C5C5C;
    margin: 0 auto;
    max-width: 600px;
    line-height: 1.5;
}

.testimonial-carousel {
    position: relative;
    height: 380px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

.testimonial-track {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.testimonial-card {
    background: #fff;
    width: 100%;
    position: absolute;
    left: 0;
    height: 320px;
    transition: all 0.5s ease;
    opacity: 0;
    visibility: hidden;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
}

.testimonial-card.prev {
    opacity: 1;
    visibility: visible;
    z-index: 1;
    top: 0;
    transform: translateY(-90%);
}

.testimonial-card.next {
    opacity: 1;
    visibility: visible;
    z-index: 1;
    top: 100%;
    transform: translateY(-10%);
}

.testimonial-card-inner {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.testimonial-image-wrapper {
    position: relative;
    width: 280px;
    height: 100%;
    overflow: hidden;
}

.testimonial-image {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 8px solid #fff;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.testimonial-content {
    flex: 1;
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
}

.testimonial-card.prev.testimonial-content,
.testimonial-card.next.testimonial-content {
    opacity: 0;
}

.testimonial-heading {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 16px;
    color: #232323;
}

.testimonial-quote {
    font-size: 14px;
    color: #5C5C5C;
    margin-bottom: 24px;
    line-height: 1.5;
    font-style: normal;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #232323;
    margin-top: auto;
}

.testimonial-role {
    font-size: 14px;
    color: #5C5C5C;
    margin-bottom: 0;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-left: auto;
    margin-top: -24px;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    color: #22C55E;
}

.text-primary {
    color: #3081C3;
}

@media(max-width: 768px) {
    .testimonial-card {
        max-width: 90%;
    }

    .testimonial-card-inner {
        flex-direction: column;
    }

    .testimonial-image-wrapper {
        width: 100%;
        height: 200px;
    }
}

/* --- RESPONSIVE STYLES --- */
@media(max-width: 1200px) {
    .info-box-secure {
        width: 340px;
    }

    .info-box-specialty {
        width: 220px;
    }

    .hero-right-img {
        max-width: 440px;
    }

    .features-container {
        padding: 0 20px;
        gap: 20px;
    }

    .feature-card {
        width: calc((100%-40px) / 3);
        min-width: 300px;
    }
}

@media(max-width: 991px) {
    .hero-section {
        padding: 2rem 0;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .info-boxes {
        flex-direction: column;
        gap: 1rem;
    }

    .info-box-secure,
    .info-box-specialty {
        width: 100%;
        height: auto;
        min-height: 140px;
    }

    .hero-right-img {
        max-width: 100%;
        margin: 2rem auto 0;
    }

    .feature-card {
        margin-bottom: 2rem;
        height: auto;
    }

    .how-it-works-section {
        padding: 60px 0;
    }

    .how-it-works-content {
        text-align: center;
        margin: 0 auto 2rem;
        padding-right: 0 !important;
    }

    .how-it-works-content h1 {
        font-size: 2.2rem;
    }

    .how-it-works-content p {
        margin: 0 auto 2rem;
    }

    .steps-image {
        max-width: 100% !important;
        margin: 0 auto !important;
    }

    .pricing-cards {
        flex-wrap: wrap;
        gap: 20px;
    }

    .pricing-card {
        width: calc(50%-10px);
        min-width: 280px;
    }

    .testimonial-carousel {
        max-width: 90%;
        min-height: 600px;
    }

    .testimonial-card {
        min-height: 520px;
    }

    .testimonial-heading {
        font-size: 20px;
    }
}

@media(max-width: 767px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section.lead {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .how-it-works-content h1 {
        font-size: 1.8rem;
    }

    .testimonial-carousel {
        min-height: 650px;
    }

    .testimonial-card-inner {
        flex-direction: column;
    }

    .testimonial-image-wrapper {
        width: 100%;
        height: auto;
        margin-bottom: 1rem;
    }

    .testimonial-image {
        width: 100%;
        height: auto;
        max-width: 200px;
        margin: 0 auto;
    }

    .testimonial-content {
        padding: 1.5rem;
    }

    .testimonial-heading {
        font-size: 1.2rem;
    }
}

@media(max-width: 576px) {
    .hero-section {
        padding: 1.5rem 0;
    }

    .hero-section h1 {
        font-size: 1.6rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .feature-card {
        padding: 1.2rem;
    }

    .how-it-works-content h1 {
        font-size: 1.6rem;
    }

    .testimonial-carousel {
        min-height: 680px;
        padding: 0;
    }

    .testimonial-heading {
        font-size: 1.1rem;
    }

    .testimonial-quote {
        font-size: 0.9rem;
    }

    .pricing-header h2 {
        font-size: 1.6rem;
    }
}

@media(max-width: 768px) {
    .time-saving-section {
        padding: 40px 0;
    }

    .time-saving-container {
        padding: 0 16px;
    }

    .time-saving-title {
        font-size: 2rem;
    }

    .time-saving-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }

    .time-saving-table {
        border-radius: 12px;
    }

    .time-saving-cell {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
}

@media(max-width: 480px) {
    .feature-card {
        width: 100%;
        height: auto;
        min-height: 400px;
    }

    .testimonial-carousel {
        min-height: 650px;
    }

    .testimonial-card {
        min-height: 600px;
    }

    .testimonial-image-wrapper {
        height: 180px;
    }

    /* Time Saving Section Mobile Styles */
    .time-saving-table {
        border: 0;
        box-shadow: none;
        background: transparent;
    }

    .time-saving-header-row {
        display: none;
    }

    .time-saving-row {
        display: block;
        margin-bottom: 1rem;
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        overflow: hidden;
    }

    .time-saving-cell {
        display: block;
        text-align: right;
        padding: 12px 16px;
        border: none;
        border-bottom: 1px solid #E5E7EB;
    }

    .time-saving-cell:last-child {
        border-bottom: none;
    }

    .time-saving-cell:before {
        content: attr(data-label);
        float: left;
        font-weight: 600;
        color: #232323;
        font-size: 0.85em;
    }

    .time-saving-cell.task {
        text-align: left;
        background: #F8F9FA;
        border-bottom: 1px solid #E5E7EB;
        padding: 16px;
    }

    .time-saving-cell.task:before {
        content: none;
    }

    .time-saving-cell.highlight {
        color: #3081C3;
    }
}

/* Time Saving Section Styles */
.time-saving-section {
    padding: 80px 0;
    background-color: white !important;
}

.time-saving-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.time-saving-header {
    text-align: center;
    margin-bottom: 50px;
}

.time-saving-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #232323;
    margin-bottom: 16px;
    line-height: 1.2;
}

.time-saving-highlight {
    color: #3081C3;
}

.time-saving-subtitle {
    font-size: 1.1rem;
    color: #5C5C5C;
    line-height: 1.6;
}

.time-saving-table {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #E5E7EB;
    overflow: hidden;
    padding: 16px;
}

.time-saving-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
}

.time-saving-row:not(.time-saving-header-row) {
    border-bottom: 1px solid #E5E7EB;
}

.time-saving-row:last-child {
    border-bottom: none;
}

.time-saving-header-row {
    border-bottom: 2px solid #E5E7EB;
    margin-bottom: 8px;
}

.time-saving-cell {
    padding: 14px 20px;
    font-size: 0.9rem;
    color: black;
    display: flex;
    align-items: center;
    border-right: 1px solid #E5E7EB;
    background: transparent;
}

.time-saving-cell:last-child {
    border-right: none;
}

.time-saving-header-row.time-saving-cell:nth-child(1),
.time-saving-header-row.time-saving-cell:nth-child(2) {
    font-weight: bold;
    color: #232323;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.time-saving-header-row.time-saving-cell:last-child {
    font-weight: normal;
    color: #232323;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.time-saving-cell.task {
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #232323;
    background: transparent;
}



.task-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    opacity: 0.8;
}

@media screen and(max-width: 768px) {
    .time-saving-section {
        padding: 60px 0;
    }

    .time-saving-title {
        font-size: 2rem;
        text-align: center;
    }

    .time-saving-subtitle {
        font-size: 1rem;
        text-align: center;
    }

    .time-saving-table {
        padding: 12px;
    }

    .time-saving-row {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .time-saving-cell {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
}

@media screen and(max-width: 640px) {
    .time-saving-section {
        padding: 40px 0;
    }

    .time-saving-title {
        font-size: 1.75rem;
    }

    .time-saving-table {
        padding: 8px;
    }

    .time-saving-row {
        display: flex;
        flex-direction: column;
        padding: 16px 0;
        border-bottom: 1px solid #E5E7EB;
    }

    .time-saving-row:last-child {
        border-bottom: none;
    }

    .time-saving-cell {
        padding: 8px 12px;
        border-right: none;
    }

    .time-saving-cell.task {
        font-weight: 500;
        margin-bottom: 8px;
    }

    .time-saving-header-row {
        display: none;
    }

    .time-saving-cell[data-label] {
        display: grid;
        grid-template-columns: 120px 1fr;
        gap: 8px;
        align-items: center;
    }

    .time-saving-cell[data-label]:before {
        content: attr(data-label);
        color: #6B7280;
        font-size: 0.85rem;
    }
}

.time-saving-header-row.time-saving-cell:last-child,
.time-saving-cell.highlight {
    color: #3081C3;
    font-weight: bold;
    font-style: italic;
}

/* Demo Dashboard Section */
.demo-dashboard-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.demo-dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Time Saving Section */
.time-saving-section {
    padding: 80px 0;
    background-color: white;
}

.time-saving-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #232323;
    text-align: center;
    margin-bottom: 1rem;
}

.time-saving-subtitle {
    font-size: 1.1rem;
    color: #5C5C5C;
    text-align: center;
    margin-bottom: 3rem;
}

.time-saving-table {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin: 0 auto;
    max-width: 900px;
}

/* Vendor Container */
.vendor-container {
    padding: 60px 0;
    background-color: white;
    position: relative;
    border-left: 5px solid #3081C3;
    margin: 40px 0;
}

.vendor-container h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #232323;
    margin-bottom: 1rem;
}

.vendor-container p {
    font-size: 1.1rem;
    color: #5C5C5C;
    margin-bottom: 2rem;
}

.vendor-logo {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.vendor-logo:hover {
    opacity: 1;
}

/* --- FINAL: STATS BOX AND DESCRIPTION SIDE BY SIDE, CENTERED --- */
.dashboard-bottom-row {
    display: flex;
    align-items: center;
    gap: 36px;
    width: 100%;
    margin-top: 24px;
}

.dashboard-stats-box-absolute {
    margin-top: 0;
    margin-bottom: 0;
    height: 64px;
    padding: 0 32px 0 32px;
    display: flex;
    align-items: center;
    min-width: 320px;
    max-width: 420px;
    box-sizing: border-box;
    background: #d8f5dd;
    border-radius: 14px;
}

.dashboard-description-absolute {

    margin-top: 0;
    padding-top: 0;
    display: flex;
    align-items: center;
    font-size: 1.02rem;
    max-width: 100%;
    color: #374151;
    line-height: 1.6;
}

@media(max-width: 900px) {
    .dashboard-bottom-row {
        flex-direction: column;
        gap: 24px;
        margin-top: 18px;
        align-items: stretch;
    }

    .dashboard-stats-box-absolute {
        height: auto;
        padding: 12px 8px 12px 12px;
        min-width: 0;
        max-width: 100%;
    }

    .dashboard-description-absolute {
        display: block;
        align-items: initial;
        max-width: 100%;
    }
}