/* ============================================================
   AGENCY CASE STUDY — agency.css
   Mirrors the ecommerce.css architecture pattern
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
    --ag-bg: #0a0c10;
    --ag-bg-2: #0f1118;
    --ag-bg-card: #111420;
    --ag-bg-card2: #13161f;
    --ag-accent: #e8622a;
    --ag-accent2: #f07a40;
    --ag-accent3: #ffa06e;
    --ag-white: #ffffff;
    --ag-text: #e0e2ec;
    --ag-muted: #8a8fa8;
    --ag-border: rgba(255, 255, 255, 0.07);
    --ag-radius: 14px;
    --ag-radius-lg: 20px;
    --font-head: 'Kanit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

/* ---------- Base Reset ---------- */
.ai-page *,
.ai-page *::before,
.ai-page *::after {
    box-sizing: border-box;
}

.ai-page {
    font-family: var(--font-body);
    color: var(--ag-text);
    background: var(--ag-bg);
    overflow-x: hidden;
}

.ai-page img {
    display: block;
    max-width: 100%;
}

.ai-page a {
    text-decoration: none;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .75s cubic-bezier(.22, 1, .36, 1), transform .75s cubic-bezier(.22, 1, .36, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity .75s cubic-bezier(.22, 1, .36, 1), transform .75s cubic-bezier(.22, 1, .36, 1);
}

.reveal.in-view,
.reveal-right.in-view {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 {
    transition-delay: .12s;
}

.reveal-delay-2 {
    transition-delay: .24s;
}

.reveal-delay-3 {
    transition-delay: .36s;
}

.reveal-delay-4 {
    transition-delay: .48s;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    min-height: 100vh;
    background: var(--ag-bg);
    display: flex;
    align-items: center;
    padding: 130px 6% 90px;
    position: relative;
    overflow: hidden;
}

/* animated gradient blob */
.hero::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 98, 42, .13) 0%, transparent 70%);
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    animation: blobPulse 6s ease-in-out infinite;
    pointer-events: none;
}

/* grid dots overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

@keyframes blobPulse {

    0%,
    100% {
        transform: translateY(-50%) scale(1);
        opacity: .8;
    }

    50% {
        transform: translateY(-50%) scale(1.15);
        opacity: 1;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-label {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    color: var(--ag-accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
    border: 1px solid rgba(232, 98, 42, .3);
    padding: .35rem .9rem;
    border-radius: 30px;
    background: rgba(232, 98, 42, .08);
}

.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2.8rem, 5.5vw, 4.4rem);
    font-weight: 800;
    line-height: 1.08;
    color: var(--ag-white);
    margin-bottom: 1.6rem;
    letter-spacing: -.5px;
}

.hero h1 em {
    color: var(--ag-accent);
    font-style: normal;
}

.hero-desc {
    color: var(--ag-muted);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 440px;
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--ag-accent);
    color: var(--ag-white);
    border: none;
    padding: .8rem 2rem;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: background .2s, transform .2s, box-shadow .2s;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .18) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform .5s;
}

.btn-primary:hover::after {
    transform: translateX(100%);
}

.btn-primary:hover {
    background: var(--ag-accent2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(232, 98, 42, .4);
}

.btn-secondary {
    background: transparent;
    color: var(--ag-text);
    border: 1.5px solid rgba(255, 255, 255, .2);
    padding: .8rem 2rem;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all .2s;
}

.btn-secondary:hover {
    border-color: var(--ag-accent);
    color: var(--ag-accent);
    transform: translateY(-2px);
}

/* Hero Image */
.hero-image-wrap {
    position: relative;
    border-radius: var(--ag-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}

.hero-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232, 98, 42, .15) 0%, transparent 55%);
    pointer-events: none;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease;
}

.hero-image-wrap:hover img {
    transform: scale(1.04);
}

