/* AI Cost Optimisation Services Page Styles */

.aico_main {
    background: linear-gradient(180deg, #f9f8f4, #fff7e8 43.2%, #effaea 77.2%);
}

/* Hero Section */
.aico_hero {
    padding: 13vw 11.4vw 6vw 11.4vw;
    text-align: center;
}

.aico_hero_content h1 {
    font-weight: 500;
    font-size: 2.8vw;
    line-height: 1.3;
    color: #1a1a1a;
    max-width: 55vw;
    margin: 0 auto 1.5vw auto;
}

.aico_hero_content p {
    font-size: 1.1vw;
    color: #2B2B2B;
    line-height: 1.7;
    max-width: 50vw;
    margin: 0 auto 1vw auto;
}

.aico_hero_cta {
    margin-top: 2.5vw;
    display: flex;
    gap: 1vw;
    justify-content: center;
}

.aico_btn_primary {
    display: inline-block;
    background: #789165;
    color: #fff;
    padding: 1vw 2.5vw;
    border-radius: 0.5vw;
    font-size: 1vw;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.aico_btn_primary:hover {
    background: #6a8058;
    transform: translateY(-2px);
}

.aico_btn_secondary {
    display: inline-block;
    background: transparent;
    color: #789165;
    padding: 1vw 2.5vw;
    border-radius: 0.5vw;
    font-size: 1vw;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid #789165;
    transition: all 0.2s ease;
}

.aico_btn_secondary:hover {
    background: #789165;
    color: #fff;
    transform: translateY(-2px);
}

/* Trusted By Section */
.aico_trusted {
    padding: 3vw 10.5vw;
    text-align: center;
    margin-top: 0;
    overflow: hidden;
}

.aico_trusted .logo_slider_title {
    text-align: center;
    font-size: 1vw;
    color: #888;
    font-weight: 400;
    margin-bottom: 1.5vw;
}

.aico_trusted .logo_wrap {
    position: relative;
    padding-bottom: 3vw;
    overflow: hidden;
}

.aico_logo_slider {
    margin-top: 1vw;
    white-space: nowrap;
}

.aico_logo_slider .slick-track {
    display: flex;
    align-items: center;
}

.aico_logo_slider .slick-slide {
    margin: 0 0.5vw;
}

.aico_logo_slider img {
    background: #ffffff70;
    padding: 1vw 1.9vw;
    height: 2.2vw;
    width: auto;
    max-width: none;
    border-radius: 0.6vw;
    display: inline-block;
    object-fit: contain;
}

/* Introduction Section */
.aico_intro {
    padding: 4vw 11.4vw;
}

.aico_intro_card {
    background: #fff;
    border-radius: 1.3vw;
    padding: 3vw 4vw;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.aico_intro_card h2 {
    font-weight: 500;
    font-size: 2vw;
    color: #1a1a1a;
    margin-bottom: 1.5vw;
    line-height: 1.4;
}

.aico_intro_card p {
    font-size: 1vw;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1vw;
    max-width: 55vw;
    margin-left: auto;
    margin-right: auto;
}

.aico_intro_card p.highlight {
    margin-bottom: 0;
    color: #789165;
    font-weight: 500;
}

/* Offerings Section */
.aico_offerings {
    padding: 4vw 11.4vw;
}

.aico_offerings h2 {
    font-weight: 500;
    font-size: 2vw;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 3vw;
}

.aico_offering_cards {
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.aico_offering_card {
    background: #fff;
    border-radius: 1.3vw;
    padding: 2.5vw 3vw;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 3vw;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.aico_offering_card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.aico_offering_card:nth-child(even) {
    flex-direction: row-reverse;
}

.aico_offering_content {
    flex: 1;
}

.aico_offering_content h3 {
    font-weight: 600;
    font-size: 1.4vw;
    color: #1a1a1a;
    margin-bottom: 0.8vw;
}

.aico_offering_content p {
    font-size: 1vw;
    color: #444;
    line-height: 1.7;
    margin-bottom: 1vw;
}

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

.aico_offering_content ul li {
    font-size: 0.95vw;
    color: #555;
    line-height: 1.6;
    padding-left: 1.2vw;
    position: relative;
    margin-bottom: 0.5vw;
}

.aico_offering_content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5vw;
    width: 0.4vw;
    height: 0.4vw;
    background: #789165;
    border-radius: 50%;
}

.aico_offering_image {
    width: 35vw;
    height: 35vw;
    flex-shrink: 0;
    border-radius: 1vw;
    overflow: hidden;
    background: linear-gradient(135deg, #e5f1de 0%, #d8eace 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Results Section */
.aico_results {
    padding: 4vw 11.4vw;
}

.aico_results_card {
    background: linear-gradient(135deg, #1E1614 0%, #2d2320 100%);
    border-radius: 1.3vw;
    padding: 3vw 4vw;
    text-align: center;
}

.aico_results_card h2 {
    font-weight: 500;
    font-size: 2vw;
    color: #fff;
    margin-bottom: 2.5vw;
}

.aico_results_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2vw;
}

.aico_result_item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 1vw;
    padding: 2vw 1.5vw;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.aico_result_metric {
    font-size: 2.5vw;
    font-weight: 700;
    color: #D4B375;
    margin-bottom: 0.5vw;
}

.aico_result_label {
    font-size: 1vw;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.3vw;
}

.aico_result_desc {
    font-size: 0.85vw;
    color: rgba(255, 255, 255, 0.6);
}

.aico_results_note {
    font-size: 0.9vw;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2vw;
    font-style: italic;
}

/* Expertise Section */
.aico_expertise {
    padding: 4vw 11.4vw;
}

.aico_expertise h2 {
    font-weight: 500;
    font-size: 2vw;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 2.5vw;
}

.aico_expertise_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5vw;
}

.aico_expertise_card {
    background: #fff;
    border-radius: 1vw;
    padding: 2vw;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.aico_expertise_header {
    display: flex;
    align-items: center;
    gap: 0.8vw;
    margin-bottom: 1.2vw;
}

.aico_expertise_icon {
    width: 2.5vw;
    height: 2.5vw;
    background: linear-gradient(135deg, #e5f1de 0%, #d8eace 100%);
    border-radius: 0.6vw;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #789165;
}

.aico_expertise_icon svg {
    width: 1.3vw;
    height: 1.3vw;
}

.aico_expertise_header h3 {
    font-size: 1.2vw;
    font-weight: 600;
    color: #1a1a1a;
}

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

.aico_expertise_list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6vw;
    font-size: 0.95vw;
    color: #444;
    margin-bottom: 0.8vw;
    line-height: 1.5;
}

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

.aico_expertise_list .check_icon {
    width: 1.1vw;
    height: 1.1vw;
    min-width: 1.1vw;
    margin-top: 0.15vw;
}

/* Audience Section */
.aico_audience {
    padding: 4vw 11.4vw;
}

.aico_audience_card {
    background: #fff;
    border-radius: 1.3vw;
    padding: 3vw 4vw;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.aico_audience_card h2 {
    font-weight: 500;
    font-size: 2vw;
    color: #1a1a1a;
    margin-bottom: 2.5vw;
}

.aico_audience_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2vw;
}

.aico_audience_item {
    background: #f9f8f4;
    border-radius: 1vw;
    padding: 2vw;
    text-align: center;
    transition: transform 0.2s ease;
}

.aico_audience_item:hover {
    transform: translateY(-3px);
}

.aico_audience_icon {
    width: 4vw;
    height: 4vw;
    background: linear-gradient(135deg, #e5f1de 0%, #d8eace 100%);
    border-radius: 1vw;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1vw auto;
    color: #789165;
}

.aico_audience_icon svg {
    width: 2vw;
    height: 2vw;
}

.aico_audience_item h3 {
    font-size: 1.1vw;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5vw;
}

.aico_audience_item p {
    font-size: 0.9vw;
    color: #666;
    line-height: 1.5;
}

/* Why Bud Section */
.aico_why_bud {
    padding: 4vw 11.4vw;
}

.aico_why_bud_card {
    background: linear-gradient(135deg, #e5f1de 0%, #d8eace 100%);
    border-radius: 1.3vw;
    padding: 3vw 4vw;
    text-align: center;
    border: 2px solid #789165;
}

.aico_why_bud_card h2 {
    font-weight: 500;
    font-size: 2vw;
    color: #1a1a1a;
    margin-bottom: 1vw;
}

.aico_why_bud_intro {
    font-size: 1.1vw;
    color: #444;
    margin-bottom: 2vw;
    max-width: 45vw;
    margin-left: auto;
    margin-right: auto;
}

.aico_why_bud_intro strong {
    color: #1a1a1a;
}

.aico_why_bud_features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1vw 2vw;
    margin-bottom: 2vw;
}

.aico_why_bud_feature {
    display: flex;
    align-items: center;
    gap: 0.5vw;
    font-size: 0.95vw;
    color: #1a1a1a;
}

.aico_why_bud_feature .check_icon {
    width: 1.2vw;
    height: 1.2vw;
}

.aico_why_bud_highlight {
    background: #fff;
    border-radius: 0.8vw;
    padding: 1.5vw 2vw;
    display: inline-block;
}

.aico_why_bud_highlight p {
    font-size: 1.1vw;
    color: #444;
    margin: 0;
    line-height: 1.6;
}

.aico_why_bud_highlight span {
    color: #789165;
    font-weight: 600;
}

/* CTA Section */
.aico_cta {
    padding: 4vw 11.4vw 8vw 11.4vw;
}

.aico_cta_card {
    background: #fff;
    border-radius: 1.3vw;
    padding: 4vw;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.aico_cta_card h2 {
    font-weight: 500;
    font-size: 2vw;
    color: #1a1a1a;
    margin-bottom: 1vw;
}

.aico_cta_card > p {
    font-size: 1vw;
    color: #666;
    margin-bottom: 2vw;
    max-width: 45vw;
    margin-left: auto;
    margin-right: auto;
}

.aico_cta_btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5vw;
    background: #789165;
    color: #fff;
    padding: 1vw 2.5vw;
    border-radius: 0.5vw;
    font-size: 1vw;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.aico_cta_btn:hover {
    background: #6a8058;
    transform: translateY(-2px);
    gap: 0.8vw;
}

.aico_cta_btn svg {
    width: 1vw;
    height: 1vw;
    transition: transform 0.2s ease;
}

.aico_cta_btn:hover svg {
    transform: translateX(3px);
}

.aico_cta_note {
    font-size: 0.85vw;
    color: #999;
    margin-top: 1.5vw;
}

/* Mobile Responsive */
@media (max-width: 500px) {
    .aico_hero {
        padding: 43vw 5vw 10vw 5vw;
    }

    .aico_hero_content h1 {
        font-size: 7vw;
        max-width: 100%;
    }

    .aico_hero_content p {
        font-size: 4vw;
        max-width: 100%;
        margin-top: 4vw;
    }

    .aico_hero_cta {
        margin-top: 6vw;
        flex-direction: column;
        gap: 3vw;
    }

    .aico_btn_primary,
    .aico_btn_secondary {
        padding: 4vw 8vw;
        border-radius: 2vw;
        font-size: 4vw;
    }

    .aico_trusted {
        padding: 8vw 0;
    }

    .aico_trusted .logo_slider_title {
        font-size: 3.5vw;
        margin-bottom: 4vw;
    }

    .aico_trusted .logo_wrap {
        padding-bottom: 4vw;
    }

    .aico_logo_slider {
        margin-top: 2vw;
    }

    .aico_logo_slider img {
        height: 6vw;
        width: auto;
        max-width: none;
        padding: 2.5vw 4vw;
        border-radius: 1.5vw;
        object-fit: contain;
    }

    .aico_intro {
        padding: 5vw;
    }

    .aico_intro_card {
        border-radius: 4vw;
        padding: 6vw;
    }

    .aico_intro_card h2 {
        font-size: 5.5vw;
        margin-bottom: 4vw;
    }

    .aico_intro_card p {
        font-size: 3.5vw;
        max-width: 100%;
        margin-bottom: 3vw;
    }

    .aico_offerings {
        padding: 5vw;
    }

    .aico_offerings h2 {
        font-size: 5.5vw;
        margin-bottom: 6vw;
    }

    .aico_offering_cards {
        gap: 5vw;
    }

    .aico_offering_card {
        border-radius: 4vw;
        padding: 6vw;
        flex-direction: column !important;
        gap: 5vw;
    }

    .aico_offering_content h3 {
        font-size: 5vw;
        margin-bottom: 3vw;
    }

    .aico_offering_content p {
        font-size: 3.5vw;
    }

    .aico_offering_content ul li {
        font-size: 3.2vw;
        padding-left: 4vw;
    }

    .aico_offering_content ul li::before {
        width: 1.2vw;
        height: 1.2vw;
        top: 1.5vw;
    }

    .aico_offering_image {
        width: 100%;
        height: 70vw;
        border-radius: 3vw;
    }

    .aico_results {
        padding: 5vw;
    }

    .aico_results_card {
        border-radius: 4vw;
        padding: 6vw;
    }

    .aico_results_card h2 {
        font-size: 5.5vw;
        margin-bottom: 6vw;
    }

    .aico_results_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3vw;
    }

    .aico_result_item {
        border-radius: 3vw;
        padding: 5vw 3vw;
    }

    .aico_result_metric {
        font-size: 6vw;
        margin-bottom: 2vw;
    }

    .aico_result_label {
        font-size: 3.5vw;
        margin-bottom: 1vw;
    }

    .aico_result_desc {
        font-size: 3vw;
    }

    .aico_results_note {
        font-size: 3vw;
        margin-top: 4vw;
    }

    .aico_expertise {
        padding: 5vw;
    }

    .aico_expertise h2 {
        font-size: 5.5vw;
        margin-bottom: 6vw;
    }

    .aico_expertise_grid {
        grid-template-columns: 1fr;
        gap: 4vw;
    }

    .aico_expertise_card {
        border-radius: 4vw;
        padding: 5vw;
    }

    .aico_expertise_header {
        gap: 3vw;
        margin-bottom: 4vw;
    }

    .aico_expertise_icon {
        width: 10vw;
        height: 10vw;
        border-radius: 2.5vw;
    }

    .aico_expertise_icon svg {
        width: 5vw;
        height: 5vw;
    }

    .aico_expertise_header h3 {
        font-size: 4.5vw;
    }

    .aico_expertise_list li {
        font-size: 3.5vw;
        gap: 2vw;
        margin-bottom: 3vw;
    }

    .aico_expertise_list .check_icon {
        width: 4vw;
        height: 4vw;
        min-width: 4vw;
        margin-top: 0.5vw;
    }

    .aico_audience {
        padding: 5vw;
    }

    .aico_audience_card {
        border-radius: 4vw;
        padding: 6vw;
    }

    .aico_audience_card h2 {
        font-size: 5.5vw;
        margin-bottom: 6vw;
    }

    .aico_audience_grid {
        grid-template-columns: 1fr;
        gap: 4vw;
    }

    .aico_audience_item {
        border-radius: 4vw;
        padding: 6vw;
    }

    .aico_audience_icon {
        width: 14vw;
        height: 14vw;
        border-radius: 3vw;
        margin-bottom: 4vw;
    }

    .aico_audience_icon svg {
        width: 7vw;
        height: 7vw;
    }

    .aico_audience_item h3 {
        font-size: 4.5vw;
        margin-bottom: 2vw;
    }

    .aico_audience_item p {
        font-size: 3.5vw;
    }

    .aico_why_bud {
        padding: 5vw;
    }

    .aico_why_bud_card {
        border-radius: 4vw;
        padding: 6vw;
    }

    .aico_why_bud_card h2 {
        font-size: 5.5vw;
        margin-bottom: 4vw;
    }

    .aico_why_bud_intro {
        font-size: 3.5vw;
        max-width: 100%;
        margin-bottom: 5vw;
    }

    .aico_why_bud_features {
        gap: 3vw;
        margin-bottom: 5vw;
        flex-direction: column;
        align-items: center;
    }

    .aico_why_bud_feature {
        font-size: 3.5vw;
        gap: 2vw;
    }

    .aico_why_bud_feature .check_icon {
        width: 4.5vw;
        height: 4.5vw;
    }

    .aico_why_bud_highlight {
        border-radius: 3vw;
        padding: 4vw;
    }

    .aico_why_bud_highlight p {
        font-size: 3.5vw;
    }

    .aico_cta {
        padding: 5vw 5vw 20vw 5vw;
    }

    .aico_cta_card {
        border-radius: 4vw;
        padding: 8vw 6vw;
    }

    .aico_cta_card h2 {
        font-size: 5.5vw;
        margin-bottom: 4vw;
    }

    .aico_cta_card > p {
        font-size: 3.5vw;
        max-width: 100%;
        margin-bottom: 6vw;
    }

    .aico_cta_btn {
        padding: 4vw 8vw;
        border-radius: 2vw;
        font-size: 4vw;
        gap: 2vw;
    }

    .aico_cta_btn svg {
        width: 4vw;
        height: 4vw;
    }

    .aico_cta_note {
        font-size: 3vw;
        margin-top: 4vw;
    }
}

/* Tablet Responsive */
@media (min-width: 501px) and (max-width: 1024px) {
    .aico_hero {
        padding: 20vw 8vw 8vw 8vw;
    }

    .aico_hero_content h1 {
        font-size: 4.5vw;
        max-width: 75vw;
    }

    .aico_hero_content p {
        font-size: 2vw;
        max-width: 70vw;
    }

    .aico_btn_primary,
    .aico_btn_secondary {
        padding: 1.5vw 4vw;
        font-size: 1.8vw;
        border-radius: 1vw;
    }

    .aico_trusted {
        padding: 4vw 8vw;
    }

    .aico_trusted .logo_slider_title {
        font-size: 1.6vw;
    }

    .aico_logo_slider img {
        height: 3.5vw;
        width: auto;
        max-width: none;
        padding: 1.8vw 3vw;
        border-radius: 1vw;
        object-fit: contain;
    }

    .aico_intro,
    .aico_offerings,
    .aico_results,
    .aico_expertise,
    .aico_audience,
    .aico_why_bud {
        padding: 5vw 8vw;
    }

    .aico_cta {
        padding: 5vw 8vw 12vw 8vw;
    }

    .aico_intro_card,
    .aico_audience_card,
    .aico_cta_card {
        padding: 4vw;
    }

    .aico_intro_card h2,
    .aico_offerings h2,
    .aico_results_card h2,
    .aico_expertise h2,
    .aico_audience_card h2,
    .aico_why_bud_card h2,
    .aico_cta_card h2 {
        font-size: 3vw;
    }

    .aico_intro_card p {
        font-size: 1.6vw;
        max-width: 70vw;
    }

    .aico_offering_card {
        padding: 3vw;
    }

    .aico_offering_content h3 {
        font-size: 2.2vw;
    }

    .aico_offering_content p {
        font-size: 1.5vw;
    }

    .aico_offering_content ul li {
        font-size: 1.4vw;
    }

    .aico_offering_image {
        width: 38vw;
        height: 38vw;
    }

    .aico_results_card {
        padding: 4vw;
    }

    .aico_results_grid {
        gap: 2vw;
    }

    .aico_result_metric {
        font-size: 3.5vw;
    }

    .aico_result_label {
        font-size: 1.4vw;
    }

    .aico_result_desc {
        font-size: 1.2vw;
    }

    .aico_expertise_grid {
        gap: 2vw;
    }

    .aico_expertise_card {
        padding: 2.5vw;
    }

    .aico_expertise_icon {
        width: 3.5vw;
        height: 3.5vw;
    }

    .aico_expertise_icon svg {
        width: 1.8vw;
        height: 1.8vw;
    }

    .aico_expertise_header h3 {
        font-size: 1.8vw;
    }

    .aico_expertise_list li {
        font-size: 1.4vw;
    }

    .aico_expertise_list .check_icon {
        width: 1.6vw;
        height: 1.6vw;
        min-width: 1.6vw;
    }

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

    .aico_audience_icon {
        width: 6vw;
        height: 6vw;
    }

    .aico_audience_icon svg {
        width: 3vw;
        height: 3vw;
    }

    .aico_audience_item h3 {
        font-size: 1.8vw;
    }

    .aico_audience_item p {
        font-size: 1.3vw;
    }

    .aico_why_bud_card {
        padding: 4vw;
    }

    .aico_why_bud_intro {
        font-size: 1.6vw;
        max-width: 60vw;
    }

    .aico_why_bud_feature {
        font-size: 1.4vw;
    }

    .aico_why_bud_feature .check_icon {
        width: 1.8vw;
        height: 1.8vw;
    }

    .aico_why_bud_highlight p {
        font-size: 1.6vw;
    }

    .aico_cta_card > p {
        font-size: 1.5vw;
        max-width: 55vw;
    }

    .aico_cta_btn {
        padding: 1.5vw 4vw;
        font-size: 1.6vw;
        border-radius: 1vw;
    }

    .aico_cta_btn svg {
        width: 1.5vw;
        height: 1.5vw;
    }

    .aico_cta_note {
        font-size: 1.2vw;
    }
}
