* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, Arial, sans-serif;
}

body {
    background: #fff;
    color: #111;
}

/* ===========HERO SECTION============ */
.fmcg-hero {
    padding: 60px 20px;
    background: linear-gradient(180deg,
            #0aa34f 0%,
            #079447 45%,
            #057a3a 100%);

    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.fmcg-hero-inner {
    max-width: 1200px;
    text-align: center;
}

/* Top small label */
.fmcg-tag {
    display: inline-block;
    font-size: 15px;
    letter-spacing: 2px;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 28px;
    color: #b2f4d0;
}

/* Main heading */
.fmcg-title {
    font-size: 60px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 32px;
}

/* Paragraph text */
.fmcg-desc {
    font-size: 20px;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 22px;
    opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
    .fmcg-title {
        font-size: 38px;
    }

    .fmcg-desc {
        font-size: 16px;
    }
}

/* ===== Fade-in base state ===== */
.fmcg-fade-item {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 1.2s ease,
        transform 1.2s ease;
}

/* ===== When visible ===== */
.fmcg-fade-item.fmcg-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ================== NEXT SECTION =================*/
.fmcg-challenges {
    padding: 60px 20px;
    background: #ffffff;
}

.fmcg-challenges-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.fmcg-challenges-title {
    font-size: 48px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: #0f172a;
}

.fmcg-challenges-subtitle {
    font-size: 18px;
    color: #475569;
    margin-bottom: 50px;
}

/* Grid */
.fmcg-challenges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Card */
.fmcg-challenge-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 30px 40px;
    text-align: left;
}

.fmcg-challenge-card h3 {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 22px;
    color: #0f172a;
}

/* Bullet list */
.fmcg-challenge-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fmcg-challenge-card li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: #334155;
}

/* Green dot */
.fmcg-challenge-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 768px) {
    .fmcg-challenges-grid {
        grid-template-columns: 1fr;
    }

    .fmcg-challenges-title {
        font-size: 36px;
    }
}

/* ===== Card animation base ===== */
.fmcg-card-animate {
    opacity: 0;
    transition:
        opacity 1.4s ease,
        transform 1.4s ease;
}

/* Top row cards */
.fmcg-card-from-left {
    transform: translateX(-60px);
}

.fmcg-card-from-right {
    transform: translateX(60px);
}

/* Bottom row cards */
.fmcg-card-from-scale {
    transform: scale(0.92);
}

/* Visible state */
.fmcg-card-show {
    opacity: 1;
    transform: translateX(0) scale(1);
}


/* ================ NEXT SECTION =============== */
.fmcg-solutions-section {
    padding: 60px 20px;
    background: #f7fafc;
}

.fmcg-solutions-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.fmcg-solutions-title {
    text-align: center;
    font-size: 48px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: #0f172a;
}

.fmcg-solutions-subtitle {
    text-align: center;
    font-size: 18px;
    color: #475569;
    margin-bottom: 50px;
}

/* Main Card */
.fmcg-solution-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 50px 55px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}

/* Header */
.fmcg-solution-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 40px;
}

.fmcg-solution-icon {
    width: 70px;
    height: 70px;
    background: #2563eb;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #9bb6f1;
}

.fmcg-solution-icon.green {
    background: #16a34a;
    /* primary green */
    border: 1px solid #86efac;
}

.fmcg-solution-icon.purple {
    background: #7c3aed;
    /* primary purple */
    border: 1px solid #d8b4fe;
}

.fmcg-solution-icon.indigo {
    background: #4338ca;
    /* primary indigo */
    border: 1px solid #a5b4fc;
}

.fmcg-solution-icon.light-blue {
    background: #0ea5e9;
    /* primary light blue */
    border: 1px solid #7dd3fc;
}

.fmcg-solution-icon i {
    color: #ffffff;
    font-size: 34px;
    font-weight: 800;
}

.fmcg-solution-header h3 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #0f172a;
}

/* Content */
.fmcg-solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
}

.fmcg-solution-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #0f172a;
}

.fmcg-solution-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fmcg-solution-col li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #334155;
}

.fmcg-solution-col i {
    color: #2563eb;
    font-size: 18px;
    font-weight: 800;
}

.fmcg-solution-col.green i {
    color: #16a34a;
}

.fmcg-solution-col.purple i {
    color: #7c3aed;
}

.fmcg-solution-col.indigo i {
    color: #4338ca;
}

.fmcg-solution-col.light-blue i {
    color: #0ea5e9;
}

/* Benefits */
.benefits-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.benefits-col h4 {
    margin-bottom: 0px;
}

.benefit-box {
    flex-direction: column;
    gap: 8px;
    background: #e0efff;
    border: 1px solid #c7e0fb;
    border-radius: 14px;
    padding: 15px 10px;
}

.benefit-box.green {
    background: #e1ffe0;
    border: 1px solid #c7fbce;
}

