/* ================ Swanton Video Media ================ */
/* HERO SECTION CSS */
section.df-case-study-hero {
    padding: 60px 0px;
    background: #f8fafc;
}
section.df-case-study-hero .row {
    align-items: center;
}
.df-case-study-hero-content .hero-txt {
    display: inline-flex;
    align-items: center;
    /* gap: 7px; */
    background: rgb(8,101,248,0.9);
    /* border: 1px solid #0865f8c2; */
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #FFF;
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.df-case-study-hero-content h1 {
    font-weight: 700;
    margin-bottom: 30px;
}
.df-case-study-hero-content h1 span {
    background: -webkit-linear-gradient(45deg, #4f46e5, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.hm-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hm-label {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.hm-val {
    font-size: 14px;
    font-weight: 400;
}

.hero-card {
    background: #f1f6ff;
    border: 1px solid rgb(42 117 249);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    padding: 26px 22px;
}
.hero-card h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
}
.hstats {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.hs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid rgb(182 209 255);
}
.hs:last-child {
    border-bottom: 0;
}
.hs-num.or {
    color: #f97000;
}
.hs-num {
    font-size: 1.55rem;
    font-weight: 700;
    color: #FFF;
    line-height: 1;
}
.hs-lbl {
    font-size: .79rem;
    text-align: right;
    max-width: 220px;
    line-height: 1.4;
}
.hs-num.gr {
    color: #00b442;
}
.hs-num.cy {
    color: #0090a3;
}
.hs-num.am {
    color: #e1a200;
}
/* HERO SECTION CSS */
/* About Swanton Video Media */
section.df-overview-wrapper {
    padding: 60px 0px;
}
.df-sec-tag {
    display: inline-block;
    background: #e8f0fe;
    color: #1565d8;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .09em;
    padding: 4px 15px;
    border-radius: 100px;
    margin-bottom: 12px;
}


/* Thumbnail Container */
.thumbnail-container {
    text-align: center;
    margin: 0 auto;
    display: table;
    position: relative;
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 20px solid #e8f0fe;
    background: #e8f0fe;
}
.thumbnail-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
    border-radius: 15px;
}

.thumbnail-container:hover img {
    transform: scale(1.03);
}

/* Play Icon Overlay */
.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.6);
    color: #0066ff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}
.thumbnail-container:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background: white;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    width: 90%;
    max-width: 1000px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.modal-header {
    padding: 16px 24px;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.close-btn {
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    color: #666;
}

.close-btn:hover {
    color: #e74c3c;
}

/* Video Container - 16:9 Aspect Ratio */
.video-container {
    position: relative;
    padding-top: 56.25%;
    background: #000;
}

video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.info-card {
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 1px 3px rgba(0,0,0,.08),0 1px 2px rgba(0,0,0,.06);
    background: #f1f6ff;
    border: 1px solid rgb(42 117 249);
    height: 100%;
}
.info-card p {
    font-size: .76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px;
}
.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 12px;
}
.tbadge {
    background: #FFF;
    color: #1565d8;
    border: 1px solid #bfdbfe;
    font-size: 15px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 6px;
}
.testimonial-name {
    text-align: center;
    margin-top: 20px;
}
section .client-name {
    font-size: 20px;
    margin-bottom: 0px;
    text-transform: uppercase;
    font-weight: 600;
}

.info-card h3 {
    font-size: .76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px;
}
.info-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 9px;
    font-size: .875rem;
}
.info-label {
    font-weight: 600;
    color: #0d1b2a;
    min-width: 90px;
    flex-shrink: 0;
}
.info-val {
    color: #64748b;
    line-height: 1.5;
}

