.hero {
    background: #fff;
    padding: 150px 40px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    @media (max-width: 576px) {
        display: flex;
        flex-direction: column;
        padding: 150px 20px 40px;
    }
}
.hero-badge {
    background: #fff3e8;
    color: #fbcc07;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 2px;
    display: inline-block;
    margin-bottom: 18px;
}
.hero h1 {
    font-size: 46px;
    font-weight: 900;
    line-height: 1.1;
    color: #111;
    margin-bottom: 20px;
    letter-spacing: -1px;
    @media (max-width: 576px) {
        font-size: 32px;
    }
}
.hero h1 span {
    color: #fbcc07;
}
.hero p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}
.hero-btns {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}
.btn-primary {
    background: #fbcc07;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    border: none;
    @media (max-width: 576px) {
        padding: 10px 18px;
    }
}
.btn-secondary {
    color: #fbcc07;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.hero-visual {
    /* background: linear-gradient(135deg, #FBCC07 0%, #ff9a00 100%); */
    background: linear-gradient(
        209deg,
        rgb(253, 161, 68) 34%,
        rgb(255, 196, 0) 92%
    );
    border-radius: 12px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.stat-card {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    padding: 16px;
}
.stat-card .label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.stat-card .value {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    margin-top: 4px;
}
.stat-card .sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}
.stat-card-wide {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.stat-card-wide .value {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    margin-top: 4px;
}
.bar-wrap {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    margin-top: 8px;
}
.bar-fill {
    height: 8px;
    background: #fff;
    border-radius: 4px;
    width: 72%;
}
.stat-card-wide .sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}
.specialized {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
    @media (max-width: 576px) {
        padding: 40px 20px;
    }
}

/* SERVICES */
.services {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
    @media (max-width: 576px) {
        padding: 40px 20px;
    }
}
.trafic-into-revenue {
    padding: 30px 40px;
    max-width: 1200px;
    margin: 0 auto;
    @media (max-width: 576px) {
        padding: 40px 20px;
    }
}
.image-box {
    flex: 1;
    transform: rotate(-10deg);
    margin-top: 50px;
}

.image-box img {
    width: 100%;
    max-width: 90%;
    height: 550px;
    object-fit: cover;
    border-radius: 20px;
    transition: 0.4s ease;
}

.custom-accordion {
    flex: 1;
    border: none !important;
}

.custom-accordion-item {
    /* border-bottom: 1px solid #ddd; */
}

.custom-accordion-header {
    width: 100%;
    border: none;
    background: transparent;
    padding: 20px 0;
    text-align: left;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    width: 100%;
    p {
        margin-bottom: 0;
        width: 90%;
    }
    span {
        display: inline-block;
        width: 20px;
        height: 20px;
        line-height: 20px;
        text-align: center;
        transform-origin: 50% 50%;
        transition: transform 0.2s ease-in-out;
    }
}

.custom-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-bottom: 0;
}

.custom-accordion-content p {
    margin-bottom: 0;
    color: #666;
}
.custom-accordion-content ul {
    color: #666;
}

.custom-accordion-item.active .custom-accordion-content {
    max-height: 100%;
    margin-bottom: 20px;
}