/* floating badge on hero image */
.hero-badge {
    position: absolute;
    bottom: 1.4rem;
    left: 1.4rem;
    background: rgba(10, 12, 16, .85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(232, 98, 42, .3);
    border-radius: 10px;
    padding: .8rem 1.1rem;
    display: flex;
    align-items: center;
    gap: .8rem;
    z-index: 3;
    animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.hero-badge-icon {
    width: 36px;
    height: 36px;
    background: rgba(232, 98, 42, .2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ag-accent);
    flex-shrink: 0;
}

.hero-badge-text strong {
    display: block;
    font-size: .8rem;
    color: var(--ag-white);
    font-family: var(--font-head);
}

.hero-badge-text span {
    font-size: .72rem;
    color: var(--ag-muted);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    background: var(--ag-white);
    padding: 5rem 6%;
}

.stats-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-divider {
    border-right: 1px solid rgba(0, 0, 0, .1);
}

.stat-num {
    font-family: var(--font-head);
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 800;
    color: #0a0c10;
    line-height: 1;
}

.stat-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #999;
    margin-top: .6rem;
}

/* ============================================================
   CHALLENGE SECTION
   ============================================================ */
.challenge {
    background: var(--ag-bg-2);
    padding: 8rem 6%;
    position: relative;
    overflow: hidden;
}

.challenge::before {
    content: '';
    position: absolute;
    left: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 98, 42, .07), transparent 70%);
    pointer-events: none;
}

.challenge-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.section-label {
    font-size: .68rem;
    font-weight: 700;
    color: var(--ag-accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--ag-white);
    line-height: 1.2;
    margin-bottom: 1.4rem;
}

.challenge-desc {
    color: var(--ag-muted);
    font-size: .95rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.pain-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.pain-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--ag-muted);
    font-size: .92rem;
    line-height: 1.65;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--ag-border);
    border-radius: 10px;
    transition: border-color .3s, background .3s;
}

.pain-list li:hover {
    border-color: rgba(232, 98, 42, .3);
    background: rgba(232, 98, 42, .05);
}

.pain-icon {
    width: 24px;
    height: 24px;
    border: 1.5px solid var(--ag-accent);
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

/* Quote card */
.quote-card {
    background: var(--ag-bg-card);
    border: 1px solid var(--ag-border);
    border-radius: var(--ag-radius-lg);
    padding: 2.8rem;
    position: relative;
    overflow: hidden;
}

.quote-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ag-accent), var(--ag-accent2), transparent);
}

.quote-card::after {
    content: '"';
    position: absolute;
    top: .5rem;
    right: 2rem;
    font-size: 8rem;
    color: rgba(232, 98, 42, .06);
    font-family: var(--font-head);
    line-height: 1;
    pointer-events: none;
}

.quote-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(232, 98, 42, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.6rem;
}

.quote-text {
    font-family: var(--font-head);
    font-size: 1.18rem;
    font-weight: 400;
    color: var(--ag-white);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ag-accent), var(--ag-accent2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .9rem;
    color: var(--ag-white);
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    font-size: .92rem;
    color: var(--ag-white);
}

.author-role {
    font-size: .78rem;
    color: var(--ag-muted);
    margin-top: 3px;
}

/* ============================================================
   FEATURE BANNER (full-width image + badge)
   ============================================================ */
.feature-banner {
    background: var(--ag-bg);
    padding: 6rem 6%;
}

.feature-img-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: var(--ag-radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .6);
}

.feature-img-wrapper img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    transition: transform 8s ease;
}

.feature-img-wrapper:hover img {
    transform: scale(1.03);
}

.feature-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 12, 16, .7) 100%);
    pointer-events: none;
}

.feature-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(10, 12, 16, .9);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(232, 98, 42, .35);
    border-radius: 12px;
    padding: 1rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    animation: floatBadge 5s ease-in-out infinite;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: rgba(232, 98, 42, .18);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ag-accent);
    flex-shrink: 0;
    font-size: 1.1rem;
}