.benefit-box.purple {
    background: #ebe0ff;
    border: 1px solid #dfc7fb;
}

.benefit-box.indigo {
    background: #eef2ff;
    border: 1px solid #c7d2fe;
}

.benefit-box.light-blue {
    background: #e0f2fe;
    border: 1px solid #bae6fd;
}

.benefit-value.green {
    color: #16a34a;
}

.benefit-value.purple {
    color: #7c3aed;
}

.benefit-value.indigo {
    color: #4338ca;
}

.benefit-value.light-blue {
    color: #0284c7;
}

.benefit-value {
    font-size: 19px;
    font-weight: 700;
    color: #2563eb;
}

.benefit-box p {
    margin: 2px 0 0;
    font-size: 15px;
    color: #444;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .fmcg-solution-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ===== Solution card animation base ===== */
.fmcg-solution-animate {
    opacity: 0;
    transform: translateY(-80px);
    transition:
        opacity 1.5s ease,
        transform 1.5s ease;
}

/* When card becomes visible */
.fmcg-solution-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================ NEXT SECTION ========================== */
.usecases-section {
    padding: 60px 20px;
    background: radial-gradient(circle at top, #1b2a44, #0a1322);
}

.usecases-title {
    text-align: center;
    font-size: 48px;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.usecase-card {
    width: 1200px;
    margin: auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 45px;
    color: #e6ecf3;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.case-title {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 28px;
}

/* top 3 cards */
.info-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 35px;
}

.info-box {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 18px 20px;
}

.label {
    display: block;
    font-size: 14px;
    color: #7fb9ff;
    margin-bottom: 6px;
    font-weight: 600;
}

.info-box p {
    font-size: 15px;
    line-height: 1.4;
}

/* bottom content */
.content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.content-row h4 {
    color: #7fb9ff;
    font-size: 16px;
    margin-bottom: 15px;
}

.content-row ul {
    list-style: none;
    padding: 0;
}

.content-row li {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.5;
    display: flex;
    gap: 10px;
}


.left li i {
    color: #2ee98d;
    font-weight: bold;
    font-size: 16px;
}

.results li i {
    color: #2ee98d;
    font-weight: bold;
    font-size: 18px;
}

.results li i.blue {
    color: #0284c7;
}

.results strong {
    font-size: 16px;
    color: #ffffff;
}

/* ===== Usecase animation base ===== */
.uc-animate {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 1.3s ease,
        transform 1.3s ease;
}

.uc-animate.uc-show {
    opacity: 1;
    transform: translateY(0);
}


/* ====================== NEXT SECTION ================= */
.tech-section {
    padding: 60px 20px;
    background: #ffffff;
}

.tech-title {
    text-align: center;
    font-size: 48px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #0f172a;
    margin-bottom: 15px;
}

.tech-subtitle {
    text-align: center;
    font-size: 18px;
    color: #475569;
    margin-bottom: 70px;
}

/* grid */
.tech-grid {
    width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* cards */
.tech-card {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px 25px;
    /* min-height: 120px; */
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.08);
}

.tech-card h4 {

    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 10px;
}

.tech-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}

/* ===== Tech card animation base ===== */
.tech-animate {
    opacity: 0;
    transition:
        opacity 1.3s ease,
        transform 1.3s ease;
}

/* Top row cards */
.tech-from-up {
    transform: translateY(30px);
}

/* Bottom row cards */
.tech-from-scale {
    transform: scale(0.94);
}

/* Visible state */
.tech-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ========================= NEXT SECTION====================== */
.cta-section {
    background: linear-gradient(180deg,
            #0aa34f 0%,
            #079447 45%,
            #057a3a 100%);
    padding: 60px 20px;

}

.cta-container {
    width: 1200px;
    margin: auto;
    text-align: center;
    color: #ffffff;
}

.cta-container h2 {
    font-size: 50px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.15;
    margin-bottom: 15px;
}

.cta-container p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 35px;
}

/* buttons row */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-bottom: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

/* primary button */
.primary-btn {
    background: #ffffff;
    color: #0a7f3a;
    font-weight: 600;
}

.primary-btn .arrow {
    font-size: 18px;
    font-weight: 800;
}

/* outline button */
.outline-btn {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: #057a3a;
}

.outline-btn .icon {
    font-size: 18px;
}

/* bottom link */
.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.cta-link .doc {
    font-size: 18px;
}

.primary-btn i {
    transition: transform 0.3s ease;
}

.primary-btn:hover i {
    transform: translateX(6px);
}

.outline-btn {
    transition: background 0.3s ease, border-color 0.3s ease;
}

.outline-btn:hover {
    background: #046b33;
    /* darker green */
    border-color: #ffffff;
}

.cta-link {
    transition: color 0.3s ease;
}

.cta-link i {
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #9dffbf;
    /* light green */
}

.cta-link:hover i {
    color: #9dffbf;
}