



/* ========================================
   TRUSTED BY SECTION - PROFESSIONAL CAROUSEL
   ======================================== */

.trusted-by-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.trusted-by-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(37,211,102,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.trusted-by-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #1e293b 0%, #25d366 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Logo Carousel */
.logo-carousel-wrapper {
    position: relative;
    margin: 0 auto 60px;
    overflow: hidden;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: 40px 0;
}

.logo-carousel {
    width: 100%;
    overflow: hidden;
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.logo-track {
    display: flex;
    animation: infiniteScroll 30s linear infinite;
    width: calc(200% + 40px);
}

.logo-item {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.trusted-logo {
    max-width: 140px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(1) opacity(0.7);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.trusted-logo:hover {
    filter: grayscale(0) opacity(1);
    transform: scale(1.1);
}

/* Carousel Fade Effects */
.carousel-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    pointer-events: none;
    z-index: 3;
}

.carousel-fade-left {
    left: 0;
    background: linear-gradient(90deg, white, transparent);
}

.carousel-fade-right {
    right: 0;
    background: linear-gradient(270deg, white, transparent);
}

/* Trust Stats */
.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
    text-align: center;
}

.stat-item {
    background: white;
    padding: 32px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #25d366;
    margin-bottom: 8px;
    animation: countUp 2s ease-out;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.badge svg {
    width: 18px;
    height: 18px;
}

/* Testimonial */
.testimonial {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.testimonial-quote {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #1e293b;
    font-style: italic;
    margin-bottom: 32px;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: #25d366;
    position: absolute;
    top: -20px;
    left: -20px;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #25d366;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 1.1rem;
}

.author-title {
    color: #64748b;
    font-size: 0.9rem;
}

/* Animations */
@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.25rem;
    }
    
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .logo-item {
        flex: 0 0 180px;
    }
}

@media (max-width: 768px) {
    .trusted-by-section {
        padding: 60px 0;
    }
    
    .trusted-by-section .container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .trust-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .trust-badges {
        gap: 12px;
    }
    
    .badge {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .testimonial {
        padding: 30px 24px;
    }
    
    .testimonial-quote {
        font-size: 1.25rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-info {
        text-align: center;
    }
    
    .logo-item {
        flex: 0 0 150px;
    }
}

@media (max-width: 480px) {
    .trusted-by-section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .logo-carousel-wrapper {
        margin-bottom: 40px;
        padding: 30px 0;
    }
    
    .trust-stats {
        margin-bottom: 40px;
    }
    
    .trust-badges {
        margin-bottom: 40px;
    }
    
    .logo-item {
        flex: 0 0 120px;
    }
    
    .trusted-logo {
        max-width: 100px;
        max-height: 50px;
    }
}

/* Pause animation on hover */
.logo-carousel:hover .logo-track {
    animation-play-state: paused;
}



/* ========================================
   FEATURES SECTION - MODERN PROFESSIONAL (SCOPED)
   ======================================== */

#features.features-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

#features.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(37,211,102,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

#features .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

/* Section Header */
#features .section-header {
    text-align: center;
    margin-bottom: 80px;
    animation: features-fadeInUp 0.8s ease-out;
}

#features .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1e293b 0%, #25d366 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#features .section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Grid */
#features .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

#features .feature-card {
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

#features .feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.2);
}

#features .feature-card.featured {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    transform: scale(1.02);
}

#features .feature-card.featured:hover {
    transform: translateY(-12px) scale(1.02);
}

#features .feature-card.featured .feature-title,
#features .feature-card.featured .feature-description {
    color: white;
}

#features .feature-card.featured .feature-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Feature Ribbon */
#features .feature-ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #f59e0b;
    color: white;
    padding: 6px 40px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
    text-align: center;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

/* Feature Icon */
#features .feature-icon-wrapper {
    position: relative;
    margin-bottom: 24px;
    display: inline-block;
}

#features .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 2;
}

#features .feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

#features .feature-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.3), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

#features .feature-card:hover .feature-glow {
    opacity: 1;
}

/* Feature Content */
#features .feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.3;
}

#features .feature-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

#features .feature-highlight {
    margin-top: auto;
}

#features .highlight-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(37, 211, 102, 0.1);
    color: #128c7e;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

#features .feature-card.featured .highlight-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Features CTA */
#features .features-cta {
    text-align: center;
    background: white;
    padding: 60px 40px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    animation: features-fadeInUp 0.8s ease-out;
}

#features .features-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

#features .features-cta p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 32px;
}

#features .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