.badge-text strong {
    display: block;
    font-size: .85rem;
    color: var(--ag-white);
    font-family: var(--font-head);
}

.badge-text p {
    font-size: .76rem;
    color: var(--ag-muted);
    margin: 0;
}



/* ============================================================
   SOLUTION SECTION
   ============================================================ */
.solution {
    background: var(--ag-bg-card);
    padding: 8rem 6%;
    position: relative;
    overflow: hidden;
}

.solution::after {
    content: '';
    position: absolute;
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 98, 42, .08), transparent 70%);
    pointer-events: none;
}

.solution-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.solution-visual {
    border-radius: var(--ag-radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}

.solution-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease;
}

.solution-visual:hover img {
    transform: scale(1.05);
}

.solution-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(232, 98, 42, .18) 0%, transparent 60%);
    pointer-events: none;
}

/* Solution visual — pulsing ring overlay */
.solution-visual .ring-anim {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.ring-anim span {
    position: absolute;
    border: 1px solid rgba(232, 98, 42, .3);
    border-radius: 50%;
    animation: ringPulse 3.5s ease-out infinite;
}

.ring-anim span:nth-child(1) {
    width: 100px;
    height: 100px;
    animation-delay: 0s;
}

.ring-anim span:nth-child(2) {
    width: 160px;
    height: 160px;
    animation-delay: .7s;
}

.ring-anim span:nth-child(3) {
    width: 220px;
    height: 220px;
    animation-delay: 1.4s;
}

@keyframes ringPulse {
    0% {
        transform: scale(.8);
        opacity: .7;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.4rem;
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--ag-border);
    border-radius: 12px;
    transition: border-color .3s, background .3s, transform .3s;
    cursor: default;
}

.feature-item:hover {
    border-color: rgba(232, 98, 42, .35);
    background: rgba(232, 98, 42, .05);
    transform: translateX(6px);
}

.feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(232, 98, 42, .14);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--ag-accent);
    transition: background .3s;
}

.feature-item:hover .feature-icon {
    background: rgba(232, 98, 42, .25);
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.feature-title {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ag-white);
    margin-bottom: .3rem;
}

.feature-desc {
    font-size: .875rem;
    color: var(--ag-muted);
    line-height: 1.65;
}

/* ============================================================
   NUMBERS GRID (Quantifiable Impact)
   ============================================================ */
.numbers-section {
    background: var(--ag-bg);
    padding: 8rem 6%;
    position: relative;
    overflow: hidden;
}

.numbers-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(232, 98, 42, .04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.eco-label-orange {
    font-size: .7rem;
    font-weight: 700;
    color: var(--ag-accent);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.sec-title-dark-center {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--ag-white);
    line-height: 1.15;
    margin-top: .7rem;
}

.numbers-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.dotted-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: repeating-linear-gradient(to bottom, rgba(232, 98, 42, .3) 0px, rgba(232, 98, 42, .3) 6px, transparent 6px, transparent 14px);
}

.number-card {
    background: var(--ag-bg-card);
    border: 1px solid var(--ag-border);
    border-radius: var(--ag-radius-lg);
    padding: 2.2rem;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.number-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.number-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

.blue-accent::before {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.blue-accent:hover {
    border-color: rgba(59, 130, 246, .4);
}

.light-blue-accent::before {
    background: linear-gradient(90deg, #06b6d4, #22d3ee);
}

.light-blue-accent:hover {
    border-color: rgba(6, 182, 212, .4);
}

.orange-accent::before {
    background: linear-gradient(90deg, var(--ag-accent), var(--ag-accent2));
}

.orange-accent:hover {
    border-color: rgba(232, 98, 42, .4);
}

.card-label {
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--ag-muted);
    display: block;
    margin-bottom: .8rem;
}

.number-card h3 {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--ag-white);
    line-height: 1;
    margin-bottom: 1rem;
}

.number-card p {
    font-size: .875rem;
    color: var(--ag-muted);
    line-height: 1.7;
    margin: 0;
}

/* row offset stagger */
.number-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-top: 2rem;
}

