/* =============================================================
   Industrial Waste Exchange Marketplace — Page Scoped Styles
   Scope: .iwe-page  (only loaded for this template)
   Tokens reused from variable.css. Bootstrap 5 grid utilities
   and theme typography classes (.font-45, .text-color-* etc.)
   are still used; this file adds bespoke visuals: gradients,
   patterns, shines, hover lifts, and reveal animations.
============================================================= */

.iwe-page { color: var(--text-black); }

/* ---------- shared bits ---------- */
.iwe-text-gradient {
    background: linear-gradient(95deg, #ec2024 0%, #ff7a3d 38%, #34c759 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.iwe-eyebrow {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    border: 1px solid var(--border-light-white-three);
    border-radius: 999px;
    background: var(--light-white-bg-eleven);
    backdrop-filter: blur(8px);
}
.iwe-eyebrow__dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #34c759;
    box-shadow: 0 0 0 4px rgba(52,199,89,.18);
    animation: iwePulse 2s ease-in-out infinite;
}
@keyframes iwePulse {
    0%,100% { box-shadow: 0 0 0 4px rgba(52,199,89,.18); }
    50%     { box-shadow: 0 0 0 9px rgba(52,199,89,0);   }
}

.iwe-btn {
    border: 0;
    border-radius: 12px;
    padding: 14px 26px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    cursor: pointer;
}
.iwe-btn--primary {
    color: #fff;
    background: linear-gradient(95deg, #ec2024 0%, #ff5a3d 100%);
    box-shadow: 0 12px 32px -12px rgba(236,32,36,.6);
}
.iwe-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -12px rgba(236,32,36,.75);
}
.iwe-btn--lg { padding: 16px 32px; font-size: 16px; }

.iwe-btn--ghost {
    color: #fff;
    border: 1px solid var(--border-light-white-three);
    background: var(--light-white-bg-eleven);
    padding: 14px 22px;
}
.iwe-btn--ghost:hover {
    background: var(--light-white-bg-tweleve);
    color: #fff;
}
.iwe-btn__arrow { transition: transform .25s ease; display: inline-block; }
.iwe-btn--ghost:hover .iwe-btn__arrow { transform: translateX(4px); }