/* About Swanton Video Media */
/* Overcoming Manual Marketing Limitations */
section.df-challenge-wrapper {
    background: #F8FAFE;
    padding: 60px 0px;
}
.df-case-study-title {
    text-align: center;
    margin-bottom: 40px;
}
.chal-card {
    background: #FFF;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 22px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: border-color .2s,box-shadow .2s;
    height: 100%;
}
.chal-card:hover {
    border-color: #fecaca;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);
}
.chal-num {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #fef2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 700;
    color: #dc2626;
}
.chal-title {
    font-size: 20px;
    font-weight: 500;
    color: #0d1b2a;
    margin-bottom: 5px;
}
.chal-desc {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Overcoming Manual Marketing Limitations */
/* Implementing Salesforce Marketing Cloud Account Engagement (Pardot) */
section.df-our-solution-wrapper {
    padding: 60px 0px;
}
.sol-card {
    background: #FFF;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 22px 20px;
    position: relative;
    overflow: hidden;
    transition: border-color .2s,box-shadow .2s,transform .15s;
    height: 100%;
}
.sol-card:hover {
    border-color: #1565d8;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);
    transform: translateY(-2px);
}
.sol-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #1565d8;
}
.si-or {
    background: #fff7ed;
}
.sol-ico {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 13px;
}
.si-or svg {
    color: #ea580c;
}
.sol-ico svg {
    width: 30px;
    height: 30px;
}
.sol-title {
    font-size: .95rem;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 6px;
}
.sol-desc {
    font-size: .84rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

.si-bl {
    background: #e8f0fe;
}
.si-bl svg {
    color: #1565d8;
}
.si-vi {
    background: #f5f3ff;
}
.si-vi svg path {
    color: #7c3aed;
}
.si-gr {
    background: #e8faf4;
}
.si-gr svg path {
    color: #0a9b6c;
}
.si-am {
    background: #fffbeb;
}
.si-am svg path {
    color: #d97706;
}
.si-cy {
    background: #ecfeff;
}
.si-cy svg path {
    color: #0891b2;
}
.sol-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
}
.stag {
    background: #e8f0fe;
    color: #1565d8;
    font-size: .68rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 100px;
}
/* Implementing Salesforce Marketing Cloud Account Engagement (Pardot) */
/* Measurable Outcomes After Implementation */
section.df-impact-wrapper {
    background: #F8FAFE;
    padding: 60px 0px;
}
.m-card {
    background: rgba(255,255,255,.06);
    border: 1px solid #d3d3d3;
    border-radius: 16px;
    padding: 26px 18px;
    text-align: center;
    backdrop-filter: blur(4px);
    transition: border-color .2s,box-shadow .2s,transform .15s;
    height: 100%;
}
.m-card:hover {
    background: rgba(255,255,255,.09);
    border-color: rgba(251,146,60,.3);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
}
.mi-or {
    background: rgba(234,88,12,.15);
}
.mi-or svg {
    color: #ff7300;
}
.m-ico {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 13px;
}
.m-ico svg {
    width: 30px;
    height: 30px;
}
.c-or {
    color: #ff7300;
}
.m-num {
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 5px;
}
.m-lbl {
    font-size: 15px;
    line-height: 1.4;
}
.m-sub {
    font-size: 13px;
    margin-top: 3px;
}

