/* ========== ACCOUNTS RECEIVABLE & ACCOUNTS PAYABLE (AR/AP) OUTSOURCING - UPDATED LAYOUT ========== */

/* Full Screen Sections */
.ap-hero-full,
.ap-section-full {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 1rem 0;
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.ap-section-full:nth-child(even) {
    background: var(--grey-soft);
}

/* Full Width Containers */
.ap-container-full,
.container-full {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Hero Section */
.ap-hero-full {
    background: linear-gradient(145deg,var(--bg-color), var(--grey-soft));
}

.ap-badge-wrapper {
    text-align: center;
    margin-bottom: 2rem;
}

.ap-badge {
    background: var(--primary-navy);
    color: var(--white-color);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    display: inline-block;
    text-transform: uppercase;
}

.ap-heading {
    text-align: center;
    margin-bottom: 1rem;
}

.ap-heading-main {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.ap-heading-sub {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-slate);
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
}

.ap-hero-card {
    background: var(--white-color);
    border-radius: 40px;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    max-width: 1000px;
    margin: 0 auto;
}

.ap-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.ap-hero-left p {
    font-size: 1.15rem;
    line-height: 1.7;
    color:var(--text-medium);
    margin: 0;
}

.ap-hero-right .ap-hero-highlight {
    background: var(--primary-navy);
    color:var(--white-color);
    border-radius: 30px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ap-hero-right .ap-hero-highlight i {
    font-size: 2rem;
    opacity: 0.8;
}

.ap-hero-right .ap-hero-highlight p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

.ap-hero-cta-full {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
    align-items: center;
}

.ap-btn-primary-full {
    background: var(--primary-navy);
    color: var(--white-color);
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ap-btn-secondary-full {
    color: var(--primary-navy);
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    border: 2px solid var(--primary-navy);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ap-btn-primary-full:hover,
.ap-btn-secondary-full:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.ap-btn-secondary-full:hover {
    background: var(--primary-navy);
    color: var(--white-color);
}

.ap-cta-divider-full {
    color: var(--primary-navy);
    font-weight: 300;
    font-size: 1.2rem;
}

.ap-dots-full {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(var(--primary-navy) 2px, transparent 2px);
    background-size: 25px 25px;
    opacity: 0.03;
    z-index: 1;
}

/* Section Header */
.ap-section-header-full {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 1rem;
}

.ap-section-label-full {
    color: var(--primary-navy);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
    background: var(--primary-navy-soft);
    padding: 0.3rem 1.5rem;
    border-radius: 30px;
}

.ap-section-title-full {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.3;
}

/* Problem Section */
.ap-problem-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white-color);
    border-radius: 40px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-light);
}

.ap-problem-intro {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-navy);
    text-align: center;
    margin-bottom: 2.5rem;
}

.ap-problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.ap-problem-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--grey-soft);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.ap-problem-item i {
    color: var(--primary-navy);
    font-size: 1.1rem;
    min-width: 1.5rem;
    margin-top: 0.2rem;
}

.ap-problem-item span {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-medium);
}

.ap-problem-outcome {
    background: var(--primary-navy);
    color:var(--white-color);
    padding: 1.5rem 2rem;
    border-radius: 60px;
    text-align: center;
}

.ap-problem-outcome p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Solution Section */
.ap-solution-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white-color);
    border-radius: 40px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-light);
}

.ap-solution-main {
    margin-bottom: 2.5rem;
}

.ap-solution-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-medium);
    text-align: center;
}

.ap-solution-features h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-navy);
    text-align: center;
    margin-bottom: 1.5rem;
}

.ap-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.ap-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--grey-soft);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.ap-feature-item i {
    color: var(--primary-navy);
    font-size: 1.1rem;
    min-width: 1.5rem;
}

.ap-feature-item span {
    font-size: 0.95rem;
    color: var(--text-medium);
}

.ap-solution-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--grey-soft);
    padding: 1.2rem 1.8rem;
    border-radius: 60px;
    border: 1px solid var(--border-color);
}

.ap-solution-note i {
    color: var(--primary-navy);
    font-size: 1.2rem;
}

.ap-solution-note p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-medium);
}

/* What's Included */
.ap-included-tabs {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.ap-included-block {
    background: var(--white-color);
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-softs);
}

.ap-block-header {
    background: var(--primary-navy);
    color: var(--white-color);
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ap-block-header i {
    font-size: 1.5rem;
    opacity: 0.9;
}

.ap-block-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.ap-block-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.ap-block-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem;
    background: var(--grey-soft);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.ap-block-item i {
    color: var(--primary-navy);
    font-size: 1rem;
    min-width: 1.5rem;
    margin-top: 0.2rem;
}

.ap-block-item > div {
    display: flex;
    flex-direction: column;
}

.ap-block-item strong {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.2rem;
}

.ap-block-item span {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.4;
}

/* Benefits Section */
.ap-benefits-container {
    max-width: 1000px;
    margin: 0 auto;
}

.ap-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.ap-benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--white-color);
    padding: 1.2rem 1.5rem;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-subtle);
}

