/* ================================
   CSS VARIABLES
================================ */
:root {
    --primary-dark: #0a3456;
    --primary-teal: #00a896;
    --primary-light: #02c3bd;
    --accent-turquoise: #38bdf8;
    --accent-teal: #14b8a6;
    --text-gray: #5a6c7d;
    --text-dark: #19071a;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --border-color: #e5e7eb;
    --border-gray: #f0f0f0;
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 18px 35px rgba(15, 23, 42, 0.25);
    --transition: all 0.3s ease;
}

/* ================================
   BOOKKEEPING HERO SECTION
================================ */
.bookkeeping-hero {
    padding: 120px 20px 90px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #f8fafc 0%, #eef2f7 45%, #f9fbff 100%);
}

.bookkeeping-hero::before,
.bookkeeping-hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    z-index: 0;
}

.bookkeeping-hero::before {
    background: var(--primary-teal);
    top: -140px;
    left: -140px;
}

.bookkeeping-hero::after {
    background: var(--accent-turquoise);
    bottom: -160px;
    right: -160px;
}

.hero-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-top: 0 !important;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.hero-content h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #123759;
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.hero-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-top: 0;
    margin-bottom: 34px;
    text-align: justify;
    text-justify: inter-word;
    max-width: 700px;
    font-family: 'Poppins', sans-serif;
}

.hero-actions a {
    display: inline-block;
    padding: 13px 34px;
    margin-right: 15px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-dark);
    color: #fff;
}

.btn-primary:hover {
   background: var(--primary-teal);
    color: #fff;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-teal);
    color: var(--primary-teal);
}

.btn-secondary:hover {
    background: var(--primary-teal);
    color: #fff;
    transform: translateY(-2px);
}

.hero-visual {
    flex: 1;
    min-width: 300px;
    text-align: center;
    padding: 30px;
    position: relative;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    z-index: -1;
}

.hero-svg {
    max-width: 70%;
    height: auto;
    display: block;
    margin: 0 auto 22px;
    animation: float 6s ease-in-out infinite;
}

.visual-text h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--primary-dark);
}

.visual-text p {
    font-size: 1rem;
    color: var(--text-gray);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

/* HERO MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .bookkeeping-hero {
        min-height: 100vh !important;
        max-height: none !important;
        padding-top: 60px !important;
        padding-bottom: 40px !important;
        justify-content: flex-start !important;
    }

    .hero-content {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .hero-content h1 {
        font-size: 1.6rem !important;
        margin-top: 0 !important;
        margin-bottom: 6px !important;
        line-height: 1.15 !important;
    }

    .hero-content h2 {
        font-size: 1.2rem !important;
        margin-top: 0 !important;
        margin-bottom: 14px !important;
        line-height: 1.2 !important;
        padding: 0 !important;
    }

    .hero-lead {
        font-size: 0.85rem !important;
        margin-top: 0 !important;
        margin-bottom: 18px !important;
        line-height: 1.45 !important;
    }

    .hero-stats-inline {
        display: none !important;
    }

    .hero-actions {
        margin-top: 0 !important;
        margin-bottom: 15px !important;
    }

    .hero-actions a {
        padding: 8px 18px !important;
        font-size: 0.8rem !important;
    }

    .hero-visual {
        max-width: 280px !important;
        padding: 10px !important;
        margin: 0 auto 15px auto !important;
    }

    .hero-visual::before {
        inset: 5px !important;
    }

    .hero-svg {
        margin-bottom: 8px !important;
        max-width: 90% !important;
    }

    .visual-text {
        padding: 0 8px !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .visual-text h3 {
        font-size: 0.95rem !important;
        margin-bottom: 3px !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .visual-text p {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .bookkeeping-hero::before,
    .bookkeeping-hero::after {
        width: 150px !important;
        height: 150px !important;
        opacity: 0.1 !important;
    }
}

@media (max-width: 359px) {
    .bookkeeping-hero {
        padding-top: 70px !important;
        padding-bottom: 30px !important;
    }

    .hero-content h1 {
        font-size: 1.4rem !important;
    }

    .hero-content h2 {
        font-size: 1.05rem !important;
    }

    .hero-lead {
        font-size: 0.8rem !important;
    }

    .hero-visual {
        max-width: 240px !important;
    }

    .visual-text h3 {
        font-size: 0.85rem !important;
    }

    .visual-text p {
        font-size: 0.7rem !important;
    }
}

@media (min-width: 360px) and (max-width: 375px) {
    .bookkeeping-hero {
        padding-bottom: 35px !important;
    }
}

@media (min-width: 414px) and (max-width: 768px) {
    .bookkeeping-hero {
        padding-top: 70px !important;
        padding-bottom: 50px !important;
    }

    .hero-content h1 {
        font-size: 1.75rem !important;
    }

    .hero-content h2 {
        font-size: 1.35rem !important;
    }

    .hero-lead {
        font-size: 0.9rem !important;
    }

    .hero-visual {
        max-width: 320px !important;
    }
}

/* ================================
   SERVICES SECTION
================================ */
/* ================================
   SERVICES SECTION - FIXED
================================ */
.services-section-home {
    padding: 7rem 0;
    background: var(--bg-white);
}

.services-section-home .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--primary-teal);
    border-radius: 2px;
    animation: lineExpand 2s ease-in-out infinite;
}

