/* ============================================================
   INDUSTRY LEADERS PAGE — UNIQUE DESIGN SYSTEM (il- prefix)
   Organic blob hero, dual-direction logo marquee, feature grid,
   dark shaped CTA. Green accent, varied decorative shapes.
   ============================================================ */

:root {
    --il-g-900: #06281C;
    --il-g-800: #0A3B29;
    --il-g-700: #0E5A3B;
    --il-g-600: #128F5C;
    --il-g-500: #17B26A;
    --il-g-400: #33D687;
    --il-g-300: #7CEBB2;
    --il-g-200: #BFF6DA;
    --il-g-100: #EDFDF5;
    --il-ink: var(--tf-black, #0A0A0A);
    --il-grey: var(--tf-grey, #7A8580);
    --il-line: rgba(10, 10, 10, .09);
    --il-radius: 22px;
    --il-radius-sm: 14px;
    --il-ease: cubic-bezier(.4, 0, .2, 1);
}

.il-page { overflow-x: hidden; }

/* ============================================================
   0. TOP BANNER — il-banner (breadcrumb hero, site-wide pattern)
   ============================================================ */
.il-banner {
    position: relative;
    padding: 150px 0 70px;
    background: linear-gradient(150deg, var(--il-g-900) 0%, #0A0A0A 70%);
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}

.il-banner__panel {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(560px 320px at 90% -10%, rgba(23, 178, 106, .30), transparent 70%),
        radial-gradient(420px 260px at 6% 120%, rgba(51, 214, 135, .16), transparent 70%);
    z-index: -2;
}

.il-banner__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 42px 42px;
    -webkit-mask-image: radial-gradient(circle at 80% 0%, #000 0%, transparent 65%);
            mask-image: radial-gradient(circle at 80% 0%, #000 0%, transparent 65%);
    z-index: -1;
}

.il-banner__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    z-index: -1;
}
.il-banner__orb--1 { width: 160px; height: 160px; right: 8%; top: -40px; background: rgba(51, 214, 135, .22); }
.il-banner__orb--2 { width: 90px; height: 90px; left: 6%; bottom: -20px; background: rgba(23, 178, 106, .18); }

.il-banner__crumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 22px;
    opacity: 0;
    animation: ilFadeUp .7s var(--il-ease) forwards;
}
.il-banner__crumb a { color: rgba(255, 255, 255, .8); text-decoration: none; transition: color .25s; }
.il-banner__crumb a:hover { color: var(--il-g-400); }
.il-banner__crumb span { color: var(--il-g-400); }
.il-banner__crumb-sep { color: rgba(255, 255, 255, .3); }

.il-banner__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--il-g-400);
    background: rgba(23, 178, 106, .1);
    border: 1px solid rgba(23, 178, 106, .32);
    padding: 7px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
    opacity: 0;
    animation: ilFadeUp .7s var(--il-ease) .1s forwards;
}

.il-banner__title {
    font-size: 45px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 14px;
    opacity: 0;
    animation: ilFadeUp .7s var(--il-ease) .18s forwards;
}
.il-banner__title span { color: var(--il-g-400); }

.il-banner__sub {
    max-width: 620px;
    color: rgba(255, 255, 255, .62);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    opacity: 0;
    animation: ilFadeUp .7s var(--il-ease) .26s forwards;
}

@media (max-width: 991.98px) {
    .il-banner { padding: 130px 0 50px; }
}

/* ============================================================
   1. HERO — il-hero (blob-shaped image, split layout)
   ============================================================ */
.il-hero {
    position: relative;
    padding: 60px 0 60px;
    background: #fff;
    overflow: hidden;
}

.il-hero__dots { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.il-hero__dots span { width: 6px; height: 6px; border-radius: 50%; background: var(--il-g-400); display: inline-block; }

.il-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--il-g-600);
    margin-bottom: 18px;
    opacity: 0;
    animation: ilFadeUp .7s var(--il-ease) forwards;
}

.il-hero__title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.22;
    color: var(--il-ink);
    margin: 0 0 20px;
    opacity: 0;
    animation: ilFadeUp .7s var(--il-ease) .1s forwards;
}
.il-hero__title span { color: var(--il-g-600); }

.il-hero__text {
    font-size: 16px;
    line-height: 1.85;
    color: var(--il-grey);
    max-width: 560px;
    margin: 0 0 32px;
    opacity: 0;
    animation: ilFadeUp .7s var(--il-ease) .18s forwards;
}
.il-hero__text strong { color: var(--il-ink); }