.ap-benefit-card i {
    color: var(--primary-navy);
    font-size: 1.2rem;
    min-width: 1.5rem;
    margin-top: 0.1rem;
}

.ap-benefit-card > div {
    display: flex;
    flex-direction: column;
}

.ap-benefit-card strong {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.2rem;
}

.ap-benefit-card span {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.4;
}

.ap-benefits-summary {
    background: var(--primary-navy);;
    color: var(--white-color);
    padding: 1.5rem 2rem;
    border-radius: 60px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.ap-benefits-summary p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Why Choose */
.ap-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.ap-why-card {
    background: var(--white-color);
    border-radius: 30px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-softs);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ap-why-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-navy);;
    box-shadow: var(--shadow-card);
}

.ap-why-card i {
    font-size: 2rem;
    color: var(--primary-navy);;
    margin-bottom: 1.2rem;
}

.ap-why-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-navy);;
    margin-bottom: 0.8rem;
}

.ap-why-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-medium);
    margin: 0;
}

.ap-why-card-wide {
    grid-column: span 3;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

/* CTA Section */
.ap-cta-card {
    background: var(--primary-navy);;
    border-radius: 60px;
    padding: 2rem;
    text-align: center;
    color: var(--white-color);
    max-width: 900px;
    margin: 0 auto;
}

.ap-cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.ap-cta-text {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.ap-cta-button-wrapper {
    margin-bottom: 1.5rem;
}

.ap-cta-button {
    display: inline-block;
    background: var(--white-color);
    color: var(--primary-navy);;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 280px;
}

.ap-cta-button i {
    margin-right: 0.5rem;
}

.ap-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-neutral-md);
}

.ap-cta-specialist {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0 auto;
    max-width: 500px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    .ap-hero-grid,
    .ap-problem-grid,
    .ap-features-grid,
    .ap-benefits-grid,
    .ap-why-grid {
        grid-template-columns: 1fr;
    }
    
    .ap-why-card-wide {
        grid-column: span 1;
    }
    
    .ap-heading-main {
        font-size: 2.5rem;
    }
    
    .ap-heading-sub {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .ap-hero-full,
    .ap-section-full {
        padding: 3rem 0;
    }
    
    .ap-hero-grid {
        grid-template-columns: 1fr;
    }
    
    .ap-hero-card,
    .ap-problem-container,
    .ap-solution-container,
    .ap-cta-card {
        padding: 1.5rem;
    }
    
    .ap-hero-cta-full {
        flex-direction: column;
        gap: 1rem;
    }
    
    .ap-cta-divider-full {
        display: none;
    }
    
    .ap-cta-button {
        width: 100%;
    }
}
/* Hero Section */
.ap-hero-full {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 1rem 0;
    background: linear-gradient(145deg, var(--bg-color), var(--grey-soft));
    position: relative;
    overflow: hidden;
}

.ap-container-full {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 2;
}

.ap-badge-wrapper {
    text-align: center;
    margin-bottom: 2rem;
}

.ap-badge {
    background: var(--primary-navy);;
    color: var(--white-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 0.6rem 2.5rem;
    border-radius: 50px;
    display: inline-block;
    text-transform: uppercase;
}

.ap-heading {
    text-align: center;
    margin-bottom: 1rem;
}

.ap-heading-main {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-navy);;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.ap-heading-sub {
    font-size: 2rem;
    font-weight: 300;
    color: var(--accent-slate);
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto;
}

/* Single Card */
.ap-single-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white-color);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.ap-card-pattern {
    height: 8px;
    background: linear-gradient(90deg, var(--primary-navy), var(--accent-slate), var(--primary-navy));
    width: 100%;
}

.ap-card-content {
    padding: 3rem;
}

.ap-card-text-primary {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--primary-navy);;
    text-align: center;
    font-weight: 500;
    margin-bottom: 2rem;
}

.ap-card-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.ap-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-navy), transparent);
    opacity: 0.2;
}

.ap-divider-icon {
    width: 40px;
    height: 40px;
    background: var(--grey-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);;
    font-size: 0.8rem;
    border: 1px solid var(--border-color);
}

.ap-card-text-secondary {
    font-size: 1.1rem;
    line-height: 1.7;
    color:var(--text-medium);
    text-align: center;
    font-style: italic;
    margin-bottom: 0;
}

/* CTA Section */
.ap-hero-cta-full {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
    align-items: center;
}

