/* ==================== GrowthAdvisory Page Specific Styles ==================== */

/* Hero Section */
.advisory-hero {
    background-image: url('../images/AI Mastery – Build Your Internal AI Experts.png');
    background-size: 80%;
    background-position: center right;
    background-repeat: no-repeat;
    padding: 0;
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
}

.advisory-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        rgba(0, 160, 168, 1) 0%,
        rgba(0, 160, 168, 0.95) 20%,
        rgba(0, 160, 168, 0.8) 35%,
        rgba(0, 160, 168, 0.5) 50%,
        rgba(0, 160, 168, 0.2) 65%,
        transparent 80%);
    z-index: 0;
}

.advisory-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.advisory-hero-content {
    color: white;
    padding: 4rem 0;
    max-width: 650px;
    margin-left: 0;
}

.advisory-hero-image {
    display: none;
}

.advisory-badge {
    display: inline-block;
    background-color: white;
    color: var(--color-plus);
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.advisory-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: white;
}

.advisory-hero-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    color: white;
    opacity: 0.95;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-hero-cta {
    display: inline-block;
    background-color: white;
    color: var(--color-impact);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 3rem;
}

.btn-hero-cta:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

.hero-features {
    display: block;
    color: white;
    font-size: 0.875rem;
    white-space: nowrap;
}

.hero-features .separator {
    color: rgba(255, 255, 255, 0.5);
}

/* Positioning Statement Section */
.positioning-section {
    padding: 0;
    background: linear-gradient(90deg, var(--color-impact) 0%, var(--color-impact) 50%, #f9f9f9 50%, #f9f9f9 100%);
    overflow: hidden;
}

.positioning-split {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.positioning-left {
    background-color: var(--color-impact);
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.positioning-left::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 200px;
    height: 100%;
    background: var(--color-impact);
    transform: skewX(-5deg);
    z-index: 1;
}

.positioning-badge {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.positioning-statement {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin: 0;
    position: relative;
    z-index: 2;
}

.positioning-right {
    background-color: #f9f9f9;
    padding: 5rem 4rem 5rem 6rem;
    display: block;
    position: relative;
    z-index: 2;
}

.positioning-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .positioning-points {
        grid-template-columns: 1fr;
    }
}

.positioning-point {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.positioning-point:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 160, 168, 0.2);
    border-color: var(--color-plus);
}

.point-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--color-plus);
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 8px;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
}

.point-content {
    flex: 1;
}

.point-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 0.5rem 0;
}

.point-content p {
    font-size: 0.938rem;
    color: var(--color-gray);
    margin: 0;
    line-height: 1.6;
}

/* Problems We Solve Section */
.problems-section {
    padding: 6rem 2rem;
    background-color: white;
}

.problems-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.problems-label {
    display: inline-block;
    color: var(--color-plus);
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.problems-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-impact);
    margin: 0 0 1rem 0;
}

.problems-intro {
    font-size: 1.125rem;
    color: var(--color-gray);
    margin: 0;
    line-height: 1.6;
}

/* Problems Tabs */
.problems-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.problem-tab {
    background-color: white;
    border: 2px solid #e0e0e0;
    color: var(--color-dark);
    padding: 0.875rem 2rem;
    min-height: 48px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.problem-tab:hover {
    border-color: var(--color-plus);
    color: var(--color-plus);
    transform: translateY(-2px);
}

.problem-tab.active {
    background-color: var(--color-impact);
    border-color: var(--color-impact);
    color: white;
}

/* Problems Content */
.problems-content {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.problems-tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.problems-tab-content.active {
    display: block;
}

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

.problems-checklist {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Custom Checkbox */
.problem-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: #f9f9f9;
    border-radius: 12px;
    border-left: 4px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.problem-checkbox:hover {
    background-color: #e8f4f5;
    border-left-color: var(--color-plus);
}

.problem-checkbox input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    border: 2px solid #ddd;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.problem-checkbox:hover .checkbox-custom {
    border-color: var(--color-plus);
}

.problem-checkbox input[type="checkbox"]:checked + .checkbox-custom {
    background-color: var(--color-plus);
    border-color: var(--color-plus);
}

.problem-checkbox input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.problem-text {
    font-size: 1rem;
    color: var(--color-dark);
    line-height: 1.6;
    flex: 1;
}

.problem-checkbox input[type="checkbox"]:checked ~ .problem-text {
    color: var(--color-impact);
    font-weight: 500;
}

/* Problems CTA Section */
.problems-cta-section {
    background: linear-gradient(135deg, #e8f4f5 0%, #f0f8f9 100%);
    padding: 4rem 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.problems-cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-impact);
    margin: 0 0 1rem 0;
}

.problems-cta-content p {
    font-size: 1.125rem;
    color: var(--color-dark);
    margin: 0 0 2rem 0;
    line-height: 1.6;
}

.btn-problems-cta {
    display: inline-block;
    background-color: var(--color-impact);
    color: white;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 74, 159, 0.2);
    font-family: inherit;
}

.btn-problems-cta:hover {
    background-color: #003780;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 74, 159, 0.3);
    text-decoration: none;
}

.btn-problems-cta:active {
    transform: translateY(-1px);
}

/* How We Help Section */
.how-we-help-section {
    padding: 6rem 2rem;
    background-color: #e8f4f5;
}

.help-header {
    text-align: center;
    margin-bottom: 4rem;
}

.help-title {
    font-size: 0.938rem;
    font-weight: 700;
    color: var(--color-impact);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.help-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.help-card {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.help-icon-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--color-plus) 0%, #008a92 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 160, 168, 0.25);
}

.help-icon-circle i {
    font-size: 2.5rem;
    color: white;
}

.help-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-impact);
    margin-bottom: 1.5rem;
}