/* =============================================================
   HERO
============================================================= */
.iwe-hero {
    padding: 120px 0 100px;
    background: radial-gradient(120% 80% at 100% 0%, #1a1a1a 0%, #000 60%);
    z-index: 1;
}
.iwe-hero .z-2 { z-index: 2; }

/* grid pattern */
.iwe-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 35%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 35%, transparent 80%);
    pointer-events: none;
}
.iwe-hero__noise {
    position: absolute; inset: 0; pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    mix-blend-mode: overlay; opacity: .35;
}
.iwe-hero__glow {
    position: absolute;
    width: 620px; height: 620px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .35;
    pointer-events: none;
    animation: iweFloat 14s ease-in-out infinite;
}
.iwe-hero__glow--red   { background: #ec2024; top: -160px; right: -120px; }
.iwe-hero__glow--green { background: #34c759; bottom: -200px; left: -160px; animation-delay: -7s; }
@keyframes iweFloat {
    0%,100% { transform: translate(0,0); }
    50%     { transform: translate(30px,-30px); }
}

.iwe-hero__title {
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -.02em;
}
.iwe-hero__lead { font-size: 17px; line-height: 1.7; max-width: 620px; }

.iwe-hero__stats { color: #fff; }
.iwe-hero__stats li { display: flex; flex-direction: column; gap: 4px; }
.iwe-hero__stats strong { font-size: 28px; font-weight: 800; line-height: 1; }
.iwe-hero__stats span  { font-size: 13px; opacity: .65; letter-spacing: .03em; }

/* hero card stack */
.iwe-hero-card-stack {
    position: relative;
    height: 460px;
    perspective: 1200px;
}
.iwe-hero-card {
    position: absolute;
    width: 320px;
    padding: 22px;
    border-radius: 18px;
    color: #fff;
    background:
        linear-gradient(134.86deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.02) 100%),
        radial-gradient(141.42% 141.42% at 100% 0%, rgba(229,9,20,.18) 0%, rgba(229,9,20,0) 55%);
    border: 1px solid var(--border-light-white-three);
    backdrop-filter: blur(14px);
    box-shadow: 0 30px 60px -30px rgba(0,0,0,.6);
    transition: transform .4s ease, box-shadow .4s ease;
}
.iwe-hero-card h3 {
    font-size: 20px; font-weight: 700; margin: 14px 0 6px;
}
.iwe-hero-card p {
    font-size: 14px; opacity: .7; margin: 0 0 14px;
}
.iwe-hero-card__head {
    display: flex; align-items: center; justify-content: space-between;
}
.iwe-hero-card__bid {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 14px;
    border-top: 1px dashed rgba(255,255,255,.18);
}
.iwe-hero-card__bid span { font-size: 12px; opacity: .6; text-transform: uppercase; letter-spacing: .1em; }
.iwe-hero-card__bid strong { font-size: 18px; font-weight: 700; }

.iwe-hero-card--a { top: 10px;  right: 0;   transform: rotate(-3deg); animation: iweCardA 7s ease-in-out infinite; }
.iwe-hero-card--b { top: 160px; right: 60px;transform: rotate(2deg);  animation: iweCardB 8s ease-in-out infinite; z-index: 2; }
.iwe-hero-card--c { top: 310px; right: 10px;transform: rotate(-2deg); animation: iweCardC 9s ease-in-out infinite; }
@keyframes iweCardA { 0%,100% { transform: rotate(-3deg) translateY(0); } 50% { transform: rotate(-3deg) translateY(-10px); } }
@keyframes iweCardB { 0%,100% { transform: rotate(2deg)  translateY(0); } 50% { transform: rotate(2deg)  translateY(-12px); } }
@keyframes iweCardC { 0%,100% { transform: rotate(-2deg) translateY(0); } 50% { transform: rotate(-2deg) translateY(-8px);  } }

.iwe-tag {
    display: inline-block;
    font-size: 11px; font-weight: 700;
    letter-spacing: .12em;
    padding: 4px 10px;
    border-radius: 6px;
}
.iwe-tag--green { background: rgba(52,199,89,.18); color: #5eea88; }
.iwe-tag--red   { background: rgba(236,32,36,.2);  color: #ff8d8e; }
.iwe-tag--blue  { background: rgba(0,136,255,.2);  color: #69b8ff; }

.iwe-pulse {
    width: 10px; height: 10px; border-radius: 50%;
    background: #34c759;
    box-shadow: 0 0 0 4px rgba(52,199,89,.25);
    animation: iwePulse 1.6s ease-in-out infinite;
}

/* =============================================================
   TRADING MODELS
============================================================= */
.iwe-models { padding: 100px 0; background: #fff; }
.iwe-models .heading-row { margin-bottom: 60px; }

.iwe-model-card {
    position: relative;
    padding: 36px 30px 32px;
    background: #fff;
    border: 1px solid var(--border-grey-three);
    border-radius: 20px;
    height: 100%;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.iwe-model-card::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, #ec2024, #34c759, #007AFF);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    opacity: 0; transition: opacity .35s ease;
    pointer-events: none;
}
.iwe-model-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px -28px rgba(17,17,17,.25);
    border-color: transparent;
}
.iwe-model-card:hover::before { opacity: 1; }

.iwe-model-card__num {
    position: absolute;
    top: 24px; right: 26px;
    font-size: 56px; font-weight: 900;
    line-height: 1;
    background: linear-gradient(180deg, rgba(17,17,17,.08), rgba(17,17,17,0));
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    transition: background .35s ease;
}
.iwe-model-card:hover .iwe-model-card__num {
    background: linear-gradient(180deg, rgba(236,32,36,.5), rgba(236,32,36,0));
    -webkit-background-clip: text; background-clip: text;
}

.iwe-model-card__icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(236,32,36,.1), rgba(52,199,89,.08));
    color: #ec2024;
    margin-bottom: 22px;
    transition: transform .35s ease;
}
.iwe-model-card__icon svg { width: 28px; height: 28px; }
.iwe-model-card:hover .iwe-model-card__icon { transform: rotate(-6deg) scale(1.05); }

.iwe-model-card__title {
    font-size: 22px; font-weight: 700; color: var(--text-black);
    margin: 0 0 10px;
}
.iwe-model-card__desc {
    font-size: 15px; line-height: 1.7;
    color: var(--text-black-two);
    margin: 0;
}

.iwe-model-card__shine {
    position: absolute;
    top: -60%; left: -40%;
    width: 60%; height: 220%;
    background: linear-gradient(115deg, transparent 30%, rgba(236,32,36,.08) 50%, transparent 70%);
    transform: translateX(-120%);
    transition: transform .9s ease;
    pointer-events: none;
}
.iwe-model-card:hover .iwe-model-card__shine { transform: translateX(220%); }

/* =============================================================
   CTA BANDS
============================================================= */
.iwe-cta-band { padding: 80px 0; }
.iwe-cta-band__inner {
    position: relative;
    border-radius: 28px;
    padding: 56px 48px;
    overflow: hidden;
}
.iwe-cta-band__inner--center { padding: 70px 48px; }

.iwe-cta-band--dark .iwe-cta-band__inner {
    background: linear-gradient(135deg, #0c0c0c 0%, #1a0a0b 65%, #2a0608 100%);
    color: #fff;
}
.iwe-cta-band--gradient .iwe-cta-band__inner {
    background:
        linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.25)),
        linear-gradient(120deg, #ec2024 0%, #ff5a3d 45%, #34c759 100%);
    color: #fff;
}
.iwe-cta-band--light .iwe-cta-band__inner--light {
    background:
        radial-gradient(120% 100% at 0% 0%, rgba(236,32,36,.12) 0%, rgba(255,255,255,0) 60%),
        radial-gradient(120% 100% at 100% 100%, rgba(52,199,89,.12) 0%, rgba(255,255,255,0) 60%),
        #fff;
    border: 1px solid var(--border-grey-three);
    color: var(--text-black);
}

.iwe-cta-band__pattern {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(circle at 80% 30%, #000 0%, transparent 60%);
    -webkit-mask-image: radial-gradient(circle at 80% 30%, #000 0%, transparent 60%);
    pointer-events: none;
}
.iwe-cta-band__pattern--light {
    background-image:
        linear-gradient(rgba(17,17,17,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17,17,17,.05) 1px, transparent 1px);
}

.iwe-cta-band h2 { font-size: clamp(26px, 3.4vw, 38px); line-height: 1.25; }

/* =============================================================
   WASTE TYPES — chip grid with conveyor reveal
============================================================= */
.iwe-waste-types { padding: 100px 0; background: var(--grey-bg-thirteen); }
.iwe-waste-types .heading-row { margin-bottom: 50px; }

.iwe-waste-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
}
.iwe-waste-chip {
    display: flex; align-items: center; gap: 14px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--border-grey-three);
    border-radius: 14px;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}
.iwe-waste-chip::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(236,32,36,.05), rgba(52,199,89,.05));
    opacity: 0; transition: opacity .3s ease;
}
.iwe-waste-chip:hover {
    transform: translateY(-3px);
    border-color: var(--border-light-red);
    box-shadow: 0 16px 32px -20px rgba(236,32,36,.4);
}
.iwe-waste-chip:hover::after { opacity: 1; }

.iwe-waste-chip__icon {
    flex: 0 0 40px;
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(236,32,36,.12), rgba(52,199,89,.1));
    color: #ec2024;
    font-size: 18px;
    transition: transform .3s ease;
    position: relative; z-index: 1;
}
.iwe-waste-chip:hover .iwe-waste-chip__icon { transform: rotate(-8deg) scale(1.08); }