@keyframes lineExpand {
    0% { width: 0; }
    50% { width: 200px; }
    100% { width: 0; }
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 1.5rem auto 0;
}

/* ================================
   SERVICES GRID - FIXED
================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: stretch; /* ← Makes all cards equal height */
}

/* ================================
   SERVICE CARD - FIXED
================================ */
.service-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%; /* ← CRITICAL: Equal height cards */
    width: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-teal);
}

.service-card .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--bg-white);
    font-size: 1.8rem;
    flex-shrink: 0;
}

.service-card .service-title {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
    flex-shrink: 0;
}

.service-card .service-description {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
    flex-grow: 1; /* ← Takes available space */
    margin-bottom: 1.5rem;
    text-align: left;
}

/* Default (English) */ 
html[lang="en"] .service-card .service-description,
html[lang="en"] .service-card .service-title {
    text-align: left;
    direction: ltr;
}

/* Arabic fix — NO stair effect */
html[lang="ar"] .service-card .service-description,
html[lang="ar"] .service-card .service-title {
    text-align: right;
    direction: rtl;
}


/* ================================
   BUTTON - FIXED ALIGNMENT
================================ */
.service-btn-small {
    display: inline-block;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    background: var(--primary-teal);
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    transition: var(--transition);
    text-align: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(10, 52, 86, 0.2);
    margin-top: auto; /* ← CRITICAL: Pushes to bottom */
    align-self: flex-start;
    white-space: nowrap;
}

.service-btn-small:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 195, 189, 0.3);
}

/* ================================
   RESPONSIVE BREAKPOINTS
================================ */

