/* ---- Reset & Base ---- */
.re-wrap * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.re-wrap {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #222;
    line-height: 1.75;
    font-size: 15px;
}

.re-wrap a {
    color: #e87722;
    text-decoration: none;
}

.re-wrap a:hover {
    text-decoration: underline;
}

/* ---- Layout ---- */
.re-sec {
    padding: 52px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.re-sec-light {
   
    padding: 4px 0;
    border-top: 1px solid #f4e0cb;
    border-bottom: 1px solid #f4e0cb;
}

.re-sec-light .re-sec {
    padding-top: 52px;
    padding-bottom: 52px;
}

/* ---- Section Title ---- */
.re-title {
    text-align: center;
    margin-bottom: 48px;
}

.re-title h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.re-title h2 span {
    color: #e87722;
}

.re-title p {
    color: #555;
    font-size: .97rem;
    max-width: 680px;
    margin: 0 auto;
}

.re-title .re-line {
    display: inline-block;
    width: 55px;
    height: 4px;
    background: linear-gradient(90deg, #e87722, #f4a95e);
    border-radius: 3px;
    margin-top: 14px;
}

/* ---- Badge Pill ---- */
.re-badge {
    display: inline-block;
    background: #fff3e8;
    color: #e87722;
    border: 1px solid #f4c49a;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: .80rem;
    font-weight: 700;
    letter-spacing: .6px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

/* =============================================
   INTRO HERO BLOCK
   ============================================= */
.re-intro-block {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
}

.re-intro-block .re-text {
    flex: 1 1 360px;
}

.re-intro-block .re-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 18px;
    line-height: 1.25;
}

.re-intro-block .re-text h2 span {
    color: #e87722;
}

.re-intro-block .re-text p {
    color: #444;
    margin-bottom: 16px;
    font-size: .97rem;
}

/* Image box with decorative background */
.re-img-box {
    flex: 1 1 300px;
    text-align: center;
    position: relative;
}

.re-img-box::before {
    content: '';
    position: absolute;
    top: -18px;
    right: -18px;
    width: 100%;
    height: 100%;
    background: #fff3e8;
    border-radius: 16px;
    z-index: 0;
}

.re-img-box img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(232,119,34,.18);
}

/* Fallback decorative icon when image is missing */
.re-img-box .re-img-placeholder {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 260px;
    background: linear-gradient(135deg, #fff3e8 0%, #fde8cc 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    box-shadow: 0 8px 32px rgba(232,119,34,.12);
}

.re-img-box .re-img-placeholder span {
    font-size: 1rem;
    font-weight: 700;
    color: #e87722;
    margin-top: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =============================================
   MODULE CARDS
   ============================================= */
.re-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: center;
}

.re-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 22px;
    flex: 1 1 220px;
    max-width: 255px;
    box-shadow: 0 2px 14px rgba(0,0,0,.07);
    border-top: 4px solid #e87722;
    transition: transform .25s, box-shadow .25s;
    text-align: center;
}

.re-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 34px rgba(232,119,34,.20);
}

.re-card .rc-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff3e8, #fde8cc);
    color: #e87722;
    font-size: 1.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 2px 8px rgba(232,119,34,.15);
}

.re-card h3 {
    font-size: .97rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.re-card p {
    font-size: .88rem;
    color: #555;
    line-height: 1.65;
}

/* =============================================
   FEATURE CHIPS
   ============================================= */
.re-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.re-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1.5px solid #f4c49a;
    border-radius: 40px;
    padding: 10px 22px;
    font-size: .9rem;
    font-weight: 600;
    color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(232,119,34,.08);
    transition: background .2s, color .2s, transform .2s;
    cursor: default;
}

.re-chip:hover {
    background: #e87722;
    color: #fff;
    border-color: #e87722;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(232,119,34,.22);
}

.re-chip:hover .chip-icon {
    filter: brightness(10);
}

.chip-icon {
    font-size: 1.1rem;
}

/* =============================================
   SERVICES CARDS
   ============================================= */
.re-services {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.re-svc {
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    flex: 1 1 300px;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    border-left: 5px solid #e87722;
    transition: box-shadow .25s, transform .25s;
}

.re-svc:hover {
    box-shadow: 0 8px 26px rgba(232,119,34,.18);
    transform: translateY(-4px);
}

.re-svc .svc-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.re-svc .svc-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, #fff3e8, #fde8cc);
    color: #e87722;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(232,119,34,.15);
}

.re-svc h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.re-svc p {
    font-size: .88rem;
    color: #555;
    line-height: 1.7;
}

/* =============================================
   STATS BAR
   ============================================= */
.re-stats {
    background: linear-gradient(135deg, #e87722 0%, #d4621a 100%);
    padding: 56px 20px;
    position: relative;
    overflow: hidden;
}

.re-stats::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 260px;
    height: 260px;
    background: rgba(255,255,255,.07);
    border-radius: 50%;
}

.re-stats::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
}

.re-stats-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.re-stat {
    flex: 1 1 180px;
    text-align: center;
    padding: 20px 16px;
    border-right: 1px solid rgba(255,255,255,.25);
}

.re-stat:last-child {
    border-right: none;
}

.re-stat h3 {
    font-size: 2.6rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.re-stat p {
    font-size: .92rem;
    color: rgba(255,255,255,.90);
    font-weight: 500;
}

/* =============================================
   WHY US SECTION
   ============================================= */
.re-why {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: center;
}

.re-why-item {
    background: #fff;
    border-radius: 12px;
    padding: 28px 22px;
    flex: 1 1 200px;
    max-width: 245px;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    text-align: center;
    transition: transform .25s, box-shadow .25s;
    border-bottom: 3px solid transparent;
}

.re-why-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(232,119,34,.15);
    border-bottom-color: #e87722;
}