.iwe-waste-chip__label {
    font-size: 15px; font-weight: 600;
    color: var(--text-black);
    position: relative; z-index: 1;
}

/* =============================================================
   ROLES (Seller / Buyer / Admin tabbed)
============================================================= */
.iwe-roles {
    position: relative;
    padding: 110px 0;
    color: #fff;
    overflow: hidden;
}
.iwe-roles__pattern {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 35%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 35%, transparent 80%);
    pointer-events: none;
}
.iwe-roles .heading-row { margin-bottom: 40px; }

.iwe-role-tabs {
    display: flex; flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 50px;
}
.iwe-role-tab {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 14px 24px;
    border-radius: 14px;
    border: 1px solid var(--border-light-white-three);
    background: var(--light-white-bg-eleven);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    backdrop-filter: blur(6px);
}
.iwe-role-tab__num {
    font-size: 12px;
    color: rgba(255,255,255,.55);
    font-weight: 700;
    letter-spacing: .1em;
}
.iwe-role-tab__label { font-size: 16px; }
.iwe-role-tab:hover {
    border-color: var(--border-light-white-five);
    background: var(--light-white-bg-tweleve);
}
.iwe-role-tab.is-active {
    background: linear-gradient(95deg, #ec2024 0%, #ff5a3d 100%);
    border-color: transparent;
    box-shadow: 0 16px 32px -16px rgba(236,32,36,.6);
}
.iwe-role-tab.is-active .iwe-role-tab__num { color: rgba(255,255,255,.85); }

.iwe-role-panel { display: none; animation: iweFadeIn .4s ease both; }
.iwe-role-panel.is-active { display: block; }
@keyframes iweFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.iwe-role-feature {
    position: relative;
    padding: 26px 22px 24px;
    border-radius: 16px;
    background: var(--light-white-bg-eleven);
    border: 1px solid var(--border-light-white-three);
    height: 100%;
    transition: transform .3s ease, background .3s ease, border-color .3s ease;
    overflow: hidden;
}
.iwe-role-feature::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #ec2024, #34c759);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .35s ease;
}
.iwe-role-feature:hover {
    transform: translateY(-4px);
    background: var(--light-white-bg-tweleve);
    border-color: var(--border-light-white-five);
}
.iwe-role-feature:hover::before { transform: scaleY(1); }