/* Large Desktop */
@media (min-width: 1400px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Desktop */
@media (min-width: 1200px) and (max-width: 1399px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Laptop */
@media (min-width: 1024px) and (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
}

/* Mobile Large */
@media (min-width: 481px) and (max-width: 767px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        padding: 0 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card .service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    
    .service-card .service-title {
        font-size: 1.15rem;
    }
    
    .service-card .service-description {
        font-size: 0.9rem;
    }
}

/* Mobile Medium */
@media (min-width: 376px) and (max-width: 480px) {
    .services-section-home {
        padding: 4rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0 1.25rem;
    }
    
    .service-card {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
}

/* Mobile Small */
@media (max-width: 375px) {
    .services-section-home {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .service-card {
        padding: 1.25rem;
        max-width: 100%;
    }
    
    .service-card .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-card .service-title {
        font-size: 1.05rem;
        margin-bottom: 0.85rem;
    }
    
    .service-card .service-description {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }
    
    .service-btn-small {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
}

/* ========== SERVICE GRID RESPONSIVE ========== */
@media (min-width: 1601px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

@media (min-width: 1367px) and (max-width: 1600px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (min-width: 1024px) and (max-width: 1366px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 900px) and (max-width: 1023px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 768px) and (max-width: 899px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 376px) and (max-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 375px) {
    .services-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (min-width: 385px) and (max-width: 430px) {
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 0 1rem !important;
    }
    
    .service-card {
        max-width: 100% !important;
        width: 100% !important;
        padding: 1.5rem 1.25rem !important;
        min-height: auto !important;
        aspect-ratio: auto !important;
    }
    
    .service-card .service-icon {
        width: 55px !important;
        height: 55px !important;
        font-size: 1.6rem !important;
        margin-bottom: 1rem !important;
    }
    
    .service-card .service-title {
        font-size: 1.15rem !important;
        margin-bottom: 0.75rem !important;
        line-height: 1.3 !important;
    }
    
    .service-card .service-description {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        -webkit-line-clamp: unset !important;
        display: block !important;
        overflow: visible !important;
        text-overflow: clip !important;
    }
}

@media (min-width: 360px) and (max-width: 384px) {
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 0 0.85rem !important;
    }
    
    .service-card {
        max-width: 100% !important;
        width: 100% !important;
        padding: 1.25rem 1rem !important;
        min-height: auto !important;
        aspect-ratio: auto !important;
    }
    
    .service-card .service-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
        margin-bottom: 0.85rem !important;
    }
    
    .service-card .service-title {
        font-size: 1.05rem !important;
        margin-bottom: 0.7rem !important;
    }
    
    .service-card .service-description {
        font-size: 0.85rem !important;
        line-height: 1.55 !important;
        -webkit-line-clamp: unset !important;
        display: block !important;
        overflow: visible !important;
    }
}

@media (max-width: 359px) {
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 0.85rem !important;
        padding: 0 0.75rem !important;
    }
    
    .service-card {
        max-width: 100% !important;
        padding: 1rem 0.85rem !important;
        aspect-ratio: auto !important;
    }
    
    .service-card .service-icon {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.35rem !important;
    }
    
    .service-card .service-title {
        font-size: 0.95rem !important;
    }
    
    .service-card .service-description {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
        -webkit-line-clamp: unset !important;
        display: block !important;
        overflow: visible !important;
    }
}

@media (min-width: 920px) and (max-width: 940px) {
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        max-width: 600px !important;
        margin: 0 auto !important;
        padding: 0 1.5rem !important;
    }
    
    .service-card {
        max-width: 100% !important;
        width: 100% !important;
        aspect-ratio: auto !important;
        min-height: auto !important;
        padding: 2rem 1.5rem !important;
    }
    
    .service-card .service-icon {
        width: 65px !important;
        height: 65px !important;
        font-size: 1.85rem !important;
        margin-bottom: 1rem !important;
    }
    
    .service-card .service-title {
        font-size: 1.25rem !important;
        margin-bottom: 0.85rem !important;
        line-height: 1.3 !important;
    }
    
    .service-card .service-description {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
        -webkit-line-clamp: unset !important;
        display: block !important;
        overflow: visible !important;
    }
}

@media (min-width: 425px) and (max-width: 435px) {
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
        padding: 0 1rem !important;
    }
    
    .service-card {
        max-width: 100% !important;
        width: 100% !important;
        aspect-ratio: auto !important;
        min-height: auto !important;
        padding: 1.5rem 1.25rem !important;
    }
    
    .service-card .service-icon {
        width: 55px !important;
        height: 55px !important;
        font-size: 1.6rem !important;
        margin-bottom: 1rem !important;
    }
    
    .service-card .service-title {
        font-size: 1.15rem !important;
        margin-bottom: 0.75rem !important;
        line-height: 1.3 !important;
    }
    
    .service-card .service-description {
        font-size: 0.9rem !important;
        line-height: 1.65 !important;
        -webkit-line-clamp: unset !important;
        display: block !important;
        overflow: visible !important;
        text-overflow: clip !important;
    }
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .services-section-home {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
}

/* ================================
   AUDIT HERO SECTION
================================ */
.audit-hero {
    background: linear-gradient(180deg, #ffffff, #f8fafb);
    padding: 10px 20px 50px;
    position: relative;
    overflow: hidden;
}

.audit-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 168, 150, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.audit-hero-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.audit-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-teal), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.audit-hero-content p {
    color: #4a6475;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 520px;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
    text-align: justify;
    text-justify: inter-word;
    max-width: 700px;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.audit-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.audit-hero-visual {
    position: relative;
    height: 380px;
}

.audit-hero-actions .btn-primary {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    background: var(--primary-dark);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.35s ease;
    box-shadow: 0 10px 25px rgba(11, 60, 93, 0.25);
}

/* Hover effect */
.audit-hero-actions .btn-primary:hover {
    background: var(--primary-teal);
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(11, 60, 93, 0.35);
}

.floating-doc {
    position: absolute;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(10, 52, 86, 0.1);
    border: 1px solid #e5e7eb;
}

.doc-main {
    width: 260px;
    padding: 18px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
}

.doc-header {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e7eb;
}

.doc-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.doc-title-section {
    flex: 1;
}

.doc-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary-teal);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 3px;
}

.doc-company {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.doc-body {
    margin-bottom: 14px;
}

.doc-line {
    height: 6px;
    background: #f3f4f6;
    border-radius: 3px;
    margin-bottom: 8px;
}

.doc-line.long { width: 100%; }
.doc-line.medium { width: 75%; }
.doc-line.short { width: 50%; }

.doc-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(0, 168, 150, 0.1);
    border-radius: 6px;
    margin-top: 12px;
}

.doc-status i {
    color: var(--primary-teal);
    font-size: 1.1rem;
}

.doc-status span {
    color: var(--primary-teal);
    font-weight: 600;
    font-size: 0.85rem;
}

.doc-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.signature-line {
    width: 100px;
    height: 2px;
    background: var(--primary-dark);
}

.doc-date {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

.doc-checklist {
    width: 190px;
    padding: 16px;
    top: 8%;
    right: 0;
    z-index: 4;
    animation: float 4s ease-in-out infinite;
}

.checklist-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.85rem;
}

.checklist-header i {
    color: var(--primary-teal);
    font-size: 1.1rem;
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #4b5563;
}

.check-item i {
    color: #10b981;
    font-size: 0.85rem;
}

.checklist-badge {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-light));
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    text-align: center;
    font-weight: 600;
    font-size: 0.8rem;
}