.ap-btn-primary-full {
    background: var(--primary-navy);
    color: var(--white-color);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.ap-btn-secondary-full {
    color: var(--primary-navy);;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: 2px solid var(--primary-navy);;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.ap-btn-primary-full:hover,
.ap-btn-secondary-full:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.ap-btn-secondary-full:hover {
    background: var(--primary-navy);
    color:var(--white-color);
}

.ap-cta-divider-full {
    color: var(--primary-navy);
    font-weight: 300;
    font-size: 1.2rem;
}

.ap-dots-full {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(var(--primary-navy) 2px, transparent 2px);
    background-size: 25px 25px;
    opacity: 0.03;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .ap-heading-main {
        font-size: 2.2rem;
    }
    
    .ap-heading-sub {
        font-size: 1.3rem;
    }
    
    .ap-card-content {
        padding: 2rem;
    }
    
    .ap-card-text-primary {
        font-size: 1.1rem;
    }
    
    .ap-card-text-secondary {
        font-size: 1rem;
    }
    
    .ap-hero-cta-full {
        flex-direction: column;
        gap: 1rem;
    }
    
    .ap-cta-divider-full {
        display: none;
    }
}
/* Why Choose Modern Grid */
.ap-why-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.ap-why-modern-card {
    background: var(--white-color);
    border-radius: 30px;
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-color);
    box-shadow:var(--shadow-softs);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ap-why-modern-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-navy);
    box-shadow: var(--shadow-card);
}

.ap-why-modern-card-wide {
    grid-column: span 1;
}

.ap-why-modern-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-navy-soft);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.ap-why-modern-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.ap-why-modern-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .ap-why-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ap-why-modern-grid {
        grid-template-columns: 1fr;
    }
}
/* ========== ATTRACTIVE WHY CHOOSE CARDS FOR AR/AP ========== */

/* Section header with underline */
.ap-section-header-full {
    text-align: center;
    margin-bottom: 3.5rem;
}

.ap-section-label-full {
    color: var(--primary-navy);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.2rem;
    background: var(--primary-navy-soft);
    padding: 0.3rem 1.5rem;
    border-radius: 30px;
}

.ap-section-title-full {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.3;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ap-title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-navy), #4a6fa5, var(--primary-navy));
    margin: 0 auto;
    border-radius: 4px;
}

/* Card grid - Left aligned grid */
.ap-why-grid-attractive {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Attractive cards */
.ap-why-card-attractive {
    perspective: 1500px;
    height: 100%;
}

.ap-why-card-inner {
    background: linear-gradient(145deg, #ffffff, #f8fafd);
    border-radius: 30px;
    padding: 2.5rem 2rem;
    height: 100%;
    min-height: 280px;
    border: 1px solid rgba(19, 41, 75, 0.1);
    box-shadow: 0 20px 40px -15px rgba(19, 41, 75, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.ap-why-card-attractive:hover .ap-why-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -20px var(--primary-navy);
    border-color: rgba(19, 41, 75, 0.2);
    background: white;
}

/* Shine effect */
.ap-why-card-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.ap-why-card-attractive:hover .ap-why-card-shine {
    transform: translateX(100%);
}

/* Icon styling */
.ap-why-icon-attractive {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-navy), #1e3a5f);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 15px 30px -10px var(--primary-navy);
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.ap-why-icon-attractive::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(19, 41, 75, 0.1);
    border-radius: 27px;
    z-index: -1;
    transition: all 0.3s ease;
}

.ap-why-card-attractive:hover .ap-why-icon-attractive::after {
    width: 90px;
    height: 90px;
    background: rgba(19, 41, 75, 0.15);
}

.ap-why-card-attractive:hover .ap-why-icon-attractive {
    transform: scale(1.05) rotate(5deg);
}

/* Card title */
.ap-why-title-attractive {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
    text-align: left;
}

.ap-why-card-attractive:hover .ap-why-title-attractive {
    color: #1e3a5f;
}

/* Card text */
.ap-why-text-attractive {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
    transition: color 0.3s ease;
    flex-grow: 1;
    text-align: left;
    overflow-y: auto;
    max-height: 120px;
    padding-right: 0.25rem;
}

/* Custom scrollbar */
.ap-why-text-attractive::-webkit-scrollbar {
    width: 4px;
}

.ap-why-text-attractive::-webkit-scrollbar-track {
    background: rgba(19, 41, 75, 0.05);
    border-radius: 10px;
}

.ap-why-text-attractive::-webkit-scrollbar-thumb {
    background: rgba(19, 41, 75, 0.2);
    border-radius: 10px;
}

.ap-why-text-attractive::-webkit-scrollbar-thumb:hover {
    background: rgba(19, 41, 75, 0.3);
}

/* Hide old grid and cards */
.ap-why-modern-grid,
.ap-why-modern-card {
    display: none;
}

/* Responsive */
@media (max-width: 1200px) {
    .ap-why-grid-attractive {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .ap-section-title-full {
        font-size: 2rem;
    }
    
    .ap-why-grid-attractive {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ap-why-card-inner {
        padding: 2rem 1.5rem;
        min-height: auto;
    }
    
    .ap-why-text-attractive {
        max-height: none;
        overflow-y: visible;
    }
    
    .ap-why-icon-attractive {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .ap-why-icon-attractive::after {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .ap-section-title-full {
        font-size: 1.8rem;
    }
    
    .ap-why-title-attractive {
        font-size: 1.2rem;
    }
}