.iwe-role-feature__num {
    font-size: 12px; font-weight: 700; letter-spacing: .15em;
    color: rgba(255,255,255,.5);
}
.iwe-role-feature h4 {
    font-size: 18px; font-weight: 700; color: #fff;
    margin: 10px 0 8px;
}
.iwe-role-feature p {
    font-size: 14px; line-height: 1.7;
    color: rgba(255,255,255,.7);
    margin: 0;
}

/* =============================================================
   STANDOUT FEATURES
============================================================= */
.iwe-standout { padding: 100px 0; background: #fff; }
.iwe-standout .heading-row { margin-bottom: 60px; }

.iwe-standout-card {
    position: relative;
    padding: 30px 26px;
    background: #fff;
    border: 1px solid var(--border-grey-three);
    border-radius: 18px;
    height: 100%;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
}
.iwe-standout-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px -22px rgba(17,17,17,.22);
}
.iwe-standout-card__rank {
    display: inline-block;
    font-size: 13px; font-weight: 800;
    letter-spacing: .15em;
    padding: 6px 12px;
    border-radius: 999px;
    background: linear-gradient(95deg, rgba(236,32,36,.1), rgba(52,199,89,.1));
    color: #ec2024;
    margin-bottom: 16px;
}
.iwe-standout-card h3 {
    font-size: 19px; font-weight: 700; color: var(--text-black);
    margin: 0 0 10px;
}
.iwe-standout-card p {
    font-size: 14px; line-height: 1.7;
    color: var(--text-black-two);
    margin: 0;
}
.iwe-standout-card__edge {
    position: absolute; inset: auto -40% -40% auto;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236,32,36,.18), rgba(236,32,36,0) 60%);
    opacity: 0;
    transition: opacity .4s ease;
}
.iwe-standout-card:hover .iwe-standout-card__edge { opacity: 1; }