.doc-stats {
    width: 160px;
    padding: 14px;
    bottom: 8%;
    left: 3%;
    z-index: 2;
    animation: float 5s ease-in-out infinite;
    animation-delay: 1s;
}

.stats-mini-header {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.stats-bars {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 10px;
}

.stat-bar-mini {
    width: 100%;
    height: 5px;
    background: #f3f4f6;
    border-radius: 2.5px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-teal), var(--primary-light));
    border-radius: 2.5px;
    transition: width 1s ease;
}

.stats-footer-mini {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-teal);
    font-size: 0.8rem;
    font-weight: 600;
}

.stats-footer-mini i {
    font-size: 0.9rem;
}

.doc-calculator {
    width: 150px;
    padding: 14px;
    bottom: 18%;
    right: 5%;
    z-index: 2;
    animation: float 4.5s ease-in-out infinite;
    animation-delay: 0.5s;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0d4d7a 100%);
    color: white;
}

.calculator-display {
    margin-bottom: 10px;
}

.calc-label {
    font-size: 0.65rem;
    opacity: 0.8;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calc-amount {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.calculator-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.calc-btn {
    width: 100%;
    height: 26px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

/* AUDIT HERO RESPONSIVE */
@media (min-width: 769px) and (max-width: 1024px) {
    .audit-hero {
        padding: 45px 15px 40px;
    }

    .audit-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        max-width: 100%;
        padding: 0 15px;
    }

    .audit-hero-content h1 {
        font-size: 1.9rem;
        margin-bottom: 12px;
    }

    .audit-hero-content p {
        font-size: 0.88rem;
        line-height: 1.5;
        margin-bottom: 18px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 22px;
        font-size: 0.85rem;
    }

    .audit-hero-visual {
        height: 300px;
    }

    .doc-main {
        width: 220px;
        padding: 15px;
    }

    .doc-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .doc-label {
        font-size: 0.65rem;
    }

    .doc-company {
        font-size: 0.78rem;
    }

    .doc-line {
        height: 5px;
        margin-bottom: 6px;
    }

    .doc-status {
        padding: 8px 10px;
    }

    .doc-status i {
        font-size: 1rem;
    }

    .doc-status span {
        font-size: 0.78rem;
    }

    .doc-checklist {
        width: 160px;
        padding: 13px;
        top: 6%;
        animation: none;
    }

    .checklist-header {
        font-size: 0.78rem;
        gap: 6px;
        margin-bottom: 10px;
    }

    .checklist-header i {
        font-size: 1rem;
    }

    .check-item {
        font-size: 0.74rem;
        gap: 6px;
    }

    .check-item i {
        font-size: 0.78rem;
    }

    .checklist-badge {
        padding: 5px 10px;
        font-size: 0.74rem;
    }

    .doc-stats {
        width: 135px;
        padding: 12px;
        bottom: 6%;
        left: 2%;
        animation: none;
    }

    .stats-mini-header {
        font-size: 0.74rem;
        margin-bottom: 8px;
    }

    .stats-bars {
        gap: 5px;
        margin-bottom: 8px;
    }

    .stat-bar-mini {
        height: 4px;
    }

    .stats-footer-mini {
        font-size: 0.74rem;
        gap: 5px;
    }

    .stats-footer-mini i {
        font-size: 0.82rem;
    }

    .doc-calculator {
        width: 125px;
        padding: 12px;
        bottom: 16%;
        right: 4%;
        animation: none;
    }

    .calc-label {
        font-size: 0.6rem;
    }

    .calc-amount {
        font-size: 0.82rem;
    }

    .calculator-buttons {
        gap: 5px;
    }

    .calc-btn {
        height: 22px;
    }
}

@media (max-width: 768px) {
    .audit-hero {
        display: none !important;
    }
}

/* ================================
   CASE STUDY SECTION
================================ */
.case-study-section {
    padding: 2rem 0;
    background: var(--bg-light);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.case-study-card {
    background: var(--bg-white);
    padding: 1.25rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: auto;
}

.case-study-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-teal);
}

.case-study-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(0, 168, 150, 0.05), rgba(2, 195, 189, 0.05));
    border: 1px solid var(--primary-teal);
}

.case-badge {
    position: absolute;
    top: -8px;
    right: 12px;
    background: var(--primary-teal);
    color: var(--bg-white);
    padding: 0.3rem 0.75rem;
    border-radius: 14px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.case-header {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    padding-top: 0.4rem;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.case-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-teal), var(--accent-turquoise));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.case-info h3 {
    color: var(--primary-dark);
    font-size: 1.25rem;
    margin-bottom: 0.2rem;
    font-weight: 700;
    line-height: 1.3;
}

.case-industry {
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 500;
}