.mi-gr {
    background: rgba(74,222,128,.12);
}
.mi-gr svg {
    color: #00b341;
}
.c-gr {
    color: #00b341;
}
.mi-cy {
    background: rgba(0,180,216,.12);
}
.mi-cy svg {
    color: #00b8d0;
}
.c-cy {
    color: #00b8d0;
}
.mi-am {
    background: rgba(251,191,36,.12);
}
.mi-am svg {
    color: #e9a800;
}
.c-am {
    color: #e9a800;
}
.mi-vi {
    background: rgba(167,139,250,.12);
}
.mi-vi svg {
    color: #794cff;
}
.c-vi {
    color: #794cff;
}
.mi-bl {
    background: rgba(96,165,250,.12);
}
.mi-bl svg {
    color: #0072fe;
}
.c-bl {
    color: #0072fe;
}
.mi-ro {
    background: rgba(251,113,133,.12);
}
.mi-ro svg {
    color: #ff5069;
}
.c-ro {
    color: #ff5069;
}
.mi-te {
    background: rgba(45,212,191,.12);
}
.mi-te svg {
    color: #00b59e;
}
.c-te {
    color: #00b59e;
}
/* Measurable Outcomes After Implementation */
/* Tangible Results and Enhanced Marketing Maturity */
section.df-business-wrapper {
    padding: 60px 0px;
}
.ic-card {
    background: #FFF;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 22px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: border-color .2s,box-shadow .2s;
    height: 100%;
}
.ic-card:hover {
    border-color: #86efac;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);
}
.ic-ico {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    background: #e8faf4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ic-ico svg {
    width: 25px;
    height: 25px;
    color: #0a9b6c;
}
.ic-title {
    font-size: 18px;
    font-weight: 500;
    color: #0d1b2a;
    margin-bottom: 4px;
}
.ic-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Tangible Results and Enhanced Marketing Maturity */
/* Technologies Used in This Project */
section.df-technology-wrapper {
    background: #F8FAFE;
    padding: 60px 0px;
}
.ts-item {
    background: #FFF;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px 14px;
    text-align: center;
    transition: border-color .2s,box-shadow .2s;
    height: 100%;
}
.ts-item:hover {
    border-color: #bfdbfe;
    box-shadow: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
}
.tl-or {
    background: #fff7ed;
}
.ts-logo {
    width: 50px;
    height: 50px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 9px;
}
.tl-or svg {
    color: #ea580c;
}
.ts-logo svg {
    width: 30px;
    height: 30px;
}
.ts-name {
    font-size: 18px;
    font-weight: 500;
    color: #0d1b2a;
    margin-bottom: 15px;
}
.ts-desc {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.35;
}
.tl-bl {
    background: #e8f0fe;
}
.tl-bl svg {
    color: #1565d8;
}
.tl-vi {
    background: #f5f3ff;
}
.tl-vi svg {
    color: #7c3aed;
}
.tl-gr {
    background: #e8faf4;
}
.tl-gr svg {
    color: #0a9b6c;
}
.tl-am {
    background: #fffbeb;
}
.tl-am svg {
    color: #d97706;
}
.tl-cy {
    background: #ecfeff;
}
.tl-cy svg {
    color: #0891b2;
}


/* Technologies Used in This Project */
section.df-summary-wrapper {
    padding: 60px 0px;
}
.quote-section {
    background: #fff7ed;
    padding: 40px 30px;
    border: 1px solid #fed7aa;
    border-radius: 20px;
}
.quote-in {
    margin: 0 auto;
    text-align: center;
}
.quote-mark {
    font-size: 4rem;
    color: #ea580c;
    line-height: 1;
    margin-bottom: -10px;
    opacity: .4;
}
.quote-text {
    font-size: clamp(1rem,2vw,1.25rem);
    font-weight: 400;
    color: #0a1628;
    line-height: 1.65;
    margin-bottom: 18px;
}
.quote-attr {
    font-size: .85rem;
    color: #64748b;
}
.quote-attr strong {
    color: #0d1b2a;
    font-weight: 600;
}
.quote-attr a {
    color: #0d6efd;
}
/* How We Delivered This Project */
section.df-project-wrapper {
    padding: 60px 0px;
    background: #f8fafc;
}
.df-project-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    
}
.tl-item {
    display: flex;
    gap: 20px;
    padding-bottom: 26px;
    position: relative;
}
.tl-item::before {
    content: '';
    position: absolute;
    left: 20px;
    height: 100%;
    top: 0;
    bottom: 20px;
    width: 2px;
    background: #1565d8;
    opacity: .2;
}
.tl-item:last-child:before {
    content: none;
}
.tl-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1565d8;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .78rem;
    font-weight: 800;
    z-index: 1;
    box-shadow: 0 4px 18px rgba(21,101,216,.25);
}
.tl-title {
    font-size: 18px;
    font-weight: 600;
    color: #0d1b2a;
    margin-bottom: 5px;
}
.tl-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.65;
}