/* =============================================================
   REVENUE MODELS
============================================================= */
.iwe-revenue { padding: 100px 0; background: var(--grey-bg-thirteen); }
.iwe-revenue .heading-row { margin-bottom: 60px; }

.iwe-revenue-card {
    position: relative;
    padding: 36px 30px;
    height: 100%;
    background: #fff;
    border-radius: 20px;
    border: 1px solid transparent;
    background-clip: padding-box;
    transition: transform .35s ease, box-shadow .35s ease;
    overflow: hidden;
}
.iwe-revenue-card::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(236,32,36,.45), rgba(52,199,89,.4), rgba(0,136,255,.3));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    opacity: .35; transition: opacity .35s ease;
}
.iwe-revenue-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -28px rgba(17,17,17,.28); }
.iwe-revenue-card:hover::before { opacity: 1; }

.iwe-revenue-card__index {
    display: inline-flex; align-items: center; justify-content: center;
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ec2024, #ff5a3d);
    color: #fff;
    margin-bottom: 22px;
    box-shadow: 0 14px 28px -14px rgba(236,32,36,.6);
}
.iwe-revenue-card__index span { font-size: 22px; font-weight: 800; }

.iwe-revenue-card h3 {
    font-size: 20px; font-weight: 700; color: var(--text-black);
    margin: 0 0 10px;
}
.iwe-revenue-card p {
    font-size: 15px; line-height: 1.7;
    color: var(--text-black-two);
    margin: 0;
}

/* =============================================================
   PROCESS (timeline / numbered steps)
============================================================= */
.iwe-process {
    position: relative;
    padding: 110px 0;
    color: #fff;
    overflow: hidden;
}
.iwe-process__lines {
    position: absolute; inset: 0;
    background:
        radial-gradient(60% 80% at 50% 0%, rgba(236,32,36,.15), transparent 70%),
        repeating-linear-gradient(90deg, transparent 0 80px, rgba(255,255,255,.04) 80px 81px);
    pointer-events: none;
}
.iwe-process .heading-row { margin-bottom: 60px; }