/* ============================================================
   CTA / FORM SECTION
   ============================================================ */
.cta-section {
    background: var(--ag-bg-2);
    padding: 8rem 6%;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(232, 98, 42, .09), transparent 70%);
    pointer-events: none;
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--ag-white);
    line-height: 1.12;
    margin-bottom: 3.5rem;
}

.form-card {
    background: var(--ag-bg-card);
    border: 1px solid var(--ag-border);
    border-radius: var(--ag-radius-lg);
    padding: 2.8rem;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
    margin-bottom: 1.4rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.form-group label {
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ag-muted);
}

.form-group input,
.form-group select {
    background: #13161f;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    padding: .9rem 1.1rem;
    color: var(--ag-text);
    font-size: .9rem;
    font-family: var(--font-body);
    outline: none;
    transition: border-color .25s, box-shadow .25s;
    -webkit-appearance: none;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, .18);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--ag-accent);
    box-shadow: 0 0 0 3px rgba(232, 98, 42, .12);
}

.select-wrap {
    position: relative;
}

.select-wrap::after {
    content: '▾';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ag-muted);
    pointer-events: none;
    font-size: .9rem;
}

.form-group select {
    width: 100%;
    cursor: pointer;
}

.form-group select option {
    background: #13161f;
}

.submit-btn {
    width: 100%;
    background: var(--ag-accent);
    color: var(--ag-white);
    border: none;
    padding: 1.05rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 800;
    font-family: var(--font-head);
    letter-spacing: .8px;
    cursor: pointer;
    margin-top: .6rem;
    position: relative;
    overflow: hidden;
    transition: background .2s, transform .2s, box-shadow .2s;
}

.submit-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform .55s;
}

.submit-btn:hover::after {
    transform: translateX(100%);
}

.submit-btn:hover {
    background: var(--ag-accent2);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(232, 98, 42, .45);
}

.form-note {
    font-size: .73rem;
    color: var(--ag-muted);
    text-align: center;
    margin-top: 1.1rem;
    letter-spacing: .8px;
    text-transform: uppercase;
}

/* --- THE INTELLIGENCE HUB SECTION --- */
.js-eco-hub-section {
    padding: 100px 0;
    background: #ffffff; /* White background as per image */
}

.js-eco-hub-visual-wrap {
    position: relative;
    border-radius: 30px;
    padding: 15px;
    background: #475569; /* Grey border/frame color seen in screenshot */
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.js-eco-hub-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

.js-eco-hub-label {
    color: #ff6624; /* Branding orange */
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.js-eco-hub-title {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 25px;
    line-height: 1.2;
}

.js-eco-hub-desc {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Feature List Styling */
.js-eco-hub-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.js-eco-hub-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.js-eco-hub-icon {
    width: 50px;
    height: 50px;
    background: #050d1d; /* Deep navy from screenshot */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.js-eco-hub-icon i {
    color: #ffffff;
    font-size: 18px;
}

.js-eco-hub-text strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #ff6624; /* Feature title orange */
    margin-bottom: 5px;
}

.js-eco-hub-text p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
    .js-eco-hub-section {
        padding: 60px 0;
    }
    .js-eco-hub-content {
        padding-left: 0 !important;
    }
    .js-eco-hub-title {
        font-size: 32px;
    }
}
/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {

    .hero-grid,
    .challenge-inner,
    .solution-inner {
        grid-template-columns: 1fr;
    }

    .hero-image-wrap {
        aspect-ratio: 16/9;
    }

    .number-cards-row {
        grid-template-columns: 1fr 1fr;
    }

    .dotted-line {
        display: none;
    }
}

@media (max-width: 640px) {
    .stats-inner {
        grid-template-columns: 1fr;
    }

    .stat-divider {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, .1);
        padding-bottom: 1.5rem;
    }

    .number-cards-row {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .feature-badge,
    .feature-metric {
        display: none;
    }
}