.help-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.help-list li {
    padding: 0.75rem 0;
    color: var(--color-gray);
    font-size: 0.938rem;
    line-height: 1.6;
    position: relative;
    padding-left: 1.75rem;
}

.help-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-plus);
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.4;
}

/* Expandable Content Styles */
.expandable-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease, margin-top 0.5s ease;
    opacity: 0;
}

.expandable-content.expanded {
    max-height: 1000px;
    opacity: 1;
    margin-top: 1.5rem;
}

.expand-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--color-plus) 0%, #008a92 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.938rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 160, 168, 0.3);
}

.expand-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 160, 168, 0.4);
}

.expand-btn i {
    transition: transform 0.3s ease;
}

.expand-btn.expanded i {
    transform: rotate(180deg);
}

.section-title-centered {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-impact);
    margin-bottom: 2rem;
    text-align: center;
}

.section-description-centered {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-dark);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Core Advisory Services Section */
.core-services-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
}

.services-header-block {
    text-align: center;
    margin-bottom: 4rem;
}

.services-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-plus) 0%, var(--color-impact) 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.services-main-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--color-impact);
    margin: 0;
}

.services-carousel-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

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

.service-card:nth-child(1),
.service-card:nth-child(2),
.service-card:nth-child(3) {
    grid-column: span 2;
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
    grid-column: span 3;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid #f0f8f9;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    border-color: var(--color-plus);
    box-shadow: 0 8px 30px rgba(0, 160, 168, 0.12);
}


.service-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-plus) 0%, #008a92 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-impact);
    margin: 0;
    line-height: 1.3;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-list li {
    padding: 0.75rem 0;
    color: var(--color-gray);
    font-size: 0.938rem;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-plus);
    font-weight: bold;
    font-size: 1rem;
}

.service-list li:last-child {
    margin-top: auto;
    padding: 1.25rem;
    background: linear-gradient(135deg, #e8f4f5 0%, #d4f1f4 100%);
    border-radius: 10px;
    font-weight: 600;
    color: var(--color-impact);
    border-left: 3px solid var(--color-plus);
    padding-left: 1.25rem;
}

.service-list li:last-child:before {
    content: none;
}

/* Hide carousel controls */
.carousel-nav,
.carousel-dots {
    display: none;
}

/* How We're Different Section */
/* What Makes Us Different Section */
.what-different-section {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

.what-different-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 3rem auto 0;
}

.what-different-card {
    padding: 2.5rem 2rem;
    border-radius: 12px;
    background: white;
    position: relative;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.what-different-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.what-different-card.card-blue {
    border-top-color: var(--color-impact);
}

.what-different-card.card-teal {
    border-top-color: var(--color-plus);
}

.what-different-card.card-teal-dark {
    border-top-color: var(--color-impact);
}

.what-different-card.card-blue-light {
    border-top-color: var(--color-plus);
}

.what-different-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.what-different-card p {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.8;
}

/* What to Expect Section */
.expect-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8fcfd 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.expect-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(15deg);
    width: 600px;
    height: 600px;
    background-image: url('../svg/impactPlus.svg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.02;
    z-index: 0;
}

.expect-section .content-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.expect-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-impact);
    text-align: center;
    margin-bottom: 3.5rem;
}

.expect-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.expect-column {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 74, 159, 0.08);
    position: relative;
    border-top: 5px solid transparent;
    transition: all 0.3s ease;
}