.iwe-process-step {
    position: relative;
    padding: 28px 26px;
    border-radius: 18px;
    background: var(--light-white-bg-eleven);
    border: 1px solid var(--border-light-white-three);
    height: 100%;
    transition: transform .35s ease, background .35s ease, border-color .35s ease;
}
.iwe-process-step:hover {
    transform: translateY(-6px);
    background: var(--light-white-bg-tweleve);
    border-color: var(--border-light-white-five);
}
.iwe-process-step__head {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 18px;
}
.iwe-process-step__num {
    font-size: 28px; font-weight: 900; line-height: 1;
    color: transparent;
    background: linear-gradient(180deg, #ec2024, #ff8a3d);
    -webkit-background-clip: text; background-clip: text;
}
.iwe-process-step__bar {
    flex: 1; height: 1px;
    background: linear-gradient(90deg, rgba(236,32,36,.6), transparent);
}
.iwe-process-step h3 {
    font-size: 18px; font-weight: 700; color: #fff;
    margin: 0 0 8px;
}
.iwe-process-step p {
    font-size: 14px; line-height: 1.7;
    color: rgba(255,255,255,.7);
    margin: 0;
}

/* =============================================================
   SETUP FOR SUCCESS (Consultation / Marketing)
============================================================= */
.iwe-setup { padding: 100px 0; background: #fff; }
.iwe-setup .heading-row { margin-bottom: 60px; }

.iwe-setup-card {
    position: relative;
    padding: 40px 36px;
    border-radius: 24px;
    height: 100%;
    background:
        radial-gradient(120% 100% at 0% 0%, rgba(236,32,36,.06), transparent 55%),
        #fff;
    border: 1px solid var(--border-grey-three);
    transition: transform .35s ease, box-shadow .35s ease;
    overflow: hidden;
}
.iwe-setup-card--alt {
    background:
        radial-gradient(120% 100% at 100% 0%, rgba(52,199,89,.08), transparent 55%),
        #fff;
}
.iwe-setup-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 56px -28px rgba(17,17,17,.22);
}
.iwe-setup-card__icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, #ec2024, #ff5a3d);
    color: #fff;
    margin-bottom: 24px;
    box-shadow: 0 16px 32px -14px rgba(236,32,36,.5);
}
.iwe-setup-card--alt .iwe-setup-card__icon {
    background: linear-gradient(135deg, #34c759, #1ea84a);
    box-shadow: 0 16px 32px -14px rgba(52,199,89,.5);
}
.iwe-setup-card__icon svg { width: 30px; height: 30px; }
.iwe-setup-card h3 {
    font-size: 24px; font-weight: 700; color: var(--text-black);
    margin: 0 0 12px;
}
.iwe-setup-card p {
    font-size: 15px; line-height: 1.75;
    color: var(--text-black-two); margin: 0;
}

/* =============================================================
   WHY CHOOSE
============================================================= */
.iwe-why { padding: 100px 0; background: var(--grey-bg-thirteen); }
.iwe-why .heading-row { margin-bottom: 60px; }

.iwe-why-card {
    position: relative;
    padding: 34px 30px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--border-grey-three);
    height: 100%;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    overflow: hidden;
}
.iwe-why-card::after {
    content: '';
    position: absolute; right: -40px; top: -40px;
    width: 140px; height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(236,32,36,.08), rgba(52,199,89,.08));
    transition: transform .5s ease;
}
.iwe-why-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-light-red);
    box-shadow: 0 24px 50px -28px rgba(236,32,36,.3);
}
.iwe-why-card:hover::after { transform: scale(1.5); }

.iwe-why-card__num {
    position: relative; z-index: 1;
    width: 52px; height: 52px;
    border-radius: 14px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, #ec2024, #ff5a3d);
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 14px 28px -16px rgba(236,32,36,.6);
}
.iwe-why-card__num span { font-size: 18px; font-weight: 800; }
.iwe-why-card h3 {
    position: relative; z-index: 1;
    font-size: 20px; font-weight: 700; color: var(--text-black);
    margin: 0 0 10px;
}
.iwe-why-card p {
    position: relative; z-index: 1;
    font-size: 15px; line-height: 1.7;
    color: var(--text-black-two);
    margin: 0;
}

/* =============================================================
   FAQ
============================================================= */
.iwe-faq { padding: 100px 0; background: #fff; }
.iwe-faq .heading-row { margin-bottom: 50px; }

.iwe-faq-accordion .iwe-faq-item {
    background: #fff;
    border: 1px solid var(--border-grey-three);
    border-radius: 16px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color .3s ease, box-shadow .3s ease;
}
.iwe-faq-accordion .iwe-faq-item:hover {
    border-color: var(--border-light-red);
    box-shadow: 0 12px 28px -22px rgba(236,32,36,.4);
}
.iwe-faq-accordion .accordion-button {
    padding: 22px 26px;
    background: #fff;
    color: var(--text-black);
    font-size: 17px;
    font-weight: 600;
    display: flex; align-items: flex-start; gap: 16px;
}
.iwe-faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(95deg, rgba(236,32,36,.06), rgba(52,199,89,.04));
    color: var(--text-black);
}
.iwe-faq-accordion .accordion-button:focus { box-shadow: none; }
.iwe-faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ec2024'%3E%3Cpath d='M8 12L1.5 5.5l1.4-1.4L8 9.2l5.1-5.1 1.4 1.4z'/%3E%3C/svg%3E");
    flex-shrink: 0;
}
.iwe-faq-item__num {
    flex-shrink: 0;
    font-size: 13px; font-weight: 800; letter-spacing: .1em;
    color: #ec2024;
    background: rgba(236,32,36,.1);
    padding: 6px 10px;
    border-radius: 8px;
    line-height: 1;
}
.iwe-faq-item__q { flex: 1; }
.iwe-faq-accordion .accordion-body {
    padding: 4px 26px 24px 26px;
    background: #fff;
}