.case-description {
    color: var(--text-gray);
    line-height: 1.45;
    font-size: 0.85rem;
    hyphens: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: justify;
    text-justify: inter-word;
    margin: 0;
}

/* CASE STUDY RESPONSIVE */
@media (min-width: 768px) and (max-width: 1199px) {
    .case-study-section {
        padding: 2rem 0;
    }

    .case-studies-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .case-study-card {
        padding: 1.25rem;
    }

    .case-icon {
        width: 50px;
        height: 50px;
        font-size: 1.45rem;
    }

    .case-info h3 {
        font-size: 1.28rem;
    }

    .case-industry {
        font-size: 0.98rem;
    }

    .case-description {
        font-size: 1.08rem;
        line-height: 1.6;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .case-study-section {
        padding: 2rem 0;
    }

    .case-studies-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
        max-width: 550px;
        margin: 0 auto 2rem;
    }

    .case-study-card {
        padding: 1.25rem;
    }

    .case-header {
        gap: 0.9rem;
        margin-bottom: 0.9rem;
        padding-bottom: 0.9rem;
    }

    .case-icon {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }

    .case-info h3 {
        font-size: 1.2rem;
    }

    .case-industry {
        font-size: 0.95rem;
    }

    .case-description {
        font-size: 1.05rem;
        line-height: 1.6;
        text-align: left;
    }
}

@media (min-width: 376px) and (max-width: 480px) {
    .case-study-section {
        padding: 1.75rem 0.75rem;
    }

    .case-studies-grid {
        grid-template-columns: 1fr !important;
        gap: 1.15rem;
        max-width: 480px;
        margin: 0 auto 1.75rem;
    }

    .case-study-card {
        padding: 1.15rem;
    }

    .case-header {
        gap: 0.85rem;
        margin-bottom: 0.85rem;
        padding-bottom: 0.85rem;
    }

    .case-icon {
        width: 46px;
        height: 46px;
        font-size: 1.35rem;
    }

    .case-info h3 {
        font-size: 1.15rem;
    }

    .case-industry {
        font-size: 0.92rem;
    }

    .case-description {
        font-size: 1rem;
        line-height: 1.55;
        text-align: left;
    }
}

@media (max-width: 375px) {
    .case-study-section {
        padding: 1.5rem 0.65rem;
    }

    .case-studies-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        margin: 0 auto 1.5rem;
    }

    .case-study-card {
        padding: 1rem;
    }

    .case-header {
        gap: 0.75rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .case-icon {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }

    .case-info h3 {
        font-size: 1.1rem;
    }

    .case-industry {
        font-size: 0.88rem;
    }

    .case-description {
        font-size: 0.95rem;
        line-height: 1.5;
        text-align: left;
    }

    .case-badge {
        font-size: 0.8rem;
        padding: 0.28rem 0.7rem;
        top: -8px;
    }
}

/* ================================
   STATISTICS SECTION
================================ */
.stats-section {
    padding: 4rem 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    overflow: visible;
}

.stats-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stats-content {
    padding-right: 1rem;
    display: flex;
    flex-direction: column;
}

.stats-badge {
    display: inline-block;
    padding: 0.4rem 0.85rem;
    background: linear-gradient(135deg, rgba(2, 195, 189, 0.1), rgba(0, 168, 150, 0.1));
    color: #00a896;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.stats-content h2 {
    font-size: 1.85rem;
    font-weight: 800;
    color: #0a3456;
    margin-bottom: 1rem;
    line-height: 1.3;
    background: rgba(10, 52, 86, 0.04);
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
}

.stats-content > p {
    font-size: 0.92rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
    background: rgba(107, 114, 128, 0.04);
    padding: 0.65rem 0.8rem;
    border-radius: 8px;
    text-align: justify;
}

.stats-highlights {
    list-style: none;
    padding: 0.85rem;
    margin: 0.9rem 0;
    background: rgba(0, 168, 150, 0.03);
    border-radius: 8px;
}

.stats-highlights li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.45rem 0.6rem;
    font-size: 0.87rem;
    color: #374151;
    background: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.45rem;
    border-radius: 6px;
}

.stats-highlights li:last-child {
    margin-bottom: 0;
}

.stats-highlights i {
    color: #00a896;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.stats-footer p {
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
    background: color-mix(in srgb, var(--primary-teal) 85%, white 15%);
    backdrop-filter: blur(6px);
    padding: 0.75rem 0.9rem;
    border-radius: 10px;
    border-left: 3px solid var(--accent-teal);
}

.stats-footer strong {
    color: #ffffff;
    font-weight: 700;
}

.stats-cards {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.stat-card {
    background: #ffffff;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 6px rgba(10, 52, 86, 0.04);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: #02c3bd;
    box-shadow: 0 6px 18px rgba(10, 52, 86, 0.08);
    transform: translateX(5px);
}

.stat-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.7rem;
    padding: 0.55rem 0.65rem;
    border-bottom: 1px solid #f3f4f6;
    background: rgba(10, 52, 86, 0.03);
    border-radius: 6px;
}