.custom-accordion-item.active .custom-accordion-header {
    color: #fbcc07;
    span {
        transform: rotate(45deg);
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .image-box img {
        height: 350px;
    }
    .image-box {
    margin-top: 20px;
}
}
.section-eyebrow {
    font-size: 12px;
    font-weight: 700;
    color: #fbcc07;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.section-title {
    font-size: 38px;
    font-weight: 900;
    color: #111;
    line-height: 1.15;
    letter-spacing: -0.8px;
    margin-bottom: 14px;
    font-family: "Degular-bold" !important;
    @media (max-width: 576px) {
        font-size: 26px;
    }
}
.section-title span {
    color: #fbcc07;
}
.section-subtitle {
    font-size: 30px;
    font-weight: 900;
    color: #111;
    line-height: 1.15;
    letter-spacing: -0.8px;
    margin-bottom: 14px;
    font-family: "Degular-bold" !important;
    @media (max-width: 576px) {
        font-size: 26px;
    }
}
.section-subtitle span {
    color: #fbcc07;
}
.section-image-wrapper {
    width: 100%;
    height: 350px;
}
.section-image {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section-sub {
    font-size: 15px;
    color: #666;
    /* max-width: 580px; */
    line-height: 1.7;
    margin-bottom: 20px;
    @media (max-width: 576px) {
        margin-bottom: 20px;
    }
}
.section-sub2 {
    font-size: 15px;
    color: #ffffff;
    /* max-width: 580px; */
    line-height: 1.7;
    margin-bottom: 20px;
}
.content-section {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 20px;
    height: 350px;
}
.content-para {
    height: 190px;
    overflow-y: auto;
    padding-right: 10px;
}
/* Width */
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

/* Thumb */
::-webkit-scrollbar-thumb {
    background: #fbcc07;
    border-radius: 10px;
}

/* Hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.services-grid {
    /* display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px; */
        display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    @media (max-width: 576px) {
        grid-template-columns: repeat(1, 1fr);
    }
}
.service-card {
        width: 100%;
    max-width: 360px;
    border: 1.5px solid #eee;
    border-radius: 10px;
    padding: 30px 24px;
    transition: border-color 0.2s;
}
.service-card:hover {
    border-color: #fbcc07;
}
.service-icon {
    width: 48px;
    height: 48px;
    background: #fff3e8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.service-icon svg {
    width: 22px;
    height: 22px;
    color: #fbcc07;
    stroke: #fbcc07;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.service-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}
.service-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.65;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #fbcc07;
    font-size: 13px;
    font-weight: 700;
    margin-top: 14px;
    text-decoration: none;
}

/* ORANGE STRIP */
.orange-strip {
    background: #fbcc07;
    color: #fff;
    text-align: center;
    padding: 22px 40px;
}
.orange-strip p {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.3px;
    margin-bottom: 0;
}
.orange-strip span {
    background: #fff;
    color: #fbcc07;
    padding: 2px 10px;
    border-radius: 3px;
    font-weight: 900;
    margin: 0 4px;
}

/* KEY CONSIDERATIONS */
.key-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
    @media (max-width: 576px) {
        padding: 40px 20px;
    }
}
.key-grid {
    /* display: grid;
    grid-template-columns: repeat(4, 1fr); */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}
.key-card {
    width: 100%;
    max-width: 360px;
    background: #fff;
    border: 1.5px solid #eee;
    border-radius: 10px;
    padding: 26px 20px;
    border-top: 4px solid #fbcc07;
    text-decoration: none;
}
.key-num {
    font-size: 32px;
    font-weight: 900;
    color: #fbcc07;
    line-height: 1;
}
.key-card h3 {
    font-size: 15px;
    font-weight: 800;
    color: #111;
    margin: 10px 0 8px;
}
.key-card p {
    font-size: 12px;
    color: #777;
    line-height: 1.6;
}

/* CASE STUDY */
.case-section {
    background: #fbcc07;
    padding: 70px 40px;
    @media (max-width: 576px) {
        padding: 50px 20px;
    }
}
.case-section .inner {
    max-width: 1200px;
    margin: 0 auto;
}
.case-label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.case-section h2 {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.7px;
}
.case-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    @media (max-width: 576px) {
        grid-template-columns: repeat(1, 1fr);
    }
}
.case-card {
    background: rgba(0, 0, 0, 0.18);
    border-radius: 10px;
    padding: 28px;
}
.case-card .tag {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.case-card h4 {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
}
.case-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
}
.case-card li{
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
}
.case-card .result {
    margin-top: 18px;
    font-size: 28px;
    font-weight: 900;
    color: #fff;
}
.case-card .result-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}
.ready-section {
    padding-top: 50px;
}
.ready-img-wrapper {
    width: 100%;
    height: 500px;
    img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 20px;
    }
    @media (max-width: 576px) {
        height: auto;
        margin-bottom: 20px;
    }
}
.accordion-image-section{
    h3 a{
        font-size: 22px;
        font-weight: 700;
        color: inherit;
        text-decoration: none;

    }
    .accordion-image-section h3{
        font-size: 22px;
        font-weight: 700;

    }
    li{
        font-size: 1rem;
            font-family: "Plus Jakarta Sans", sans-serif !important;

    }
}