.expect-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 74, 159, 0.12);
}

.expect-left {
    border-top-color: var(--color-impact);
}

.expect-right {
    border-top-color: var(--color-plus);
}

.expect-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.expect-left .expect-icon-wrapper {
    background: linear-gradient(135deg, rgba(0, 74, 159, 0.1) 0%, rgba(0, 74, 159, 0.05) 100%);
}

.expect-right .expect-icon-wrapper {
    background: linear-gradient(135deg, rgba(0, 160, 168, 0.1) 0%, rgba(0, 160, 168, 0.05) 100%);
}

.expect-icon-wrapper i {
    font-size: 2rem;
}

.expect-left .expect-icon-wrapper i {
    color: var(--color-impact);
}

.expect-right .expect-icon-wrapper i {
    color: var(--color-plus);
}

.expect-column h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--color-dark);
}

.expect-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expect-list li {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    padding-left: 2rem;
    position: relative;
}

.expect-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.expect-left .expect-list li::before {
    color: var(--color-impact);
}

.expect-right .expect-list li::before {
    color: var(--color-plus);
}

.expect-list li:last-child {
    margin-bottom: 0;
}

/* Engagement Models Section */
.engagement-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fcfd 50%, #ffffff 100%);
    position: relative;
}

.engagement-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0, 160, 168, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 74, 159, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.engagement-section .content-container {
    position: relative;
    z-index: 1;
}

.engagement-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-impact);
    text-align: center;
    margin-bottom: 4rem;
}

.engagement-models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.engagement-model-card {
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 8px 30px rgba(0, 74, 159, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #f0f8f9;
}

.engagement-model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 74, 159, 0.15);
    border-color: var(--color-plus);
}

.model-number {
    background: linear-gradient(135deg, var(--color-impact) 0%, var(--color-plus) 100%);
    color: white;
    font-size: 3rem;
    font-weight: 700;
    padding: 1.5rem 2rem;
    text-align: center;
}

.model-content {
    padding: 2rem 2rem 2.5rem;
}

.model-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.model-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.model-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.model-detail-item i {
    font-size: 1.1rem;
    color: var(--color-plus);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.model-detail-item span {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.6;
}

/* Who This Is For Section */
.who-for-section {
    padding: 5rem 2rem;
    background-color: white;
}

.who-for-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-impact);
    text-align: center;
    margin-bottom: 4rem;
}

.who-for-wrapper {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.who-for-image {
    position: relative;
}

.who-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 74, 159, 0.15);
}

.who-for-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 2rem;
}

.who-for-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.who-for-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.who-for-list li i {
    font-size: 1.5rem;
    color: var(--color-plus);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.who-for-list li span {
    font-size: 1.125rem;
    color: var(--color-gray);
    line-height: 1.7;
}

/* The Diagnostic Section */
.diagnostic-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f0f8f9 0%, #ffffff 50%, #f8fcfd 100%);
    position: relative;
    overflow: hidden;
}

.diagnostic-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.diagnostic-main-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--color-impact);
    position: relative;
    display: inline-block;
}

.diagnostic-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-impact) 0%, var(--color-plus) 100%);
    border-radius: 2px;
}

.diagnostic-layout {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: start;
}

.diagnostic-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.diagnostic-intro-card {
    background: linear-gradient(135deg, var(--color-impact) 0%, #0066cc 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 74, 159, 0.2);
}

.diagnostic-intro-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.diagnostic-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.diagnostic-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
}

.diagnostic-benefits li i {
    font-size: 1.25rem;
    color: var(--color-plus);
    background: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.diagnostic-coverage {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f8f9;
}

.diagnostic-coverage h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.coverage-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fcfd 0%, #ffffff 100%);
    border-radius: 12px;
    border-left: 3px solid var(--color-plus);
    transition: all 0.3s ease;
}

.coverage-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 160, 168, 0.15);
}

.coverage-item i {
    font-size: 1.5rem;
    color: var(--color-plus);
    flex-shrink: 0;
}

.coverage-item span {
    font-size: 1rem;
    color: var(--color-gray);
    font-weight: 500;
}

.diagnostic-meta {
    display: flex;
    gap: 1.5rem;
}

.meta-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-top: 3px solid var(--color-impact);
}