.il-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    padding: 16px 34px;
    border-radius: 999px;
    background: var(--il-ink);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .03em;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
    transition: color .35s var(--il-ease), transform .3s var(--il-ease);
    opacity: 0;
    animation: ilFadeUp .7s var(--il-ease) .26s forwards;
}
.il-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, var(--il-g-600), var(--il-g-400));
    transform: translateX(-101%);
    transition: transform .45s var(--il-ease);
    z-index: -1;
}
.il-btn:hover::before { transform: translateX(0); }
.il-btn:hover { transform: translateY(-2px); color: #fff; }
.il-btn i { transition: transform .35s var(--il-ease); }
.il-btn:hover i { transform: translateX(4px) rotate(6deg); }

.il-btn--ghost {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, .3);
    color: #fff;
}
.il-btn--ghost::before { background: var(--il-g-500); }

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

/* ---------- Blob image ---------- */
.il-hero__media { position: relative; padding: 20px; }

.il-blob {
    position: relative;
    border-radius: 63% 37% 54% 46% / 55% 45% 55% 45%;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    animation: ilMorph 10s ease-in-out infinite;
    box-shadow: 0 30px 60px rgba(10, 10, 10, .12);
}
.il-blob img { width: 100%; height: 100%; object-fit: cover; display: block; }

@keyframes ilMorph {
    0%, 100% { border-radius: 63% 37% 54% 46% / 55% 45% 55% 45%; }
    50%      { border-radius: 42% 58% 63% 37% / 41% 55% 45% 59%; }
}

.il-hero__ring {
    position: absolute;
    inset: -14px;
    border: 2px dashed var(--il-g-300);
    border-radius: 63% 37% 54% 46% / 55% 45% 55% 45%;
    animation: ilSpin 26s linear infinite;
    z-index: -1;
}
@keyframes ilSpin { to { transform: rotate(360deg); } }

.il-hero__dot-field {
    position: absolute;
    right: 0; bottom: -10px;
    width: 90px; height: 90px;
    background-image: radial-gradient(var(--il-g-300) 2px, transparent 2px);
    background-size: 14px 14px;
    opacity: .6;
    z-index: -1;
}

.il-hero__chip {
    position: absolute;
    left: -10px;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--il-line);
    border-radius: 999px;
    padding: 10px 18px 10px 10px;
    box-shadow: 0 14px 34px rgba(10, 10, 10, .12);
    animation: ilFloat 4s ease-in-out infinite;
}
.il-hero__chip-icon {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--il-g-500);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
}
.il-hero__chip span { font-size: 12.5px; font-weight: 700; color: var(--il-ink); }

@keyframes ilFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

/* ============================================================
   2. PARTNER MARQUEE — il-partners
   ============================================================ */
.il-partners { padding: 20px 0 60px; background: #fff; position: relative; }

.il-partners__head { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.il-partners__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--il-g-600);
    margin-bottom: 14px;
}
.il-partners__eyebrow span { width: 22px; height: 2px; background: var(--il-g-400); display: inline-block; }
.il-partners__head h2 { font-size: clamp(24px, 3.2vw, 34px); font-weight: 800; color: var(--il-ink); margin: 0 0 14px; }
.il-partners__head p { font-size: 15.5px; line-height: 1.8; color: var(--il-grey); margin: 0; }
.il-partners__head p strong { color: var(--il-ink); }

.il-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    margin-bottom: 20px;
}

.il-marquee__track {
    display: flex;
    align-items: center;
    gap: 20px;
    width: max-content;
    animation: ilScrollLeft 60s linear infinite;
}
.il-marquee--reverse .il-marquee__track { animation: ilScrollRight 60s linear infinite; }
.il-marquee:hover .il-marquee__track { animation-play-state: paused; }

@keyframes ilScrollLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes ilScrollRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.il-logo-card {
    flex: none;
    width: 180px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--il-line);
    border-radius: var(--il-radius-sm);
    padding: 16px 20px;
    transition: transform .3s var(--il-ease), border-color .3s, box-shadow .3s;
}
.il-logo-card img {
    max-width: 100%;
    max-height: 70px;
    -o-object-fit: contain;
       object-fit: contain;
    /* filter: grayscale(1) opacity(.6); */
    transition: filter .35s var(--il-ease), transform .35s var(--il-ease);
}
.il-logo-card:hover {
    transform: translateY(-4px);
    border-color: var(--il-g-300);
    box-shadow: 0 14px 30px rgba(23, 178, 106, .16);
}
.il-logo-card:hover img { filter: grayscale(0) opacity(1); transform: scale(1.06); }