/* How We Delivered This Project */
/* A Foundation for Future Growth */
section.df-conclusion-wrapper {
    padding: 60px 0px;
}
.res-card.or {
    background: #fff7ed;
    border-color: #fed7aa;
}
.res-card {
    border-radius: 16px;
    padding: 22px 20px;
    border: 1.5px solid;
    height: 100%;
}
.res-card.or .res-title {
    color: #92400e;
}
.res-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}
.res-card.or .res-desc {
    color: #78350f;
}
.res-card.bl .res-desc {
    color: #1e40af;
}
.res-card.gr .res-desc {
    color: #065f46;
}
.res-card.vi .res-desc {
    color: #5b21b6;
}
.res-desc {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}
.res-card.bl {
    background: #e8f0fe;
    border-color: #bfdbfe;
}
.res-card.bl .res-title {
    color: #1e3a8a;
}
.res-card.gr {
    background: #e8faf4;
    border-color: #86efac;
}
.res-card.gr .res-title {
    color: #064e3b;
}
.res-card.vi {
    background: #f5f3ff;
    border-color: #c4b5fd;
}
.res-card.vi .res-title {
    color: #4c1d95;
}


/* A Foundation for Future Growth */

@media screen and (max-width:768px) {
.df-project-content {
    grid-template-columns: 1fr;
}
.tl-item::before {
    content: none;
}


}
/* ================ Swanton Video Media ================ */
/* ================ NIP. Drink Better. ================ */
/* Scaling Pains with AWS Amplify as a Business Operations Layer */
section.df-challenges-wrapper {
    padding-bottom: 60px;
}
.ba-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.ba-card {
    border-radius: 16px;
    padding: 24px 22px;
    border: 1.5px solid;
}
.ba-before {
    background: #fef2f2;
    border-color: #fecaca;
}
.ba-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.badge-red {
    background: #fee2e2;
    color: #b91c1c;
}
.ba-badge {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 4px 12px;
    border-radius: 100px;
}
.ba-before .ba-title {
    color: #7f1d1d;
}
.ba-title {
    font-size: .97rem;
    font-weight: 700;
}
.ba-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.ba-before .ba-list li {
    color: #7f1d1d;
}
.ba-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: .875rem;
    line-height: 1.6;
}
.ba-before .ba-list li::before {
    content: '✗';
    color: #b91c1c;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}
.badge-te {
    background: rgba(13,148,136,.15);
    color: #0f766e;
}
.ba-after  .ba-title {
    color: #134e4a;
}
.ba-after  .ba-list li {
    color: #134e4a;
}
.ba-after  .ba-list li::before {
    content: '✓';
    color: #0d9488;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}
.ba-after {
    background: #f0fdfa;
    border-color: #99f6e4;
}

/* Scaling Pains with AWS Amplify as a Business Operations Layer */
/* Salesforce as NIP's Centralised Back-Office Platform */
.arch-box {
    background: linear-gradient(135deg,#f0fdfa,#e0f2fe);
    border: 1.5px solid #99f6e4;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);
}
.arch-label {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #006f65;
    margin-bottom: 18px;
    text-align: center;
}
.arch-row {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 10px;
}
.arch-box-item.bl {
    border-top: 2px solid #1565d8;
}
.arch-box-item {
    background: #FFF;
    border-radius: 8px;
    padding: 20px 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,.08),0 1px 2px rgba(0,0,0,.06);
    flex: 1;
    text-align: center;
}
.arch-box-item .ab-title {
    font-size: 16px;
    font-weight: 600;
    color: #0d1b2a;
}
.arch-box-item .ab-sub {
    font-size: 15px;
    color: #94a3b8;
    margin-top: 2px;
}
.arch-arrow {
    font-size: 1.1rem;
    color: #0d9488;
    flex-shrink: 0;
    display: none;
}
.arch-box-item.te {
    border-top: 2px solid #0d9488;
}
.arch-box-item.am {
    border-top: 2px solid #d97706;
}


/* Salesforce as NIP's Centralised Back-Office Platform */
@media screen and (max-width:768px) {
section.df-overview-wrapper img {
    margin-bottom: 40px;
}
.ba-panel {
    grid-template-columns: 1fr;
}
.arch-arrow {
    display: none;
}
.arch-row {
    grid-template-columns: 1fr;
}


}
/* ================ NIP. Drink Better. ================ */
/* ================ EEA Australia. ================ */

.arch-three {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: center;
    margin-bottom: 16px;
}
.arch-node.sf {
    border-top: 3px solid #1565d8;
}
.arch-node {
    background: #FFF;
    border-radius: 10px;
    padding: 16px 14px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);
    text-align: center;
}
.arch-node .an-t {
    font-size: .85rem;
    font-weight: 800;
    color: #0d1b2a;
}
.arch-node .an-s {
    font-size: .7rem;
    color: #94a3b8;
    margin-top: 3px;
}
.arch-conn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    gap: 4px;
}
.arch-conn .ac-arr {
    font-size: 1.2rem;
    color: #4f46e5;
    font-weight: 700;
    line-height: 1;
}
.arch-conn .ac-lbl {
    font-size: .62rem;
    color: #94a3b8;
    text-align: center;
}
.arch-node.be {
    border-top: 3px solid #4f46e5;
}
.arch-node.mb {
    border-top: 3px solid #0a9b6c;
}