#features .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    border: none;
    cursor: pointer;
    margin: 0;
}

#features .btn-primary {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

#features .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

#features .btn-secondary {
    background: white;
    color: #475569;
    border: 2px solid #e2e8f0;
}

#features .btn-secondary:hover {
    border-color: #25d366;
    color: #25d366;
    transform: translateY(-2px);
}

/* ========================================
   FEATURES SECTION - RESPONSIVE DESIGN
   ======================================== */

/* Animations */
@keyframes features-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   LARGE DESKTOPS (1440px+)
   ======================================== */
@media (min-width: 1440px) {
    #features .container {
        max-width: 1400px;
        padding: 0 40px;
    }
    
    #features .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 40px;
    }
    
    #features .section-title {
        font-size: 3.5rem;
    }
}

/* ========================================
   STANDARD DESKTOP (1024px - 1440px)
   ======================================== */
@media (max-width: 1440px) {
    #features .container {
        padding: 0 32px;
    }
}

/* ========================================
   LARGE TABLETS (768px - 1024px)
   ======================================== */
@media (max-width: 1024px) {
    #features.features-section {
        padding: 80px 0;
    }
    
    #features .container {
        padding: 0 24px;
    }
    
    #features .section-header {
        margin-bottom: 60px;
    }
    
    #features .section-title {
        font-size: 2.5rem;
        margin-bottom: 16px;
    }
    
    #features .section-subtitle {
        font-size: 1.1rem;
    }
    
    #features .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 24px;
        margin-bottom: 60px;
    }
    
    #features .feature-card {
        padding: 32px 28px;
    }
    
    #features .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    #features .features-cta {
        padding: 48px 32px;
    }
    
    #features .features-cta h3 {
        font-size: 1.75rem;
    }
}

/* ========================================
   TABLETS (600px - 768px)
   ======================================== */
@media (max-width: 768px) {
    #features.features-section {
        padding: 60px 0;
    }
    
    #features .container {
        padding: 0 20px;
    }
    
    #features .section-header {
        margin-bottom: 48px;
    }
    
    #features .section-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    #features .section-subtitle {
        font-size: 1rem;
    }
    
    #features .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 48px;
    }
    
    #features .feature-card {
        padding: 28px 24px;
        border-radius: 20px;
    }
    
    #features .feature-card.featured {
        transform: none;
        order: -1; /* Move featured card to top on mobile */
    }
    
    #features .feature-card.featured:hover {
        transform: translateY(-8px);
    }
    
    #features .feature-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }
    
    #features .feature-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    #features .feature-description {
        font-size: 0.95rem;
        margin-bottom: 16px;
    }
    
    #features .features-cta {
        padding: 40px 24px;
        border-radius: 20px;
    }
    
    #features .features-cta h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    #features .features-cta p {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    #features .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    #features .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 12px 24px;
        font-size: 15px;
    }
}

/* ========================================
   MOBILE LANDSCAPE (480px - 600px)
   ======================================== */
@media (max-width: 600px) {
    #features .feature-card {
        padding: 24px 20px;
    }
    
    #features .feature-icon-wrapper {
        margin-bottom: 20px;
    }
    
    #features .feature-icon {
        width: 56px;
        height: 56px;
    }
    
    #features .feature-title {
        font-size: 1.2rem;
    }
    
    #features .feature-description {
        font-size: 0.9rem;
    }
    
    #features .features-cta {
        padding: 32px 20px;
    }
    
    #features .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ========================================
   MOBILE PORTRAIT (320px - 480px)
   ======================================== */
@media (max-width: 480px) {
    #features.features-section {
        padding: 50px 0;
    }
    
    #features .container {
        padding: 0 16px;
    }
    
    #features .section-header {
        margin-bottom: 40px;
    }
    
    #features .section-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    #features .section-subtitle {
        font-size: 0.95rem;
    }
    
    #features .features-grid {
        gap: 16px;
        margin-bottom: 40px;
    }
    
    #features .feature-card {
        padding: 20px 16px;
        border-radius: 16px;
    }
    
    #features .feature-card:hover {
        transform: translateY(-6px);
    }
    
    #features .feature-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }
    
    #features .feature-icon-wrapper {
        margin-bottom: 16px;
    }
    
    #features .feature-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    #features .feature-description {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 12px;
    }
    
    #features .highlight-badge {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    #features .features-cta {
        padding: 28px 16px;
        border-radius: 16px;
    }
    
    #features .features-cta h3 {
        font-size: 1.3rem;
        line-height: 1.2;
    }
    
    #features .features-cta p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    #features .btn {
        padding: 9px 18px;
        font-size: 13px;
        border-radius: 40px;
    }
}