/* =============================================================
   INTERNAL LINKS
============================================================= */
.iwe-internal-links { padding: 100px 0; background: var(--grey-bg-thirteen); }
.iwe-internal-links .internal-link-box {
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    border: 1px solid var(--border-grey-three);
}
.iwe-internal-links .internal-link-box:hover {
    transform: translateY(-4px);
    border-color: var(--border-light-red);
    box-shadow: 0 18px 40px -24px rgba(236,32,36,.35);
}

/* =============================================================
   RESPONSIVE
============================================================= */
@media (max-width: 1199.98px) {
    .iwe-hero-card-stack { height: 480px; transform: scale(.92); transform-origin: top right; }
}
@media (max-width: 991.98px) {
    .iwe-hero { padding: 90px 0 80px; }
    .iwe-hero-card-stack { height: auto; display: flex; flex-direction: column; gap: 16px; align-items: center; padding-top: 30px; }
    .iwe-hero-card { position: static; width: 100%; max-width: 400px; transform: none !important; animation: none !important; }
    .iwe-cta-band__inner { padding: 44px 32px; }
    .iwe-models, .iwe-waste-types, .iwe-standout, .iwe-revenue, .iwe-setup, .iwe-why, .iwe-faq, .iwe-internal-links { padding: 80px 0; }
    .iwe-roles, .iwe-process { padding: 90px 0; }
}
@media (max-width: 767.98px) {
    .iwe-hero__stats { gap: 24px; }
    .iwe-hero__stats strong { font-size: 24px; }
    .iwe-cta-band { padding: 60px 0; }
    .iwe-cta-band__inner { padding: 36px 24px; }
    .iwe-cta-band h2 { font-size: 24px; line-height: 1.3; }
    .iwe-models, .iwe-waste-types, .iwe-standout, .iwe-revenue, .iwe-setup, .iwe-why, .iwe-faq, .iwe-internal-links { padding: 64px 0; }
    .iwe-roles, .iwe-process { padding: 72px 0; }
    .iwe-roles .heading-row, .iwe-process .heading-row,
    .iwe-models .heading-row, .iwe-standout .heading-row,
    .iwe-revenue .heading-row, .iwe-setup .heading-row,
    .iwe-why .heading-row, .iwe-waste-types .heading-row,
    .iwe-faq .heading-row { margin-bottom: 40px; }
    .iwe-page h2 { font-size: 28px !important; line-height: 1.25 !important; }
    .iwe-role-tab { padding: 12px 18px; font-size: 14px; }
    .iwe-role-tab__label { font-size: 14px; }
    .iwe-waste-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .iwe-waste-chip { padding: 14px; }
    .iwe-waste-chip__label { font-size: 13px; }
    .iwe-faq-accordion .accordion-button { padding: 18px 20px; font-size: 15px; gap: 12px; }
}
@media (max-width: 480px) {
    .iwe-hero__title { font-size: 30px; }
    .iwe-waste-grid { grid-template-columns: 1fr; }
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .iwe-hero__glow, .iwe-hero-card, .iwe-eyebrow__dot, .iwe-pulse,
    .iwe-model-card__shine, .iwe-role-panel { animation: none !important; transition: none !important; }
}