.card-label h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0a3456;
    margin: 0 0 0.2rem 0;
    line-height: 1.2;
}

.card-subtitle {
    font-size: 0.72rem;
    color: #9ca3af;
    font-weight: 500;
}

.trend-indicator {
    display: flex;
    align-items: center;
    gap: 0.28rem;
    padding: 0.28rem 0.55rem;
    border-radius: 14px;
    font-size: 0.72rem;
    font-weight: 600;
}

.trend-indicator.positive {
    background: #d1fae5;
    color: #065f46;
}

.trend-indicator i {
    font-size: 0.67rem;
}

.chart-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    background: rgba(243, 244, 246, 0.4);
    padding: 0.65rem;
    border-radius: 6px;
}

.chart-display.center {
    justify-content: space-around;
}

.stat-number {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0a3456;
    line-height: 1;
}

.mini-sparkline {
    flex: 1;
    height: 32px;
}

.mini-sparkline svg {
    width: 100%;
    height: 100%;
}

.mini-sparkline polyline {
    fill: none;
    stroke: #02c3bd;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.donut-wrapper {
    position: relative;
    width: 62px;
    height: 62px;
}

.donut-chart {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.donut-ring {
    fill: none;
    stroke: #f3f4f6;
    stroke-width: 2.5;
}

.donut-segment {
    fill: none;
    stroke: #02c3bd;
    stroke-width: 2.5;
    stroke-linecap: round;
}

.donut-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.donut-value {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0a3456;
}

.rating-text {
    font-size: 0.92rem;
    font-weight: 700;
    color: #374151;
}

.rating-text span {
    font-size: 0.72rem;
    font-weight: 500;
    color: #9ca3af;
}

.mini-bars {
    display: flex;
    align-items: flex-end;
    gap: 0.45rem;
    height: 36px;
    flex: 1;
}

.bar-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.28rem;
}

.bar {
    width: 100%;
    height: 32px;
    background: #f3f4f6;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.bar-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #02c3bd, #00a896);
    border-radius: 3px 3px 0 0;
    transition: height 0.5s ease;
}

.bar-label {
    font-size: 0.62rem;
    color: #6b7280;
    font-weight: 600;
}

/* STATS SECTION RESPONSIVE */
@media (min-width: 768px) and (max-width: 1023px) {
    .stats-section {
        padding: 3.5rem 0;
    }
    
    .stats-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1.5rem;
    }
    
    .stats-content {
        padding-right: 0;
        text-align: center;
    }
    
    .stats-badge {
        align-self: center;
    }
    
    .stats-content h2 {
        font-size: 1.6rem;
        text-align: center;
        padding: 0.45rem 0.75rem;
    }
    
    .stats-content > p {
        font-size: 0.88rem;
        text-align: center;
        padding: 0.55rem 0.75rem;
    }
    
    .stats-highlights {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        padding: 0.75rem;
    }
    
    .stats-highlights li {
        font-size: 0.83rem;
        padding: 0.4rem 0.55rem;
    }
    
    .stats-footer p {
        font-size: 0.78rem;
        padding: 0.55rem 0.75rem;
    }
    
    .stat-card {
        padding: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .stats-section {
        padding: 3rem 0;
    }
    
    .stats-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .stats-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.75rem;
        align-self: center;
    }
    
    .stats-content {
        padding-right: 0;
        text-align: center;
    }
    
    .stats-content h2 {
        font-size: 1.35rem;
        padding: 0.4rem 0.65rem;
        text-align: center;
    }
    
    .stats-content > p {
        font-size: 0.82rem;
        padding: 0.5rem 0.65rem;
        line-height: 1.5;
        text-align: center;
    }
    
    .stats-highlights {
        padding: 0.65rem;
        margin: 0.8rem auto;
        max-width: 500px;
    }
    
    .stats-highlights li {
        font-size: 0.77rem;
        padding: 0.35rem 0.5rem;
        margin-bottom: 0.35rem;
    }
    
    .stats-highlights i {
        font-size: 0.88rem;
    }
    
    .stats-footer {
        margin-top: 0.9rem;
        padding-top: 0.9rem;
    }
    
    .stats-footer p {
        font-size: 0.72rem;
        padding: 0.5rem 0.65rem;
        text-align: center;
    }
    
    .stats-cards {
        gap: 0.75rem;
    }
    
    .stat-card {
        padding: 0.85rem;
    }
    
    .card-label h4 {
        font-size: 0.82rem;
    }
    
    .card-subtitle {
        font-size: 0.68rem;
    }
    
    .stat-number {
        font-size: 1.55rem;
    }
    
    .chart-display {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.65rem;
        padding: 0.55rem;
    }
    
    .mini-sparkline,
    .mini-bars {
        width: 100%;
        height: 35px;
    }
}