/* ========================================
   VERY SMALL MOBILE (320px and below)
   ======================================== */
@media (max-width: 320px) {
    #features .container {
        padding: 0 12px;
    }
    
    #features .section-title {
        font-size: 1.5rem;
    }
    
    #features .feature-card {
        padding: 16px 12px;
    }
    
    #features .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    #features .feature-title {
        font-size: 1rem;
    }
    
    #features .feature-description {
        font-size: 0.8rem;
    }
    
    #features .features-cta {
        padding: 24px 12px;
    }
    
    #features .features-cta h3 {
        font-size: 1.2rem;
    }
    
    #features .btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* ========================================
   LANDSCAPE ORIENTATION
   ======================================== */
@media (max-height: 600px) and (orientation: landscape) {
    #features.features-section {
        padding: 40px 0;
    }
    
    #features .section-header {
        margin-bottom: 32px;
    }
    
    #features .features-grid {
        margin-bottom: 32px;
    }
    
    #features .feature-card {
        min-height: auto;
    }
}

/* ========================================
   HIGH DPI DISPLAYS
   ======================================== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    #features .feature-icon svg,
    #features .btn svg {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* ========================================
   ACCESSIBILITY IMPROVEMENTS
   ======================================== */

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    #features .feature-card,
    #features .feature-icon,
    #features .btn,
    #features .features-cta {
        transition: none;
    }
    
    #features .section-header,
    #features .features-cta {
        animation: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    #features .feature-card {
        border: 2px solid #000;
    }
    
    #features .feature-card:hover {
        border-color: #25d366;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    }
    
    #features .btn-secondary {
        border-color: #000;
        color: #000;
    }
}

/* Focus Styles for Keyboard Navigation */
#features .btn:focus {
    outline: 2px solid #25d366;
    outline-offset: 2px;
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    #features.features-section {
        background: white !important;
        padding: 20px 0 !important;
        box-shadow: none !important;
    }
    
    #features.features-section::before {
        display: none;
    }
    
    #features .feature-card {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ccc !important;
        margin-bottom: 20px;
    }
    
    #features .features-cta,
    #features .btn {
        display: none;
    }
}

/* ========================================
   CONTAINER QUERIES (Future-proofing)
   ======================================== */
@supports (container-type: inline-size) {
    #features .features-grid {
        container-type: inline-size;
    }
    
    @container (max-width: 600px) {
        #features .features-grid {
            grid-template-columns: 1fr;
        }
    }
}





/* ========================================
   TESTIMONIALS SECTION - CAROUSEL (SCOPED)
   ======================================== */

#testimonials.testimonials-section {
    background: #f8fafc;
    padding: 100px 0;
    position: relative;
}

#testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Section Header */
#testimonials .section-header {
    text-align: center;
    margin-bottom: 60px;
}


#testimonials .section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
}

/* Carousel Container */
#testimonials .testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto 80px;
}

#testimonials .carousel-container {
    overflow: hidden;
    border-radius: 20px;
}

#testimonials .testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

#testimonials .testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
}

/* Testimonial Card */
#testimonials .testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    margin: 20px 0;
}

/* Stars */
#testimonials .testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 24px;
}

#testimonials .star {
    color: #f59e0b;
    font-size: 20px;
}

/* Testimonial Text */
#testimonials .testimonial-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #374151;
    font-style: italic;
    margin: 0 0 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Author */
#testimonials .testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

#testimonials .author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

#testimonials .author-info {
    text-align: left;
}

#testimonials .author-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 1rem;
    margin-bottom: 4px;
}

#testimonials .author-title {
    color: #64748b;
    font-size: 0.9rem;
}

/* Carousel Navigation */
#testimonials .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #64748b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#testimonials .carousel-btn:hover {
    background: #25d366;
    color: white;
    border-color: #25d366;
    transform: translateY(-50%) scale(1.1);
}

#testimonials .prev-btn {
    left: -22px;
}

#testimonials .next-btn {
    right: -22px;
}

/* Carousel Dots */
#testimonials .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

#testimonials .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

#testimonials .dot.active {
    background: #25d366;
    transform: scale(1.2);
}

#testimonials .dot:hover {
    background: #25d366;
}

/* Testimonial Stats */
#testimonials .testimonial-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    text-align: center;
}

#testimonials .stat-item {
    background: white;
    padding: 32px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

#testimonials .stat-item:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 211, 102, 0.2);
}