/* ============================================================
   3. WHY CHOOSE US — il-why (col-lg-4 feature cards)
   ============================================================ */
.il-why { padding: 60px 0; background: var(--il-g-100); position: relative; overflow: hidden; }

.il-why__shape {
    position: absolute;
    top: -80px; right: -80px;
    width: 260px; height: 260px;
    background: var(--il-g-200);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    opacity: .6;
    z-index: 0;
}

.il-why__head { text-align: center; max-width: 640px; margin: 0 auto 50px; position: relative; z-index: 1; }
.il-why__eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    color: var(--il-g-600); margin-bottom: 14px;
}
.il-why__head h3 {     font-size: 40px; font-weight: 800; color: var(--il-ink); margin: 0; }

.il-why-row { position: relative; z-index: 1; row-gap: 26px; }

.il-why-card {
    position: relative;
    height: 100%;
    background: #fff;
    border-radius: var(--il-radius);
    padding: 38px 30px;
    overflow: hidden;
    transition: transform .35s var(--il-ease), box-shadow .35s var(--il-ease);
}
.il-why-card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(10, 10, 10, .1); }

.il-why-card__num {
    position: absolute;
    right: 20px; top: 14px;
    font-size: 46px;
    font-weight: 800;
    color: var(--il-g-100);
    z-index: 0;
    transition: color .35s var(--il-ease);
}
.il-why-card:hover .il-why-card__num { color: var(--il-g-200); }

.il-why-card__icon {
    position: relative;
    z-index: 1;
    width: 54px; height: 54px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    background: var(--il-g-100);
    color: var(--il-g-700);
    font-size: 22px;
    margin-bottom: 22px;
    transition: all .35s var(--il-ease);
}
.il-why-card:hover .il-why-card__icon { background: var(--il-g-600); color: #fff; transform: rotate(-8deg) scale(1.08); }

.il-why-card h4 { position: relative; z-index: 1; font-size: 18px; font-weight: 700; color: var(--il-ink); margin: 0 0 12px; }
.il-why-card p { position: relative; z-index: 1; font-size: 14.5px; line-height: 1.8; color: var(--il-grey); margin: 0; }
.il-why-card p strong { color: var(--il-ink); }

/* ============================================================
   4. CTA — il-cta (dark, shaped)
   ============================================================ */
.il-cta {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(150deg, var(--il-g-900) 0%, #0A0A0A 75%);
    color: #fff;
    overflow: hidden;
    isolation: isolate;
    text-align: center;
}

.il-cta__vector {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(600px 340px at 12% -10%, rgba(51, 214, 135, .22), transparent 70%),
        radial-gradient(480px 300px at 92% 110%, rgba(23, 178, 106, .18), transparent 70%);
    z-index: -2;
}

.il-cta__hex {
    position: absolute;
    width: 220px; height: 220px;
    border: 2px solid rgba(124, 235, 178, .25);
    clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
    z-index: -1;
}
.il-cta__hex--1 { left: -50px; top: 20px; animation: ilSpin 30s linear infinite; }
.il-cta__hex--2 { right: -60px; bottom: -30px; width: 280px; height: 280px; animation: ilSpin 40s linear infinite reverse; }

.il-cta__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--il-g-400);
    margin-bottom: 18px;
}

.il-cta h3 {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.25;
    max-width: 780px;
    margin: 0 auto 20px;
}

.il-cta p {
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255, 255, 255, .65);
    max-width: 640px;
    margin: 0 auto 36px;
}
.il-cta p strong { color: #fff; }

/* ============================================================
   5. Scroll reveal
   ============================================================ */
.il-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s var(--il-ease), transform .7s var(--il-ease);
}
.il-animate.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   6. Responsive
   ============================================================ */
@media (max-width: 991.98px) {
    .il-hero { padding: 60px 0 60px; text-align: center; }
    .il-hero__text { margin-left: auto; margin-right: auto; }
    .il-hero__media { max-width: 340px; margin: 50px auto 0; }
    .il-hero__chip { left: 10px; }
    .il-why { padding: 60px 0; }
}

@media (max-width: 767.98px) {
    .il-partners { padding: 10px 0 60px; }
    .il-why-card { padding: 30px 22px; }
    .il-cta { padding: 60px 0; }
    .il-logo-card { width: 128px; height: 72px; padding: 12px 16px; }
}


/* mobile */
@media (max-width: 767px) {
.il-banner__title{
    font-size: 25px;
}
.il-hero__eyebrow{
    gap: 0px;
}
.il-hero__title{
    font-size: 25px;
}
.il-why__head h3{
    font-size: 30px;
}
}