.arch-flows {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.arch-note {
    font-size: .75rem;
    color: #64748b;
    text-align: center;
    margin-top: 12px;
}
.af.down {
    border-left: 2px solid #1565d8;
}
.af {
    background: #FFF;
    border-radius: 8px;
    padding: 15px 15px;
    font-size: .78rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,.08),0 1px 2px rgba(0,0,0,.06);
}
.af.down .af-arr {
    color: #1565d8;
}
.af .af-arr {
    font-size: .85rem;
    font-weight: 700;
}
.af.up {
    border-left: 2px solid #0a9b6c;
}
.af.up .af-arr {
    color: #0a9b6c;
}

.fc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    padding-top: 10px;
}
.fc-card {
    background: #FFF;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 22px 20px;
    position: relative;
    overflow: hidden;
    transition: border-color .2s,box-shadow .2s,transform .12s;
    height: 100%;
}
.fc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,#4f46e5,#818cf8);
}
.fc-num {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: .7rem;
    font-weight: 700;
    color: #cbd5e1;
}
.fi-in {
    background: #eef2ff;
}
.fc-ico {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 13px;
}
.fi-in svg {
    color: #4f46e5;
}
.fc-ico svg {
    width: 30px;
    height: 30px;
}
.fc-card:hover {
    border-color: #a5b4fc;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);
    transform: translateY(-2px);
}
.fc-bullets {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.fc-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: .8rem;
    color: #64748b;
}
.fc-bullets li::before {
    content: '›';
    color: #4f46e5;
    font-weight: 700;
    flex-shrink: 0;
}
.fi-bl {
    background: #e8f0fe;
}
.fi-bl svg {
    color: #1565d8;
}
.fi-am {
    background: #fffbeb;
}
.fi-am svg {
    color: #d97706;
}
.fi-gr {
    background: #e8faf4;
}
.fi-gr svg {
    color: #0a9b6c;
}
.fi-te {
    background: #f0fdfa;
}
.fi-te svg {
    color: #0d9488;
}
.fi-vi {
    background: #f5f3ff;
}
.fi-vi svg {
    color: #7c3aed;
}
@media screen and (max-width:768px) {
.case-study-logo {
    margin-bottom: 30px;
}
.case-study-logo img {
    margin: 0 !important;
}
.arch-three {
    grid-template-columns: 1fr;
    gap: 20px;
}
.arch-flows {
    grid-template-columns: 1fr;
}

}
/* ================ EEA Australia. ================ */