.re-why-item .wi-icon {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff3e8, #fde8cc);
    color: #e87722;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 3px 10px rgba(232,119,34,.18);
}

.re-why-item h3 {
    font-size: .97rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.re-why-item p {
    font-size: .86rem;
    color: #555;
    line-height: 1.65;
}

/* =============================================
   CTA BOX
   ============================================= */
.re-cta-box {
    background: linear-gradient(135deg, #fff 60%, #fff8f1 100%);
    border: 2px solid #f4c49a;
    border-radius: 16px;
    padding: 56px 36px;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
    box-shadow: 0 4px 24px rgba(232,119,34,.10);
}

.re-cta-box h2 {
    font-size: 1.85rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 14px;
    line-height: 1.3;
}

.re-cta-box h2 span {
    color: #e87722;
}

.re-cta-box p {
    color: #555;
    margin-bottom: 28px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    font-size: .97rem;
}

/* =============================================
   BUTTONS
   ============================================= */
.re-btn-main {
    display: inline-block;
    background: linear-gradient(135deg, #e87722, #cf6610);
    color: #fff !important;
    padding: 14px 36px;
    border-radius: 6px;
    font-weight: 700;
    font-size: .97rem;
    margin: 6px;
    text-decoration: none !important;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 14px rgba(232,119,34,.35);
    letter-spacing: .3px;
}

.re-btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(232,119,34,.45);
}

.re-btn-ghost {
    display: inline-block;
    border: 2px solid #e87722;
    color: #e87722 !important;
    padding: 12px 34px;
    border-radius: 6px;
    font-weight: 700;
    font-size: .97rem;
    margin: 6px;
    text-decoration: none !important;
    transition: all .2s;
}

.re-btn-ghost:hover {
    background: #e87722;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(232,119,34,.30);
    transform: translateY(-2px);
}

/* =============================================
   PROCESS / STEPS SECTION (new)
   ============================================= */
.re-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
    counter-reset: step-counter;
    position: relative;
}

.re-step {
    flex: 1 1 180px;
    max-width: 220px;
    text-align: center;
    padding: 20px 16px;
    position: relative;
}

.re-step::after {
    content: '→';
    position: absolute;
    right: -14px;
    top: 36px;
    font-size: 1.4rem;
    color: #e87722;
    opacity: .5;
}

.re-step:last-child::after {
    display: none;
}

.re-step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #e87722;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 4px 12px rgba(232,119,34,.30);
}

.re-step h4 {
    font-size: .93rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.re-step p {
    font-size: .83rem;
    color: #666;
}

/* =============================================
   FAQ ACCORDION (new)
   ============================================= */
.re-faq {
    max-width: 780px;
    margin: 0 auto;
}

.re-faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    overflow: hidden;
    border-left: 4px solid #e87722;
}

.re-faq-q {
    padding: 18px 22px;
    font-weight: 700;
    font-size: .95rem;
    color: #1a1a1a;
    cursor: pointer;
}

.re-faq-q::before {
    content: '▶ ';
    color: #e87722;
    font-size: .8rem;
    margin-right: 6px;
}

.re-faq-a {
    padding: 0 22px 18px 36px;
    font-size: .88rem;
    color: #555;
    line-height: 1.7;
}

/* =============================================
   INDUSTRIES / USE CASES ROW (new)
   ============================================= */
.re-industries {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.re-industry-item {
    background: #fff;
    border: 1.5px solid #f0dcc8;
    border-radius: 10px;
    padding: 18px 20px;
    flex: 1 1 140px;
    max-width: 170px;
    text-align: center;
    transition: background .2s, border-color .2s, transform .2s;
}

.re-industry-item:hover {
    background: #e87722;
    border-color: #e87722;
    transform: translateY(-4px);
}

.re-industry-item:hover .ri-icon,
.re-industry-item:hover span {
    color: #fff;
}

.ri-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

.re-industry-item span {
    font-size: .85rem;
    font-weight: 600;
    color: #333;
}

/* =============================================
   TESTIMONIAL / TRUST BAR (new)
   ============================================= */
.re-trust-bar {
    background: #1a1a1a;
    padding: 28px 20px;
    text-align: center;
}

.re-trust-bar p {
    color: rgba(255,255,255,.75);
    font-size: .9rem;
    margin-bottom: 14px;
    font-weight: 500;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.re-trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    align-items: center;
}

.re-trust-logos span {
    color: rgba(255,255,255,.55);
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,.15);
    padding: 6px 16px;
    border-radius: 4px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
    .re-sec {
        padding: 40px 16px;
    }

    .re-title h2 {
        font-size: 1.55rem;
    }

    .re-intro-block .re-text h2 {
        font-size: 1.55rem;
    }

    .re-img-box::before {
        display: none;
    }

    .re-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.25);
    }

    .re-stat:last-child {
        border-bottom: none;
    }

    .re-stats-inner {
        flex-direction: column;
    }

    .re-cta-box {
        padding: 36px 20px;
    }

    .re-cta-box h2 {
        font-size: 1.4rem;
    }

    .re-step::after {
        display: none;
    }
}

@media (max-width: 560px) {
    .re-card,
    .re-svc,
    .re-why-item {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .re-title h2 {
        font-size: 1.35rem;
    }

    .re-intro-block .re-text h2 {
        font-size: 1.3rem;
    }

    .re-btn-main,
    .re-btn-ghost {
        display: block;
        margin: 8px auto;
        text-align: center;
        max-width: 280px;
    }
}