@media (min-width: 375px) and (max-width: 480px) {
    .stats-section {
        padding: 2.5rem 0;
    }
    
    .stats-wrapper {
        padding: 0 0.85rem;
        gap: 1.75rem;
        grid-template-columns: 1fr;
    }
    
    .stats-badge {
        font-size: 0.68rem;
        padding: 0.32rem 0.7rem;
        align-self: center;
    }
    
    .stats-content {
        padding-right: 0;
        text-align: center;
    }
    
    .stats-content h2 {
        font-size: 1.25rem;
        padding: 0.38rem 0.6rem;
        text-align: center;
    }
    
    .stats-content > p {
        font-size: 0.78rem;
        padding: 0.48rem 0.6rem;
        line-height: 1.45;
        text-align: center;
    }
    
    .stats-highlights {
        padding: 0.6rem;
        margin: 0.75rem auto;
        max-width: 450px;
    }
    
    .stats-highlights li {
        font-size: 0.73rem;
        padding: 0.32rem 0.48rem;
        margin-bottom: 0.32rem;
    }
    
    .stats-highlights i {
        font-size: 0.83rem;
    }
    
    .stats-footer {
        margin-top: 0.85rem;
        padding-top: 0.85rem;
    }
    
    .stats-footer p {
        font-size: 0.7rem;
        padding: 0.48rem 0.6rem;
        text-align: center;
    }
    
    .stats-cards {
        gap: 0.7rem;
    }
    
    .stat-card {
        padding: 0.8rem;
    }
    
    .card-label h4 {
        font-size: 0.78rem;
    }
    
    .card-subtitle {
        font-size: 0.65rem;
    }
    
    .stat-number {
        font-size: 1.45rem;
    }
    
    .donut-wrapper {
        width: 58px;
        height: 58px;
    }
    
    .donut-value {
        font-size: 1.05rem;
    }
    
    .rating-text {
        font-size: 0.88rem;
    }
}

@media (max-width: 374px) {
    .stats-section {
        padding: 2.25rem 0;
    }
    
    .stats-wrapper {
        padding: 0 0.7rem;
        gap: 1.5rem;
        grid-template-columns: 1fr;
    }
    
    .stats-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.65rem;
        align-self: center;
    }
    
    .stats-content {
        padding-right: 0;
        text-align: center;
    }
    
    .stats-content h2 {
        font-size: 1.15rem;
        padding: 0.35rem 0.55rem;
        text-align: center;
    }
    
    .stats-content > p {
        font-size: 0.73rem;
        padding: 0.45rem 0.55rem;
        line-height: 1.4;
        text-align: center;
    }
    
    .stats-highlights {
        padding: 0.55rem;
        margin: 0.7rem auto;
        max-width: 400px;
    }
    
    .stats-highlights li {
        font-size: 0.7rem;
        padding: 0.3rem 0.45rem;
        margin-bottom: 0.3rem;
    }
    
    .stats-highlights i {
        font-size: 0.78rem;
    }
    
    .stats-footer {
        margin-top: 0.8rem;
        padding-top: 0.8rem;
    }
    
    .stats-footer p {
        font-size: 0.68rem;
        padding: 0.45rem 0.55rem;
        text-align: center;
    }
    
    .stats-cards {
        gap: 0.65rem;
    }
    
    .stat-card {
        padding: 0.75rem;
    }
    
    .card-label h4 {
        font-size: 0.75rem;
    }
    
    .card-subtitle {
        font-size: 0.62rem;
    }
    
    .stat-number {
        font-size: 1.35rem;
    }
    
    .trend-indicator {
        font-size: 0.67rem;
        padding: 0.25rem 0.48rem;
    }
    
    .donut-wrapper {
        width: 53px;
        height: 53px;
    }
    
    .donut-value {
        font-size: 0.98rem;
    }
    
    .rating-text {
        font-size: 0.83rem;
    }
    
    .bar {
        height: 30px;
    }
    
    .bar-label {
        font-size: 0.6rem;
    }
}

/* ================================
   INSIGHTS SECTION
================================ */
.insights-section {
    padding: 3rem 0;
    background: var(--bg-white);
}

.insights-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.insights-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-teal));
    color: var(--bg-white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    white-space: nowrap;
}

.insights-content h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.insights-lead {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.insights-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.insight-stat {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-teal);
}

