/* HERO SECTION */
.hero { text-align: center; padding: 6rem 1rem 2rem 1rem; }
.hero-title { font-size: 5rem; line-height: 1.05; margin-bottom: 1.5rem; }
.hero-subtitle { font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 2.5rem auto; }
.hero-buttons { display: flex; justify-content: center; gap: 1rem; margin-bottom: 4rem; }
.hero-image-placeholder { width: 90%; max-width: 1200px; height: 300px; background: linear-gradient(180deg, #ccc, #aaa); margin: 0 auto; border-radius: 40px 40px 0 0; overflow: hidden; }




/* HERO IMAGE SHOWCASE */
.hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 4rem auto 0 auto; /* Creates spacing below buttons */
    padding: 0 1rem;
    overflow: hidden;
}

.hero-showcase-img {
    width: 100%;
    height: auto;
    max-height: 500px; /* Adjust based on how tall you want it on desktop screens */
    object-fit: cover;
    object-position: center;
    
    /* Elegant large rounded top-corners matching the image look */
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    display: block;
}

/* Responsive adjustment for smaller screens */
@media (max-width: 768px) {
    .hero-image-wrapper {
        margin-top: 2.5rem;
    }
    .hero-showcase-img {
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
    }
}







/* HOW WE WORK STEPS */
.how-we-work { margin-top: 4rem; background: #eaeaea; padding: 3rem; border-radius: 24px; }
.how-we-work h3 { font-size: 1.8rem; margin-bottom: 2rem; }
.card-step { background: var(--card-bg); padding: 2.5rem 2rem; border-radius: 16px; box-shadow: 0 4px 12px rgba(0,0,0,0.01); }
.step-num { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; }

/* SYSTEM DIAGRAM GRAPHIC */
.growth-system-box { background: var(--card-bg); padding: 3rem; border-radius: 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.box-title { align-self: flex-start; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 2rem; }
.system-node { background: #fcfcfc; border: 1px solid #eee; width: 100%; padding: 1.2rem; text-align: center; border-radius: 14px; font-size: 1.1rem; }
.line { width: 1px; height: 30px; background: #ccc; }
.full-width { width: 100%; margin-top: 1.5rem; }

/* CAPABILITIES ACCORDION GRID LAYOUT */
.text-left-panels {
    text-align: left;
}

.capabilities-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.capability-row {
    padding: 1.5rem 2rem;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    background: transparent;
    cursor: pointer;
}

.capability-heading {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0;
    transition: color 0.3s ease;
}

.capability-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
    opacity: 0;
}

.capability-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.5;
    margin: 1rem 0 1.5rem 0;
    max-width: 90%;
}

.rounded-pill {
    border-radius: 50px !important;
}

/* Hover/Active States */
.capability-row.active {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.01);
}

.capability-row.active .capability-content {
    max-height: 200px; /* Gives plenty of room to unfold safely */
    opacity: 1;
}

/* Image Dynamic Panel Frame */
.capabilities-image-pane {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 32px;
}

.capability-img-frame {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out, transform 0.5s ease;
}

.capability-img-frame.fade-effect {
    opacity: 0.1;
    transform: scale(0.98);
}

/* INDUSTRY CARDS */
.industry-card { background: var(--card-bg); padding: 2rem; border-radius: 20px; border: 1px solid rgba(0,0,0,0.03); }
.industry-card h4 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }
.industry-card p { color: var(--text-muted); font-size: 0.95rem; }

/* FAQ LIST */
.faq-list { max-width: 700px; margin: 3rem auto 0 auto; }
.faq-item { background: var(--card-bg); padding: 1.5rem 2rem; border-radius: 16px; margin-bottom: 1rem; display: flex; justify-content: space-between; align-items: center; font-size: 1.2rem; font-family: var(--font-serif); }
.faq-item .icon { font-family: var(--font-sans); color: var(--text-muted); }

/* ARTICLE CARDS (INSIGHTS MINI EXTENSION FOR THE HOME CARD WRAPPERS) */
.article-card { display: flex; flex-direction: column; }
.article-img-placeholder { position: relative; width: 100%; border-radius: 24px; overflow: hidden; margin-bottom: 1.2rem; aspect-ratio: 4 / 3; }
.mock-img-article { width: 100%; height: 100%; transition: transform 0.4s ease; }
.article-card:hover .mock-img-article { transform: scale(1.03); }
.arrow-icon { position: absolute; top: 15px; right: 15px; background: #ffffff; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 1rem; }
.article-meta { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.8rem; }
.article-tag { background: #ffffff; padding: 0.2rem 0.6rem; border-radius: 6px; font-size: 0.75rem; font-weight: 500; color: var(--text-dark); border: 1px solid rgba(0,0,0,0.05); }
.article-date { font-size: 0.8rem; color: var(--text-muted); margin-left: auto; }
.article-title a { font-family: var(--font-serif); font-size: 1.8rem; line-height: 1.2; color: var(--text-dark); text-decoration: none; }
.article-title a:hover { text-decoration: underline; }