#testimonials .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #25d366;
    margin-bottom: 8px;
}

#testimonials .stat-label {
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    #testimonials.testimonials-section {
        padding: 80px 0;
    }
    
    #testimonials .container {
        padding: 0 20px;
    }
    
    #testimonials .section-title {
        font-size: 2rem;
    }
    
    #testimonials .testimonial-card {
        padding: 32px 24px;
    }
    
    #testimonials .testimonial-text {
        font-size: 1.1rem;
    }
    
    #testimonials .carousel-btn {
        display: none;
    }
    
    #testimonials .testimonial-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    #testimonials .testimonial-slide {
        padding: 0 10px;
    }
    
    #testimonials .testimonial-card {
        padding: 28px 20px;
    }
    
    #testimonials .testimonial-author {
        flex-direction: column;
        gap: 12px;
    }
    
    #testimonials .author-info {
        text-align: center;
    }
}






/* ========================================
   BLOG TEASER SECTION - MODERN (SCOPED)
   ======================================== */

#blog-teaser.blog-teaser-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
}

#blog-teaser .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Section Header */
#blog-teaser .section-header {
    text-align: center;
    margin-bottom: 60px;
}

#blog-teaser .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

#blog-teaser .section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Blog Grid */
#blog-teaser .blog-teaser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

/* Blog Card */
#blog-teaser .blog-teaser-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out;
}

#blog-teaser .blog-teaser-card:nth-child(1) { animation-delay: 0.1s; }
#blog-teaser .blog-teaser-card:nth-child(2) { animation-delay: 0.2s; }
#blog-teaser .blog-teaser-card:nth-child(3) { animation-delay: 0.3s; }

#blog-teaser .blog-teaser-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.2);
}

#blog-teaser .blog-teaser-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Blog Image */
#blog-teaser .blog-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

#blog-teaser .blog-teaser-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

#blog-teaser .blog-teaser-card:hover .blog-teaser-img {
    transform: scale(1.1);
}

#blog-teaser .blog-placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}

#blog-teaser .blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(37, 211, 102, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Blog Content */
#blog-teaser .blog-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

#blog-teaser .blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #94a3b8;
    font-size: 0.85rem;
}

#blog-teaser .blog-date,
#blog-teaser .blog-read-time {
    font-weight: 500;
}

#blog-teaser .blog-date::after {
    content: '•';
    margin-left: 12px;
}

#blog-teaser .blog-teaser-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

#blog-teaser .blog-teaser-card:hover .blog-teaser-title {
    color: #25d366;
}

#blog-teaser .blog-teaser-excerpt {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 0.95rem;
}

/* Blog Author */
#blog-teaser .blog-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

#blog-teaser .author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

#blog-teaser .author-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#blog-teaser .author-placeholder {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    font-size: 12px;
    font-weight: 600;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#blog-teaser .author-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #475569;
}

/* Read More */
#blog-teaser .blog-read-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px 24px;
    color: #25d366;
    font-weight: 600;
    font-size: 0.9rem;
}

#blog-teaser .read-more-text {
    transition: transform 0.3s ease;
}

#blog-teaser .blog-teaser-card:hover .read-more-text {
    transform: translateX(4px);
}

#blog-teaser .blog-read-more svg {
    transition: transform 0.3s ease;
}

#blog-teaser .blog-teaser-card:hover .blog-read-more svg {
    transform: translateX(4px);
}

/* Footer CTA */
#blog-teaser .blog-teaser-footer {
    text-align: center;
}

#blog-teaser .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

#blog-teaser .btn-primary {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

#blog-teaser .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    #blog-teaser .blog-teaser-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 24px;
    }
    
    #blog-teaser .section-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    #blog-teaser.blog-teaser-section {
        padding: 80px 0;
    }
    
    #blog-teaser .container {
        padding: 0 20px;
    }
    
    #blog-teaser .section-title {
        font-size: 2rem;
    }
    
    #blog-teaser .blog-teaser-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    #blog-teaser .blog-image-container {
        height: 180px;
    }
    
    #blog-teaser .blog-content {
        padding: 20px;
    }
    
    #blog-teaser .blog-read-more {
        padding: 0 20px 20px;
    }
}

@media (max-width: 480px) {
    #blog-teaser .blog-teaser-title {
        font-size: 1.1rem;
    }
    
    #blog-teaser .blog-content {
        padding: 16px;
    }
    
    #blog-teaser .blog-read-more {
        padding: 0 16px 16px;
    }
    
    #blog-teaser .blog-image-container {
        height: 160px;
    }
}