.meta-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 74, 159, 0.1) 0%, rgba(0, 160, 168, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.meta-icon i {
    font-size: 1.5rem;
    color: var(--color-impact);
}

.meta-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.meta-content strong {
    font-size: 0.875rem;
    color: var(--color-dark);
    font-weight: 700;
}

.meta-content span {
    font-size: 1rem;
    color: var(--color-gray);
}

.diagnostic-right {
    position: sticky;
    top: 100px;
}

.diagnostic-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 74, 159, 0.2);
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.diagnostic-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 74, 159, 0.25);
}

.diagnostic-image-wrapper:hover .diagnostic-badge {
    transform: scale(1.05);
}

.diagnostic-img {
    width: 100%;
    height: auto;
    display: block;
}

.diagnostic-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: linear-gradient(135deg, var(--color-plus) 0%, #00b8c1 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(0, 160, 168, 0.4);
    transition: all 0.3s ease;
}

.diagnostic-badge i {
    font-size: 1.5rem;
}

.diagnostic-badge span {
    font-size: 1rem;
    font-weight: 700;
}

/* Process Section */
.process-section {
    padding: 5rem 2rem;
    background-color: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.process-step {
    text-align: center;
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-impact) 0%, #003780 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
}

.process-step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.process-step-desc {
    font-size: 0.938rem;
    color: var(--color-gray);
    line-height: 1.6;
}

/* Industries Section */
.industries-section {
    padding: 5rem 2rem;
    background-color: #e8f4f5;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.industry-item {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.industry-item i {
    font-size: 2.5rem;
    color: var(--color-plus);
    margin-bottom: 1rem;
}

.industry-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.industry-item p {
    font-size: 0.875rem;
    color: var(--color-gray);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 2rem;
    background-color: white;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-impact);
    margin-bottom: 3rem;
    text-align: center;
}

.faq-item {
    background-color: #f5f5f5;
    border-radius: 0;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    padding: 1.25rem 1.5rem;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #ebebeb;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--color-plus);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-gray);
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1rem 1.5rem;
}

/* Why Partner Section */
.why-partner-section {
    padding: 5rem 2rem;
    background-color: white;
}

.content-container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.why-partner-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 4rem;
    align-items: center;
}

.why-partner-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.why-partner-img {
    width: 100%;
    height: auto;
    display: block;
}

.why-partner-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-impact);
    margin-bottom: 2rem;
}

.why-partner-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.why-point i {
    font-size: 1.5rem;
    color: var(--color-plus);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.why-point h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.why-point p {
    font-size: 0.938rem;
    color: var(--color-gray);
    line-height: 1.6;
}

/* Certifications Section */
.certifications-section {
    padding: 5rem 2rem;
    background: white;
}

.certifications-container {
    max-width: 1200px;
    margin: 0 auto;
}

.certifications-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
    text-align: left;
}

.certifications-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-dark);
    margin-bottom: 3rem;
    text-align: left;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.certification-card {
    text-align: left;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.certification-icon {
    width: 80px;
    height: 80px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #00A0A8;
}

.certification-icon img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.certification-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.certification-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-gray);
    flex-grow: 1;
}

.certification-note {
    font-size: 0.875rem;
    color: #00A0A8;
    margin-top: 1rem;
    font-weight: 500;
}

/* CTA Section (if not already in main.css) */
.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #e8f4f5 0%, #f0f8f9 100%);
}

.cta-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 4rem;
    align-items: center;
}

.cta-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-impact);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.cta-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-dark);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.btn-cta-primary {
    background-color: var(--color-impact);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
}

.btn-cta-primary:hover {
    background-color: #003780;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 74, 159, 0.3);
    text-decoration: none;
}

.btn-cta-secondary {
    background-color: var(--color-impact);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
}

.btn-cta-secondary:hover {
    background-color: #003780;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 74, 159, 0.3);
    text-decoration: none;
}