.insight-stat .stat-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-teal);
    color: var(--bg-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-content h4 {
    color: var(--primary-dark);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.insights-visual {
    position: relative;
}

.visual-card {
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    border: 2px solid var(--border-color);
}

.visual-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.visual-header h4 {
    color: var(--primary-dark);
    font-size: 1.25rem;
    margin: 0;
    font-weight: 700;
}

.visual-period {
    background: var(--primary-teal);
    color: var(--bg-white);
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.chart-container {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.chart-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.visual-footer {
    display: flex;
    gap: 1.5rem;
}

.visual-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: var(--bg-light);
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.visual-indicator.positive {
    background: rgba(0, 168, 150, 0.1);
    color: var(--primary-teal);
}

.visual-indicator i {
    font-size: 1.25rem;
}

/* INSIGHTS SECTION RESPONSIVE */
@media (min-width: 768px) and (max-width: 1023px) {
    .insights-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1.5rem;
    }

    .insights-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.7rem;
    }

    .insights-content h2 {
        font-size: 1.5rem;
        text-align: center;
        line-height: 1.3;
    }

    .insights-lead {
        font-size: 1rem;
        text-align: center;
        line-height: 1.6;
    }

    .insights-stats {
        gap: 1.25rem;
    }

    .insight-stat {
        flex-direction: row;
        padding: 1rem;
        gap: 1rem;
    }

    .stat-content h4 {
        font-size: 1rem;
    }

    .stat-content p {
        font-size: 0.88rem;
    }

    .visual-card {
        padding: 1.8rem;
    }

    .visual-header h4 {
        font-size: 1.15rem;
    }

    .visual-period {
        font-size: 0.7rem;
        padding: 0.25rem 0.7rem;
    }

    .visual-footer {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .chart-container {
        width: 100%;
        padding: 0;
        padding-bottom: 100%;
        min-height: 0;
        height: 0;
    }

    .chart-container img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 85%;
        height: 85%;
        object-fit: contain;
        max-width: none;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .insights-section {
        padding: 2.5rem 1.25rem;
    }

    .insights-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .insights-badge {
        font-size: 0.6rem;
        padding: 0.22rem 0.65rem;
    }

    .insights-content h2 {
        font-size: 1.35rem;
        text-align: center;
    }

    .insights-lead {
        font-size: 0.9rem;
        text-align: center;
    }

    .insights-stats {
        gap: 1rem;
    }

    .insight-stat {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.85rem;
        gap: 0.75rem;
    }

    .stat-content h4 {
        font-size: 0.95rem;
    }

    .stat-content p {
        font-size: 0.82rem;
    }

    .visual-card {
        padding: 1.5rem;
    }

    .visual-header h4 {
        font-size: 1.05rem;
    }

    .visual-period {
        font-size: 0.65rem;
        padding: 0.2rem 0.6rem;
    }

    .visual-footer {
        flex-direction: column;
        gap: 0.65rem;
    }

    .chart-container {
        padding-bottom: 100%;
    }

    .chart-container img {
        width: 80%;
        height: 80%;
    }
}

@media (min-width: 375px) and (max-width: 480px) {
    .insights-section {
        padding: 2rem 1rem;
    }

    .insights-wrapper {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .insights-badge {
        font-size: 0.55rem;
        padding: 0.2rem 0.6rem;
    }

    .insights-content h2 {
        font-size: 1.2rem;
        line-height: 1.25;
        text-align: center;
    }

    .insights-lead {
        font-size: 0.85rem;
        text-align: center;
    }

    .insight-stat {
        padding: 0.75rem;
        gap: 0.65rem;
    }

    .stat-content h4 {
        font-size: 0.9rem;
    }

    .stat-content p {
        font-size: 0.8rem;
    }

    .visual-card {
        padding: 1.25rem;
    }

    .visual-header h4 {
        font-size: 0.95rem;
    }

    .visual-period {
        font-size: 0.6rem;
        padding: 0.18rem 0.55rem;
    }

    .chart-container img {
        width: 75%;
        height: 75%;
    }
}

@media (max-width: 374px) {
    .insights-section {
        padding: 1.8rem 0.75rem;
    }

    .insights-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .insights-badge {
        font-size: 0.5rem;
        padding: 0.18rem 0.55rem;
    }

    .insights-content h2 {
        font-size: 1.1rem;
        line-height: 1.2;
        text-align: center;
    }

    .insights-lead {
        font-size: 0.8rem;
        text-align: center;
    }

    .insight-stat {
        padding: 0.65rem;
        gap: 0.55rem;
    }

    .stat-content h4 {
        font-size: 0.85rem;
    }

    .stat-content p {
        font-size: 0.75rem;
    }

    .visual-card {
        padding: 1rem;
    }

    .visual-header h4 {
        font-size: 0.9rem;
    }

    .visual-period {
        font-size: 0.55rem;
        padding: 0.16rem 0.5rem;
    }

    .visual-footer {
        flex-direction: column;
        gap: 0.5rem;
    }

    .chart-container img {
        width: 70%;
        height: 70%;
    }
}

@media (max-width: 768px) {
    .insights-visual {
        display: none !important;
    }
}