.cta-note {
    font-size: 0.9375rem;
    color: var(--color-dark);
    margin-top: 1rem;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .advisory-hero-content {
        max-width: 100%;
        padding: 3rem 2rem;
    }

    .positioning-split {
        grid-template-columns: 1fr;
    }

    .positioning-left::before {
        display: none;
    }

    .positioning-right {
        padding: 4rem 3rem;
    }

    .positioning-statement {
        font-size: 2.5rem;
    }

    .help-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .who-for-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .who-for-content h3 {
        font-size: 1.5rem;
    }

    .diagnostic-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .diagnostic-right {
        position: relative;
        top: 0;
    }

    .diagnostic-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .services-carousel {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }

    .service-card:nth-child(1),
    .service-card:nth-child(2),
    .service-card:nth-child(3),
    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        grid-column: span 1;
    }

    .service-card {
        padding: 2rem;
    }

    .service-header {
        gap: 1rem;
    }

    .service-card h3 {
        font-size: 1.25rem;
    }

    .what-different-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .expect-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .engagement-models-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .engagement-title {
        font-size: 2rem;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-partner-grid {
        grid-template-columns: 1fr;
    }

    .cta-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .advisory-hero {
        min-height: 500px;
        background-position: 70% center;
    }

    .advisory-hero-content {
        padding: 3rem 1.5rem;
        max-width: 100%;
    }

    .advisory-hero-title {
        font-size: 1.75rem;
    }

    .advisory-hero-subtitle {
        font-size: 0.938rem;
    }

    .hero-features {
        font-size: 0.75rem;
        white-space: normal;
    }

    .positioning-section {
        background: var(--color-impact);
    }

    .positioning-left,
    .positioning-right {
        padding: 3rem 2rem;
    }

    .positioning-statement {
        font-size: 2rem;
    }

    .positioning-right {
        background-color: white;
    }

    .problems-section {
        padding: 4rem 1.5rem;
    }

    .problems-main-title {
        font-size: 2rem;
    }

    .problems-intro {
        font-size: 1rem;
    }

    .problem-tab {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .problems-cta-section {
        padding: 3rem 2rem;
    }

    .problems-cta-content h3 {
        font-size: 1.5rem;
    }

    .how-we-help-section {
        padding: 4rem 1.5rem;
    }

    .help-subtitle {
        font-size: 2rem;
    }

    .core-services-section {
        padding: 4rem 1.5rem;
    }

    .services-main-title {
        font-size: 2rem;
    }

    .services-carousel {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card:nth-child(1),
    .service-card:nth-child(2),
    .service-card:nth-child(3),
    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        grid-column: span 1;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .service-card h3 {
        font-size: 1.125rem;
    }

    .service-list li {
        font-size: 0.875rem;
    }

    .section-title-centered,
    .section-title {
        font-size: 2rem;
    }

    .what-different-grid {
        grid-template-columns: 1fr;
    }

    .expect-title {
        font-size: 2rem;
    }

    .expect-column h3 {
        font-size: 1.5rem;
    }

    .who-for-title {
        font-size: 2rem;
    }

    .who-for-list li span {
        font-size: 1rem;
    }

    .diagnostic-main-title {
        font-size: 2rem;
    }

    .diagnostic-intro-card h3 {
        font-size: 1.5rem;
    }

    .diagnostic-benefits li {
        font-size: 1rem;
    }

    .diagnostic-badge {
        padding: 0.75rem 1.25rem;
    }

    .diagnostic-badge span {
        font-size: 0.875rem;
    }

    .faq-section-title {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 0.9375rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .why-partner-content h2,
    .cta-text h2 {
        font-size: 2rem;
    }

    .cta-text h3 {
        font-size: 1.25rem;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
    }

    .certifications-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .problems-section,
    .how-we-help-section,
    .core-services-section,
    .what-different-section,
    .expect-section,
    .engagement-section,
    .who-for-section,
    .diagnostic-section,
    .process-section,
    .industries-section,
    .faq-section,
    .why-partner-section,
    .certifications-section,
    .cta-section {
        padding: 2.5rem 1rem;
    }

    .problems-main-title,
    .help-subtitle,
    .services-main-title,
    .section-title-centered,
    .section-title,
    .expect-title,
    .engagement-title,
    .who-for-title,
    .diagnostic-main-title,
    .faq-section-title,
    .certifications-title {
        font-size: 1.75rem;
    }

    .engagement-models-grid,
    .coverage-grid,
    .certifications-grid {
        grid-template-columns: 1fr;
    }

    .problem-tab {
        padding: 0.75rem 1.5rem;
        min-height: 48px;
    }
}

@media (max-width: 375px) {
    .problems-section,
    .how-we-help-section,
    .core-services-section,
    .what-different-section,
    .expect-section,
    .engagement-section,
    .who-for-section,
    .diagnostic-section,
    .process-section,
    .industries-section,
    .faq-section,
    .why-partner-section,
    .certifications-section,
    .cta-section {
        padding: 2.5rem 1rem;
    }

    .problems-main-title,
    .help-subtitle,
    .services-main-title,
    .section-title-centered,
    .section-title,
    .expect-title,
    .engagement-title,
    .who-for-title,
    .diagnostic-main-title,
    .faq-section-title,
    .certifications-title {
        font-size: 1.5rem;
    }

    .advisory-hero-title {
        font-size: 1.5rem;
    }

    .positioning-statement {
        font-size: 1.75rem;
    }
}
