:root {

    --di-dark: #0b0712;
    --di-dark-2: #130a1c;

    --di-purple-dark: #4a145c;
    --di-purple: #7b2a8f;
    --di-purple-light: #b96bc5;

    --di-blue: #3346d3;
    --di-blue-dark: #151a70;

    --di-white: #ffffff;
    --di-light: #f7f5fa;

    --di-text: #25202b;
    --di-muted: #716b78;
}

/* =================================
   GENERAL
================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    margin: 0;

    font-family: "Inter", sans-serif;

    background: var(--di-light);

    color: var(--di-text);
}

/* =================================
   NAVBAR
================================= */

.digital-navbar {

    background: rgba(11, 7, 18, 0.96);

    padding: 10px 0;

    border-bottom: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(15px);
}

/* Logo */

.navbar-logo {

    width: 58px;
    height: 58px;

    object-fit: contain;

    margin-right: 10px;
}

/* Brand */

.brand-name {

    font-size: 21px;

    font-weight: 800;

    letter-spacing: 1px;

    color: white;
}

.brand-name span {

    color: var(--di-purple-light);
}

/* Navigation */

.digital-navbar .nav-link {

    color: rgba(255,255,255,0.82);

    font-size: 15px;

    font-weight: 500;

    margin-left: 13px;

    transition: 0.25s ease;
}

.digital-navbar .nav-link:hover {

    color: var(--di-purple-light);
}

/* Contact button */

.btn-contact {

    color: white;

    border: none;

    padding: 10px 21px;

    border-radius: 9px;

    font-size: 14px;

    font-weight: 600;

    background: linear-gradient(
        135deg,
        var(--di-purple),
        var(--di-blue)
    );

    transition: 0.25s ease;
}

.btn-contact:hover {

    color: white;

    transform: translateY(-2px);

    box-shadow:
        0 8px 25px rgba(123,42,143,0.4);
}

/* =================================
   MOBILE
================================= */

@media (max-width: 991px) {

    .navbar-logo {

        width: 48px;
        height: 48px;
    }

    .brand-name {

        font-size: 18px;
    }

    .navbar-collapse {

        padding-top: 15px;
        padding-bottom: 15px;
    }

    .digital-navbar .nav-link {

        margin-left: 0;

        padding: 11px 5px;
    }

    .btn-contact {

        margin-top: 8px;

        width: 100%;
    }
}

/* =================================
   HERO SECTION
================================= */

.hero-section {

    position: relative;

    overflow: hidden;

    min-height: calc(100vh - 78px);

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(123, 42, 143, 0.20),
            transparent 35%
        ),
        radial-gradient(
            circle at 20% 80%,
            rgba(51, 70, 211, 0.12),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #09060e 0%,
            #110817 55%,
            #08060c 100%
        );

    color: white;
}


/* =================================
   BACKGROUND GLOWS
================================= */

.hero-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(100px);

    pointer-events: none;
}


.hero-glow-one {

    width: 450px;
    height: 450px;

    background: rgba(137, 43, 160, 0.18);

    right: -100px;
    top: 50px;
}


.hero-glow-two {

    width: 350px;
    height: 350px;

    background: rgba(47, 63, 190, 0.13);

    left: -150px;
    bottom: -100px;
}


/* =================================
   HERO CONTENT
================================= */

.hero-content {

    position: relative;

    z-index: 2;

    padding: 80px 0;
}


/* Badge */

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 15px;

    border-radius: 50px;

    border: 1px solid rgba(185, 107, 197, 0.25);

    background: rgba(185, 107, 197, 0.08);

    color: #d99be3;

    font-size: 13px;

    font-weight: 600;
}


/* Main heading */

.hero-title {

    max-width: 750px;

    margin-bottom: 24px;

    font-size: clamp(48px, 6vw, 82px);

    line-height: 1.02;

    letter-spacing: -3px;

    font-weight: 800;
}


.hero-title span {

    display: block;

    background: linear-gradient(
        90deg,
        #d47ddd,
        #8d3ba5,
        #5867e8
    );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;
}


/* Description */

.hero-description {

    max-width: 650px;

    margin-bottom: 32px;

    color: #bdb7c5;

    font-size: 18px;

    line-height: 1.8;
}


/* =================================
   HERO BUTTONS
================================= */

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;
}


.hero-primary-btn {

    padding: 14px 25px;

    border: none;

    border-radius: 10px;

    color: white;

    font-weight: 600;

    background: linear-gradient(
        135deg,
        #8a319c,
        #414ed4
    );

    box-shadow:
        0 10px 35px rgba(105, 48, 159, 0.30);

    transition: all 0.3s ease;
}


.hero-primary-btn:hover {

    color: white;

    transform: translateY(-3px);

    box-shadow:
        0 15px 40px rgba(105, 48, 159, 0.50);
}


.hero-primary-btn i {

    margin-left: 7px;
}


.hero-secondary-btn {

    padding: 13px 24px;

    border-radius: 10px;

    border: 1px solid rgba(255,255,255,0.18);

    color: white;

    background: rgba(255,255,255,0.04);

    font-weight: 600;

    transition: 0.3s ease;
}


.hero-secondary-btn:hover {

    color: white;

    border-color: rgba(185,107,197,0.55);

    background: rgba(185,107,197,0.08);

    transform: translateY(-3px);
}


/* =================================
   HERO FEATURES
================================= */

.hero-features {

    display: flex;

    gap: 25px;

    flex-wrap: wrap;

    margin-top: 35px;
}


.hero-feature {

    display: flex;

    align-items: center;

    gap: 7px;

    color: #aaa4b2;

    font-size: 13px;
}


.hero-feature i {

    color: #a951ba;
}


/* =================================
   HERO LOGO
================================= */

.hero-logo-wrapper {

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 500px;
}


.hero-logo-glow {

    position: absolute;

    width: 330px;
    height: 330px;

    border-radius: 50%;

    background: rgba(128, 43, 151, 0.25);

    filter: blur(90px);
}


.hero-main-logo {

    position: relative;

    z-index: 2;

    width: min(420px, 90%);

    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(
            0 25px 50px rgba(0,0,0,0.45)
        );

    animation:
        heroFloat 5s ease-in-out infinite;
}


@keyframes heroFloat {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-14px);

    }

}


/* =================================
   HERO MOBILE
================================= */

@media (max-width: 991px) {

    .hero-section {

        min-height: auto;
    }

    .hero-content {

        padding:

            75px 0
            20px;
    }

    .hero-title {

        font-size: clamp(44px, 11vw, 65px);

        letter-spacing: -2px;
    }

    .hero-logo-wrapper {

        min-height: 370px;

        padding-bottom: 60px;
    }

    .hero-main-logo {

        width: 320px;
    }

}


@media (max-width: 576px) {

    .hero-content {

        padding-top: 55px;
    }

    .hero-title {

        font-size: 43px;

        letter-spacing: -1.5px;
    }

    .hero-description {

        font-size: 16px;

        line-height: 1.7;
    }

    .hero-buttons {

        display: grid;

        grid-template-columns: 1fr;
    }

    .hero-buttons .btn {

        width: 100%;

        padding: 14px;

    }

    .hero-features {

        gap: 13px;

        flex-direction: column;
    }

    .hero-logo-wrapper {

        min-height: 300px;
    }

    .hero-main-logo {

        width: 260px;
    }

}

/* =========================================
   PRODUCT SHOWCASE SECTION
========================================= */

.product-showcase-section {

    position: relative;

    overflow: hidden;

    padding: 110px 0 130px;

    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(124, 44, 145, 0.10),
            transparent 30%
        ),
        #0c0910;

    color: white;
}


/* =========================================
   SECTION HEADING
========================================= */

.section-heading {

    max-width: 760px;

    margin: 0 auto 80px;
}


.section-badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 15px;

    margin-bottom: 20px;

    border-radius: 50px;

    background: rgba(165, 78, 184, 0.10);

    border: 1px solid rgba(185, 107, 197, 0.25);

    color: #d391df;

    font-size: 13px;

    font-weight: 600;
}


.section-heading h2 {

    margin-bottom: 20px;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -2px;
}


.section-heading h2 span {

    background: linear-gradient(
        90deg,
        #d47ddd,
        #6976ef
    );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;
}


.section-heading p {

    margin: 0;

    color: #a9a4af;

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================
   COSMO SHOWCASE
========================================= */

.cosmo-showcase {

    padding: 70px 60px;

    border-radius: 30px;

    border: 1px solid rgba(255,255,255,0.07);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.045),
            rgba(255,255,255,0.015)
        );

    box-shadow:
        0 30px 80px rgba(0,0,0,0.30);
}


/* =========================================
   SCREENSHOT DISPLAY
========================================= */

.cosmo-visual {

    position: relative;

    height: 650px;

    display: flex;

    align-items: center;
    justify-content: center;
}


.cosmo-visual-glow {

    position: absolute;

    width: 380px;
    height: 480px;

    border-radius: 50%;

    background: rgba(255, 177, 59, 0.12);

    filter: blur(80px);
}


.phone-shot {

    position: absolute;

    overflow: hidden;

    border-radius: 24px;

    background: #fff;

    border: 5px solid #242027;

    box-shadow:
        0 30px 70px rgba(0,0,0,0.55);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.phone-shot img {

    display: block;

    width: 100%;
    height: auto;
}


.phone-shot-main {

    z-index: 3;

    width: 285px;

    transform: translateY(-5px);
}


.phone-shot-left {

    z-index: 1;

    width: 235px;

    left: 0;

    transform:
        translateY(25px)
        rotate(-7deg);

    opacity: 0.65;
}


.phone-shot-right {

    z-index: 2;

    width: 235px;

    right: 0;

    transform:
        translateY(25px)
        rotate(7deg);

    opacity: 0.70;
}


.cosmo-visual:hover .phone-shot-main {

    transform:
        translateY(-15px)
        scale(1.02);

    box-shadow:
        0 40px 90px rgba(0,0,0,0.65);
}


.cosmo-visual:hover .phone-shot-left {

    transform:
        translate(-8px, 25px)
        rotate(-9deg);
}


.cosmo-visual:hover .phone-shot-right {

    transform:
        translate(8px, 25px)
        rotate(9deg);
}


/* =========================================
   COSMO CONTENT
========================================= */

.cosmo-content {

    padding-left: 25px;
}


.cosmo-label {

    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 17px;

    color: #aaa4b1;

    font-size: 13px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.cosmo-dot {

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #ffb33d;

    box-shadow:
        0 0 14px rgba(255,179,61,0.7);
}


.cosmo-content h3 {

    margin-bottom: 5px;

    font-size: clamp(45px, 5vw, 65px);

    font-weight: 800;

    letter-spacing: -3px;
}


.cosmo-content h3 span {

    color: #ffb33d;
}


.cosmo-content h4 {

    margin-bottom: 24px;

    color: #d5d1d8;

    font-size: 19px;

    font-weight: 500;
}


.cosmo-description {

    max-width: 580px;

    margin-bottom: 35px;

    color: #aaa5b0;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================
   FEATURE GRID
========================================= */

.cosmo-features {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 15px;

    margin-bottom: 30px;
}


.cosmo-feature {

    display: flex;

    gap: 13px;

    padding: 16px;

    border-radius: 14px;

    border: 1px solid rgba(255,255,255,0.07);

    background: rgba(255,255,255,0.025);
}


.feature-icon {

    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: rgba(255,179,61,0.10);

    color: #ffb33d;

    font-size: 19px;
}


.cosmo-feature strong {

    display: block;

    margin-bottom: 4px;

    font-size: 14px;
}


.cosmo-feature span {

    display: block;

    color: #89838e;

    font-size: 12px;

    line-height: 1.5;
}


/* =========================================
   CAPABILITIES
========================================= */

.cosmo-capabilities {

    display: flex;

    flex-wrap: wrap;

    gap: 10px 18px;

    margin-bottom: 32px;
}


.cosmo-capabilities span {

    color: #aaa5b0;

    font-size: 13px;
}


.cosmo-capabilities i {

    margin-right: 5px;

    color: #ffb33d;
}


/* =========================================
   BUTTONS
========================================= */

.cosmo-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}


.cosmo-primary-btn {

    padding: 13px 22px;

    border: none;

    border-radius: 10px;

    background: #ffb33d;

    color: #151015;

    font-weight: 700;

    transition: 0.3s ease;
}


.cosmo-primary-btn:hover {

    color: #151015;

    background: #ffc15e;

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(255,179,61,0.20);
}


.cosmo-primary-btn i {

    margin-left: 7px;
}


.cosmo-contact-btn {

    padding: 12px 21px;

    border-radius: 10px;

    border: 1px solid rgba(255,255,255,0.13);

    color: white;

    background: rgba(255,255,255,0.025);

    font-weight: 600;

    transition: 0.3s ease;
}


.cosmo-contact-btn:hover {

    color: white;

    border-color: rgba(255,179,61,0.45);

    background: rgba(255,179,61,0.06);

    transform: translateY(-3px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {

    .cosmo-showcase {

        padding: 55px 35px;
    }

    .cosmo-visual {

        height: 580px;
    }

    .phone-shot-main {

        width: 250px;
    }

    .phone-shot-left,
    .phone-shot-right {

        width: 205px;
    }

}


@media (max-width: 991px) {

    .product-showcase-section {

        padding: 85px 0 100px;
    }

    .section-heading {

        margin-bottom: 50px;
    }

    .cosmo-showcase {

        padding: 45px 25px;
    }

    .cosmo-visual {

        max-width: 600px;

        height: 600px;

        margin: auto;
    }

    .phone-shot-left {

        left: 8%;
    }

    .phone-shot-right {

        right: 8%;
    }

    .cosmo-content {

        max-width: 650px;

        margin: auto;

        padding:
            20px 0
            0;
    }

}


@media (max-width: 576px) {

    .product-showcase-section {

        padding: 70px 0;
    }

    .section-heading {

        margin-bottom: 40px;
    }

    .section-heading h2 {

        font-size: 38px;

        letter-spacing: -1px;
    }

    .cosmo-showcase {

        padding: 30px 16px;

        border-radius: 20px;
    }


    /* Main screenshot on mobile */

    .cosmo-visual {

        height: 520px;
    }

    .phone-shot-main {

        width: 225px;
    }

    .phone-shot-left {

        width: 170px;

        left: -5px;

        opacity: 0.38;
    }

    .phone-shot-right {

        width: 170px;

        right: -5px;

        opacity: 0.38;
    }


    .cosmo-content h3 {

        font-size: 46px;

        letter-spacing: -2px;
    }


    .cosmo-features {

        grid-template-columns: 1fr;
    }


    .cosmo-actions {

        display: grid;

        grid-template-columns: 1fr;
    }

    .cosmo-actions .btn {

        width: 100%;

        padding: 14px;
    }

}

/* =========================================
   WHAT WE BUILD
========================================= */

.what-we-build-section {

    position: relative;

    overflow: hidden;

    padding: 120px 0;

    color: white;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(75, 86, 220, 0.11),
            transparent 30%
        ),
        radial-gradient(
            circle at 10% 80%,
            rgba(150, 54, 168, 0.10),
            transparent 30%
        ),
        #09070c;
}


/* Subtle separator from previous section */

.what-we-build-section::before {

    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 85%;
    height: 1px;

    transform: translateX(-50%);

    background: linear-gradient(
        90deg,
        transparent,
        rgba(185, 107, 197, 0.25),
        rgba(92, 104, 232, 0.25),
        transparent
    );
}


/* =========================================
   BUILD CARDS
========================================= */

.build-card {

    position: relative;

    height: 100%;

    min-height: 360px;

    overflow: hidden;

    padding: 38px;

    border-radius: 24px;

    border: 1px solid rgba(255,255,255,0.07);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.045),
            rgba(255,255,255,0.015)
        );

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


/* Gradient glow inside card */

.build-card::before {

    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -100px;
    top: -100px;

    border-radius: 50%;

    background:
        rgba(137, 59, 164, 0.14);

    filter: blur(45px);

    opacity: 0;

    transition: opacity 0.35s ease;
}


.build-card:hover {

    transform: translateY(-7px);

    border-color:
        rgba(183, 103, 199, 0.25);

    box-shadow:
        0 25px 60px rgba(0,0,0,0.28);
}


.build-card:hover::before {

    opacity: 1;
}


/* =========================================
   CARD NUMBER
========================================= */

.build-card-number {

    position: absolute;

    top: 30px;
    right: 32px;

    color: rgba(255,255,255,0.08);

    font-size: 48px;

    line-height: 1;

    font-weight: 800;

    transition: color 0.35s ease;
}


.build-card:hover .build-card-number {

    color: rgba(187, 105, 201, 0.14);
}


/* =========================================
   ICON
========================================= */

.build-icon {

    position: relative;

    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 27px;

    border-radius: 17px;

    color: #d47ddd;

    font-size: 27px;

    border:
        1px solid rgba(190, 104, 203, 0.18);

    background:
        linear-gradient(
            135deg,
            rgba(150, 55, 171, 0.16),
            rgba(73, 87, 218, 0.10)
        );

    box-shadow:
        0 12px 30px rgba(0,0,0,0.15);
}


/* =========================================
   TEXT
========================================= */

.build-card h3 {

    position: relative;

    margin-bottom: 15px;

    color: #f4f1f6;

    font-size: 25px;

    font-weight: 700;
}


.build-card p {

    position: relative;

    max-width: 520px;

    margin-bottom: 28px;

    color: #99939f;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================
   TAGS
========================================= */

.build-tags {

    position: relative;

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    padding-right: 45px;
}


.build-tags span {

    padding: 6px 11px;

    border-radius: 7px;

    color: #aaa4af;

    background:
        rgba(255,255,255,0.035);

    border:
        1px solid rgba(255,255,255,0.06);

    font-size: 11px;

    font-weight: 600;
}


/* =========================================
   ARROW
========================================= */

.build-arrow {

    position: absolute;

    right: 30px;
    bottom: 30px;

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #817b87;

    border:
        1px solid rgba(255,255,255,0.08);

    background:
        rgba(255,255,255,0.025);

    transition:
        transform 0.3s ease,
        color 0.3s ease,
        background 0.3s ease;
}


.build-card:hover .build-arrow {

    transform: rotate(45deg);

    color: white;

    background:
        linear-gradient(
            135deg,
            #8a319c,
            #4857db
        );
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .what-we-build-section {

        padding: 90px 0;
    }

    .build-card {

        min-height: 330px;
    }

}


@media (max-width: 576px) {

    .what-we-build-section {

        padding: 70px 0;
    }


    .build-card {

        min-height: auto;

        padding: 28px 24px;

        border-radius: 18px;
    }


    .build-card-number {

        top: 25px;
        right: 24px;

        font-size: 40px;
    }


    .build-icon {

        width: 55px;
        height: 55px;

        margin-bottom: 22px;

        font-size: 24px;
    }


    .build-card h3 {

        font-size: 22px;
    }


    .build-card p {

        padding-right: 0;

        margin-bottom: 24px;

        font-size: 14px;
    }


    .build-tags {

        padding-right: 45px;
    }


    .build-arrow {

        right: 22px;
        bottom: 25px;
    }

}

/* =========================================
   WHY DIGITALICON
========================================= */

.why-digitalicon {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
}


/* Subtle background glow */

.why-digitalicon::before {
    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

    left: -250px;
    top: 80px;

    background: rgba(106, 76, 255, 0.12);

    filter: blur(120px);

    border-radius: 50%;

    pointer-events: none;
}


/* Heading */

.why-heading {
    margin-bottom: 70px;
}

.why-heading .section-label {
    display: inline-block;

    margin-bottom: 16px;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;

    color: #8d7cff;
}


.why-heading h2 {
    margin: 0;

    max-width: 750px;

    font-size: clamp(38px, 5vw, 64px);

    line-height: 1.08;

    font-weight: 700;

    color: #ffffff;
}


.why-heading h2 span {
    color: rgba(255, 255, 255, 0.55);
}


/* LEFT CONTENT */

.why-intro {
    max-width: 540px;
}


.why-intro > p {
    margin: 0 0 45px;

    font-size: 18px;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.65);
}


/* Stat */

.why-stat {
    display: flex;

    align-items: center;

    gap: 22px;

    padding: 25px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}


.why-stat-number {
    font-size: 58px;

    line-height: 1;

    font-weight: 700;

    color: #ffffff;
}


.why-stat-content {
    display: flex;

    flex-direction: column;

    gap: 5px;
}


.why-stat-content strong {
    font-size: 18px;

    color: #ffffff;
}


.why-stat-content span {
    font-size: 14px;

    color: rgba(255, 255, 255, 0.5);
}


/* RIGHT LIST */

.why-list {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}


.why-item {
    display: grid;

    grid-template-columns: 60px 1fr;

    gap: 22px;

    padding: 27px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);

    transition:
        transform 0.3s ease,
        padding-left 0.3s ease;
}


.why-item:hover {
    transform: translateX(7px);
}


.why-number {
    padding-top: 3px;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    color: #7667ff;
}


.why-item h4 {
    margin: 0 0 8px;

    font-size: 21px;

    font-weight: 600;

    color: #ffffff;
}


.why-item p {
    margin: 0;

    max-width: 480px;

    font-size: 15px;

    line-height: 1.7;

    color: rgba(255, 255, 255, 0.52);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    .why-digitalicon {
        padding: 80px 0;
    }

    .why-heading {
        margin-bottom: 50px;
    }

    .why-intro {
        max-width: 100%;
    }

}


@media (max-width: 576px) {

    .why-digitalicon {
        padding: 65px 0;
    }


    .why-heading {
        margin-bottom: 40px;
    }


    .why-heading .section-label {
        font-size: 11px;

        letter-spacing: 2.5px;
    }


    .why-heading h2 {
        font-size: 36px;
    }


    .why-intro > p {
        font-size: 16px;

        margin-bottom: 35px;
    }


    .why-stat {
        gap: 16px;
    }


    .why-stat-number {
        font-size: 46px;
    }


    .why-stat-content strong {
        font-size: 16px;
    }


    .why-stat-content span {
        font-size: 12px;
    }


    .why-item {
        grid-template-columns: 42px 1fr;

        gap: 12px;

        padding: 23px 0;
    }


    .why-item h4 {
        font-size: 18px;
    }


    .why-item p {
        font-size: 14px;
    }

}
/* =========================================
   FIX - WHY DIGITALICON BACKGROUND
========================================= */

#why-digitalicon {
    background:
        radial-gradient(
            circle at 15% 30%,
            rgba(111, 66, 193, 0.20),
            transparent 35%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(73, 52, 160, 0.15),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #0d0914 0%,
            #130d1d 50%,
            #0b0911 100%
        ) !important;

    color: #ffffff !important;
}

#why-digitalicon .why-heading h2,
#why-digitalicon .why-item h4,
#why-digitalicon .why-stat-number,
#why-digitalicon .why-stat-content strong {
    color: #ffffff !important;
}

#why-digitalicon .why-heading h2 span {
    color: rgba(255, 255, 255, 0.55) !important;
}

#why-digitalicon .why-intro > p {
    color: rgba(255, 255, 255, 0.68) !important;
}

#why-digitalicon .why-item p {
    color: rgba(255, 255, 255, 0.55) !important;
}

#why-digitalicon .why-stat-content span {
    color: rgba(255, 255, 255, 0.50) !important;
}

/* =========================================
   FINAL CTA
========================================= */

.final-cta {
    position: relative;
    padding: 100px 0;
    background: #08060d;
    overflow: hidden;
}


/* Main CTA container */

.final-cta-box {
    position: relative;

    min-height: 480px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 70px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            rgba(100, 53, 180, 0.18),
            rgba(18, 12, 28, 0.90)
        );

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.30);
}


/* Glow effects */

.cta-glow {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(90px);
}


.cta-glow-one {
    width: 400px;
    height: 400px;

    left: -150px;
    top: -180px;

    background: rgba(132, 67, 255, 0.25);
}


.cta-glow-two {
    width: 350px;
    height: 350px;

    right: -100px;
    bottom: -180px;

    background: rgba(189, 55, 255, 0.18);
}


/* Content */

.final-cta-content {
    position: relative;

    z-index: 3;

    max-width: 690px;
}


.cta-label {
    display: inline-block;

    margin-bottom: 20px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;

    color: #8e75ff;
}


.final-cta h2 {
    margin: 0 0 25px;

    font-size: clamp(42px, 5.5vw, 72px);

    line-height: 1.03;

    font-weight: 700;

    letter-spacing: -2px;

    color: #ffffff;
}


.final-cta h2 span {
    display: block;

    color: rgba(255, 255, 255, 0.50);
}


.final-cta p {
    max-width: 600px;

    margin: 0 0 38px;

    font-size: 17px;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.62);
}


/* Buttons */

.cta-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 14px;
}


.cta-btn {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    padding: 0 26px;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}


.cta-btn-primary {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #7137c8,
            #5146df
        );

    box-shadow:
        0 12px 30px rgba(91, 60, 220, 0.25);
}


.cta-btn-primary:hover {
    color: #ffffff;

    transform: translateY(-3px);
}


.cta-btn-primary span {
    font-size: 20px;

    transition: transform 0.3s ease;
}


.cta-btn-primary:hover span {
    transform: translateX(5px);
}


.cta-btn-secondary {
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.18);

    background: rgba(255, 255, 255, 0.04);
}


.cta-btn-secondary:hover {
    color: #ffffff;

    transform: translateY(-3px);

    border-color: rgba(255, 255, 255, 0.35);

    background: rgba(255, 255, 255, 0.08);
}


/* =========================================
   RIGHT VISUAL
========================================= */

.cta-visual {
    position: relative;

    z-index: 2;

    flex: 0 0 320px;

    width: 320px;
    height: 320px;

    margin-left: 50px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* Orbits */

.cta-orbit {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(151, 102, 255, 0.20);
}


.orbit-one {
    width: 300px;
    height: 300px;
}


.orbit-two {
    width: 220px;
    height: 220px;

    border-color: rgba(198, 104, 255, 0.25);
}


.orbit-three {
    width: 145px;
    height: 145px;

    border-color: rgba(255, 255, 255, 0.13);
}


/* Center */

.cta-core {
    position: relative;

    width: 90px;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #763bd0,
            #3f3ad4
        );

    box-shadow:
        0 0 70px rgba(126, 65, 255, 0.40);

    color: #ffffff;

    font-size: 23px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* Little orbit dots */

.orbit-one::before,
.orbit-two::before {

    content: "";

    position: absolute;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #a876ff;

    box-shadow:
        0 0 15px rgba(168, 118, 255, 0.8);
}


.orbit-one::before {
    top: 34px;
    right: 45px;
}


.orbit-two::before {
    left: 7px;
    bottom: 65px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .final-cta {
        padding: 80px 0;
    }


    .final-cta-box {
        padding: 55px 45px;
    }


    .cta-visual {
        flex: 0 0 230px;

        width: 230px;
        height: 230px;

        margin-left: 20px;
    }


    .orbit-one {
        width: 220px;
        height: 220px;
    }


    .orbit-two {
        width: 165px;
        height: 165px;
    }


    .orbit-three {
        width: 110px;
        height: 110px;
    }


    .cta-core {
        width: 70px;
        height: 70px;

        font-size: 18px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .final-cta {
        padding: 60px 0;
    }


    .final-cta-box {
        min-height: auto;

        display: block;

        padding: 45px 25px;

        border-radius: 20px;
    }


    .final-cta h2 {
        font-size: 42px;

        letter-spacing: -1px;
    }


    .final-cta p {
        font-size: 15px;

        margin-bottom: 30px;
    }


    .cta-buttons {
        flex-direction: column;
    }


    .cta-btn {
        width: 100%;
    }


    .cta-visual {
        width: 210px;
        height: 210px;

        margin:
            50px auto
            0;
    }


    .orbit-one {
        width: 205px;
        height: 205px;
    }


    .orbit-two {
        width: 150px;
        height: 150px;
    }


    .orbit-three {
        width: 100px;
        height: 100px;
    }


    .cta-core {
        width: 65px;
        height: 65px;
    }

}
/* =========================================================
   COSMO FARMROBOT SHOWCASE
========================================================= */

.farmrobot-showcase-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background:
        radial-gradient(
            circle at 82% 45%,
            rgba(34, 197, 94, 0.10),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #08070d 0%,
            #0a100c 55%,
            #071009 100%
        );
}


/* ---------------------------------------------------------
   BACKGROUND GLOW
--------------------------------------------------------- */

.farmrobot-field-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.farmrobot-field-glow-one {
    width: 420px;
    height: 420px;
    background: rgba(34, 197, 94, 0.10);
    right: -120px;
    top: 80px;
}

.farmrobot-field-glow-two {
    width: 350px;
    height: 350px;
    background: rgba(132, 204, 22, 0.06);
    left: -130px;
    bottom: -100px;
}


/* ---------------------------------------------------------
   CONTENT
--------------------------------------------------------- */

.farmrobot-content {
    position: relative;
    z-index: 2;
}

.farmrobot-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 16px;

    color: #86efac;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.farmrobot-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #22c55e;

    box-shadow:
        0 0 0 5px rgba(34, 197, 94, 0.10),
        0 0 18px rgba(34, 197, 94, 0.70);
}


/* ---------------------------------------------------------
   DEVELOPMENT STATUS
--------------------------------------------------------- */

.farmrobot-status {
    width: fit-content;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 7px 13px;
    margin-bottom: 18px;

    border:
        1px solid rgba(34, 197, 94, 0.25);

    border-radius: 30px;

    background:
        rgba(34, 197, 94, 0.07);

    color: #86efac;

    font-size: 12px;
    font-weight: 600;
}

.farmrobot-status i {
    color: #22c55e;
}


/* ---------------------------------------------------------
   TITLE
--------------------------------------------------------- */

.farmrobot-content h3 {
    margin-bottom: 5px;

    color: #ffffff;

    font-size: clamp(38px, 5vw, 64px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
}

.farmrobot-content h3 span {
    color: #4ade80;
}

.farmrobot-content h4 {
    margin-bottom: 20px;

    color: #d1fae5;

    font-size: 17px;
    font-weight: 600;
}

.farmrobot-description {
    max-width: 560px;

    margin-bottom: 30px;

    color: #a7b0aa;

    font-size: 15px;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   FEATURES
--------------------------------------------------------- */

.farmrobot-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 12px;

    margin-bottom: 25px;
}

.farmrobot-feature {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    min-height: 90px;

    padding: 15px;

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.025);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.farmrobot-feature:hover {
    transform: translateY(-3px);

    border-color:
        rgba(34, 197, 94, 0.30);

    background:
        rgba(34, 197, 94, 0.05);
}

.farmrobot-feature-icon {
    flex: 0 0 38px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background:
        rgba(34, 197, 94, 0.10);

    color: #4ade80;

    font-size: 17px;
}

.farmrobot-feature strong {
    display: block;

    margin-bottom: 4px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;
}

.farmrobot-feature span {
    display: block;

    color: #858f88;

    font-size: 11px;
    line-height: 1.5;
}


/* ---------------------------------------------------------
   CAPABILITIES
--------------------------------------------------------- */

.farmrobot-capabilities {
    display: flex;
    flex-wrap: wrap;

    gap: 16px;

    margin-bottom: 28px;
}

.farmrobot-capabilities span {
    display: flex;
    align-items: center;

    gap: 6px;

    color: #9ca7a0;

    font-size: 11px;
}

.farmrobot-capabilities i {
    color: #22c55e;
}


/* ---------------------------------------------------------
   BUTTON
--------------------------------------------------------- */

.farmrobot-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 20px;

    border: none;

    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            #16a34a,
            #22c55e
        );

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    box-shadow:
        0 10px 30px rgba(34, 197, 94, 0.15);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.farmrobot-primary-btn:hover {
    transform: translateY(-2px);

    color: #ffffff;

    box-shadow:
        0 15px 40px rgba(34, 197, 94, 0.25);
}


/* =========================================================
   FARMROBOT VISUAL
========================================================= */

.farmrobot-visual {
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 580px;
}

.farmrobot-image-glow {
    position: absolute;

    width: 360px;
    height: 360px;

    border-radius: 50%;

    background:
        rgba(34, 197, 94, 0.16);

    filter: blur(90px);
}


/* ---------------------------------------------------------
   APP FRAME
--------------------------------------------------------- */

.farmrobot-app-frame {
    position: relative;
    z-index: 2;

    width: min(100%, 390px);

    padding: 14px;

    border:
        1px solid rgba(74, 222, 128, 0.18);

    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.065),
            rgba(255, 255, 255, 0.018)
        );

    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.45),
        0 0 50px rgba(34, 197, 94, 0.06);

    backdrop-filter: blur(12px);
}


/* ---------------------------------------------------------
   FRAME TOP
--------------------------------------------------------- */

.farmrobot-frame-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 3px 5px 13px;

    color: #8f9b93;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.3px;
}

.farmrobot-live {
    display: flex;
    align-items: center;

    gap: 6px;

    color: #86efac;
}

.farmrobot-live span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #22c55e;

    box-shadow:
        0 0 10px #22c55e;
}


/* ---------------------------------------------------------
   PHONE SCREENSHOT
--------------------------------------------------------- */

.farmrobot-phone {
    overflow: hidden;

    border:
        1px solid rgba(255, 255, 255, 0.10);

    border-radius: 18px;

    background: #ffffff;
}

.farmrobot-phone img {
    display: block;

    width: 100%;
    height: auto;
}


/* ---------------------------------------------------------
   FRAME BOTTOM
--------------------------------------------------------- */

.farmrobot-frame-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 8px;

    padding-top: 13px;
}

.farmrobot-frame-bottom div {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 5px;

    color: #8e9991;

    font-size: 9px;
    font-weight: 600;
}

.farmrobot-frame-bottom i {
    color: #4ade80;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .farmrobot-showcase-section {
        padding: 80px 0;
    }

    .farmrobot-content {
        max-width: 650px;

        margin: 0 auto;

        text-align: center;
    }

    .farmrobot-label,
    .farmrobot-status {
        margin-left: auto;
        margin-right: auto;
    }

    .farmrobot-description {
        margin-left: auto;
        margin-right: auto;
    }

    .farmrobot-capabilities {
        justify-content: center;
    }

    .farmrobot-visual {
        min-height: auto;

        margin-top: 30px;
    }

}


@media (max-width: 576px) {

    .farmrobot-showcase-section {
        padding: 65px 0;
    }

    .farmrobot-content h3 {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .farmrobot-content h4 {
        font-size: 15px;
    }

    .farmrobot-description {
        font-size: 14px;
    }

    .farmrobot-features {
        grid-template-columns: 1fr;

        text-align: left;
    }

    .farmrobot-capabilities {
        gap: 10px 14px;
    }

    .farmrobot-app-frame {
        width: 92%;

        padding: 10px;

        border-radius: 20px;
    }

}

/* =========================================================
   SMART AGRICULTURE SECTION
========================================================= */

.smart-agriculture-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(34, 197, 94, 0.12),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #07100b 0%,
            #09150e 45%,
            #061009 100%
        );
}


/* =========================================================
   AGRICULTURE VISUAL
========================================================= */

.agriculture-visual {
    position: relative;
    padding: 20px;
}

.agriculture-image-glow {
    position: absolute;
    width: 75%;
    height: 75%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    background: rgba(34, 197, 94, 0.18);

    filter: blur(90px);

    border-radius: 50%;

    pointer-events: none;
}

.agriculture-image {
    position: relative;
    z-index: 2;

    display: block;

    width: 100%;
    min-height: 430px;
    object-fit: cover;

    border-radius: 24px;

    border: 1px solid rgba(74, 222, 128, 0.22);

    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.45),
        0 0 40px rgba(34, 197, 94, 0.06);
}


/* Floating information card */

.agriculture-floating-card {
    position: absolute;

    z-index: 5;

    right: -10px;
    bottom: -10px;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 16px 22px;

    border-radius: 16px;

    background: rgba(9, 24, 14, 0.95);

    border: 1px solid rgba(74, 222, 128, 0.25);

    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.agriculture-floating-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: #4ade80;

    font-size: 20px;

    background: rgba(34, 197, 94, 0.12);
}

.agriculture-floating-card strong {
    display: block;

    color: #ffffff;

    font-size: 14px;

    margin-bottom: 3px;
}

.agriculture-floating-card span {
    display: block;

    color: #8ca396;

    font-size: 11px;
}


/* =========================================================
   CONTENT
========================================================= */

.agriculture-content {
    max-width: 600px;
}

.agriculture-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 18px;

    color: #4ade80;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
}

.agriculture-label i {
    font-size: 16px;
}


/* Heading */

.agriculture-content h2 {
    margin-bottom: 22px;

    color: #ffffff;

    font-size: clamp(38px, 4vw, 58px);

    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -2px;
}

.agriculture-content h2 span {
    display: block;

    background: linear-gradient(
        90deg,
        #22c55e,
        #4ade80
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
}


/* Description */

.agriculture-description {
    max-width: 570px;

    margin-bottom: 35px;

    color: #a5b5aa;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   FEATURE POINTS
========================================================= */

.agriculture-points {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 15px;

    margin-bottom: 30px;
}

.agriculture-point {
    display: flex;

    gap: 14px;

    min-height: 125px;

    padding: 18px;

    border-radius: 15px;

    background: rgba(255, 255, 255, 0.025);

    border: 1px solid rgba(255, 255, 255, 0.09);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.agriculture-point:hover {
    transform: translateY(-4px);

    border-color: rgba(74, 222, 128, 0.35);

    background: rgba(34, 197, 94, 0.05);
}


/* Feature icon */

.agriculture-point-icon {
    flex: 0 0 auto;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    color: #4ade80;

    font-size: 18px;

    background: rgba(34, 197, 94, 0.11);

    border: 1px solid rgba(74, 222, 128, 0.08);
}


/* Feature text */

.agriculture-point strong {
    display: block;

    margin-bottom: 6px;

    color: #ffffff;

    font-size: 14px;
}

.agriculture-point span {
    display: block;

    color: #819287;

    font-size: 12px;

    line-height: 1.55;
}


/* =========================================================
   TECHNOLOGY TAGS
========================================================= */

.agriculture-tech {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}

.agriculture-tech span {
    display: inline-flex;

    align-items: center;

    padding: 7px 13px;

    border-radius: 20px;

    color: #82d99e;

    font-size: 11px;
    font-weight: 600;

    background: rgba(34, 197, 94, 0.07);

    border: 1px solid rgba(74, 222, 128, 0.16);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .smart-agriculture-section {
        padding: 90px 0;
    }

    .agriculture-content {
        max-width: none;
    }

    .agriculture-visual {
        max-width: 700px;

        margin: 0 auto 35px;
    }

    .agriculture-image {
        min-height: 380px;
    }

}


@media (max-width: 767.98px) {

    .smart-agriculture-section {
        padding: 70px 0;
    }

    .agriculture-content h2 {
        font-size: 38px;

        letter-spacing: -1px;
    }

    .agriculture-description {
        font-size: 14px;
    }

    .agriculture-points {
        grid-template-columns: 1fr;
    }

    .agriculture-point {
        min-height: auto;
    }

    .agriculture-image {
        min-height: 300px;

        border-radius: 18px;
    }

    .agriculture-floating-card {
        position: relative;

        right: auto;
        bottom: auto;

        margin:
            -35px 15px
            0;

        width: calc(100% - 30px);
    }

}


@media (max-width: 575.98px) {

    .smart-agriculture-section {
        padding: 60px 0;
    }

    .agriculture-visual {
        padding: 5px;
    }

    .agriculture-image {
        min-height: 250px;
    }

    .agriculture-content h2 {
        font-size: 33px;
    }

    .agriculture-point {
        padding: 15px;
    }

}

/* =========================================================
   HOW COSMO FARMROBOT WORKS
========================================================= */

.farmrobot-workflow-section {
    position: relative;
    overflow: hidden;

    padding: 115px 0;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(34, 197, 94, 0.10),
            transparent 35%
        ),
        #070b08;

    border-top: 1px solid rgba(74, 222, 128, 0.08);
}


/* =========================================================
   HEADING
========================================================= */

.farmrobot-workflow-heading {
    max-width: 720px;

    margin: 0 auto 70px;
}

.farmrobot-workflow-label {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 18px;

    color: #4ade80;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}

.farmrobot-workflow-heading h2 {
    margin-bottom: 18px;

    color: #ffffff;

    font-size: clamp(38px, 4vw, 56px);

    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -2px;
}

.farmrobot-workflow-heading h2 span {
    color: #4ade80;
}

.farmrobot-workflow-heading p {
    max-width: 620px;

    margin: 0 auto;

    color: #8fa097;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   WORKFLOW
========================================================= */

.farmrobot-workflow {
    display: flex;

    align-items: stretch;

    justify-content: center;

    width: 100%;

    margin-bottom: 55px;
}


/* Individual stage */

.workflow-item {
    position: relative;

    flex: 1 1 0;

    max-width: 220px;

    min-height: 260px;

    padding: 28px 20px;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.045),
            rgba(255,255,255,0.015)
        );

    border: 1px solid rgba(255,255,255,0.09);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.workflow-item:hover {
    transform: translateY(-7px);

    border-color: rgba(74,222,128,0.38);

    background:
        linear-gradient(
            145deg,
            rgba(34,197,94,0.09),
            rgba(255,255,255,0.02)
        );
}


/* Stage number */

.workflow-number {
    position: absolute;

    right: 17px;

    top: 13px;

    color: rgba(255,255,255,0.08);

    font-size: 31px;

    font-weight: 800;
}


/* Icon */

.workflow-icon {
    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 27px;

    border-radius: 14px;

    color: #4ade80;

    font-size: 23px;

    background: rgba(34,197,94,0.11);

    border: 1px solid rgba(74,222,128,0.12);
}


/* Text */

.workflow-item h4 {
    margin-bottom: 11px;

    color: #ffffff;

    font-size: 16px;

    font-weight: 700;
}

.workflow-item p {
    margin: 0;

    color: #7f9186;

    font-size: 12px;

    line-height: 1.65;
}


/* =========================================================
   CONNECTORS
========================================================= */

.workflow-connector {
    position: relative;

    flex: 0 0 48px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.workflow-line {
    position: absolute;

    left: 0;

    right: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(74,222,128,0.15),
            rgba(74,222,128,0.65),
            rgba(74,222,128,0.15)
        );
}

.workflow-arrow {
    position: relative;

    z-index: 2;

    width: 25px;

    height: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #4ade80;

    font-size: 11px;

    background: #09120c;

    border: 1px solid rgba(74,222,128,0.25);
}


/* =========================================================
   CONNECTION STATUS
========================================================= */

.workflow-status {
    width: fit-content;

    max-width: 100%;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 22px;

    padding: 13px 24px;

    border-radius: 50px;

    color: #83968a;

    font-size: 11px;

    background: rgba(255,255,255,0.025);

    border: 1px solid rgba(255,255,255,0.08);
}

.workflow-status > div {
    display: flex;

    align-items: center;

    gap: 6px;
}

.workflow-status strong {
    color: #c8d6cd;

    font-size: 10px;

    letter-spacing: 1px;
}

.workflow-status i {
    color: #4ade80;
}

.workflow-status-dot {
    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #22c55e;

    box-shadow: 0 0 10px rgba(34,197,94,0.8);
}

.workflow-status-separator {
    width: 1px;

    height: 17px;

    background: rgba(255,255,255,0.12);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199.98px) {

    .farmrobot-workflow {
        display: grid;

        grid-template-columns:
            repeat(3, minmax(0,1fr));

        gap: 18px;
    }

    .workflow-item {
        max-width: none;

        min-height: 230px;
    }

    .workflow-connector {
        display: none;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .farmrobot-workflow-section {
        padding: 75px 0;
    }

    .farmrobot-workflow-heading {
        margin-bottom: 45px;
    }

    .farmrobot-workflow-heading h2 {
        font-size: 37px;

        letter-spacing: -1px;
    }

    .farmrobot-workflow {
        grid-template-columns: 1fr;
    }

    .workflow-item {
        min-height: auto;

        padding: 22px;
    }

    .workflow-icon {
        margin-bottom: 18px;
    }

    .workflow-status {
        border-radius: 18px;

        gap: 14px;

        padding: 15px 18px;
    }

    .workflow-status-separator {
        display: none;
    }

}

/* =========================================================
   BLOG PAGE
========================================================= */

.blog-hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0 90px;
    background:
        radial-gradient(circle at 50% 0%,
            rgba(124, 58, 237, 0.18),
            transparent 38%),
        linear-gradient(180deg, #09070f 0%, #07070b 100%);
}

.blog-hero-content {
    max-width: 800px;
    margin: auto;
}

.blog-page-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: #a78bfa;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.blog-hero h1 {
    color: #fff;
    font-size: clamp(44px, 6vw, 72px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 25px;
}

.blog-hero h1 span {
    background: linear-gradient(90deg, #8b5cf6, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-hero p {
    max-width: 680px;
    margin: auto;
    color: #9692a0;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   COMMON BLOG HEADING
========================================================= */

.blog-section-heading {
    margin-bottom: 35px;
}

.blog-section-heading > span {
    display: block;
    margin-bottom: 8px;
    color: #8b5cf6;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.blog-section-heading h2 {
    margin: 0;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
}


/* =========================================================
   FEATURED ARTICLE
========================================================= */

.blog-featured-section {
    padding: 100px 0;
    background: #07070b;
}

.blog-featured-card {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 24px;
    background: rgba(255,255,255,0.025);
    box-shadow: 0 30px 70px rgba(0,0,0,0.30);
}

.blog-featured-image {
    position: relative;
    height: 100%;
    min-height: 510px;
    overflow: hidden;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    min-height: 510px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-featured-card:hover .blog-featured-image img {
    transform: scale(1.035);
}

.blog-featured-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(0,0,0,0.05),
            rgba(7,7,11,0.25));
}

.blog-image-badge {
    position: absolute;
    left: 22px;
    bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border: 1px solid rgba(74,222,128,0.28);
    border-radius: 30px;
    background: rgba(5,20,10,0.88);
    color: #86efac;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.3px;
    backdrop-filter: blur(10px);
}

.blog-featured-content {
    height: 100%;
    padding: 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 20px;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #777381;
    font-size: 11px;
}

.blog-meta i {
    color: #8b5cf6;
}

.blog-development-badge {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 11px;
    margin-bottom: 20px;
    border: 1px solid rgba(34,197,94,0.20);
    border-radius: 20px;
    background: rgba(34,197,94,0.06);
    color: #86efac;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.blog-development-badge span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 9px rgba(34,197,94,0.8);
}

.blog-featured-content h2 {
    margin-bottom: 20px;
    color: #fff;
    font-size: clamp(29px, 3vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.3px;
}

.blog-featured-content > p {
    margin-bottom: 25px;
    color: #96939d;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   TAGS
========================================================= */

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 28px;
}

.blog-tags span {
    padding: 6px 10px;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 20px;
    background: rgba(255,255,255,0.03);
    color: #9995a1;
    font-size: 10px;
}


/* =========================================================
   READ BUTTON
========================================================= */

.blog-read-btn {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 18px;
    border-radius: 8px;
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.25s ease;
}

.blog-read-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(124,58,237,0.25);
}

.blog-read-btn i {
    transition: transform 0.25s ease;
}

.blog-read-btn:hover i {
    transform: translateX(3px);
}


/* =========================================================
   BLOG LIST
========================================================= */

.blog-list-section {
    padding: 100px 0 120px;
    background:
        linear-gradient(180deg, #07070b, #09070e);
}

.blog-card {
    position: relative;
    height: 100%;
    min-height: 390px;
    padding: 35px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    background:
        linear-gradient(145deg,
            rgba(255,255,255,0.04),
            rgba(255,255,255,0.015));
    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139,92,246,0.30);
}

.blog-card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 13px;
    font-size: 21px;
}

.blog-card-icon.purple {
    color: #c4b5fd;
    background: rgba(124,58,237,0.12);
}

.blog-card-icon.blue {
    color: #93c5fd;
    background: rgba(59,130,246,0.11);
}

.blog-card-category {
    margin-bottom: 12px;
    color: #8b5cf6;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.blog-card h3 {
    max-width: 500px;
    margin-bottom: 16px;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
}

.blog-card > p {
    max-width: 540px;
    margin-bottom: 22px;
    color: #88858f;
    font-size: 13px;
    line-height: 1.75;
}

.blog-coming-soon {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 6px;
    background: rgba(255,255,255,0.04);
    color: #6f6b76;
    font-size: 10px;
    font-weight: 600;
}


/* =========================================================
   BLOG RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .blog-hero {
        padding: 95px 0 75px;
    }

    .blog-featured-section,
    .blog-list-section {
        padding: 80px 0;
    }

    .blog-featured-image,
    .blog-featured-image img {
        min-height: 400px;
    }

    .blog-featured-content {
        padding: 40px;
    }
}

@media (max-width: 575.98px) {

    .blog-hero {
        padding: 75px 0 60px;
    }

    .blog-hero h1 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .blog-hero p {
        font-size: 14px;
    }

    .blog-featured-section,
    .blog-list-section {
        padding: 65px 0;
    }

    .blog-featured-card {
        border-radius: 18px;
    }

    .blog-featured-image,
    .blog-featured-image img {
        min-height: 280px;
    }

    .blog-featured-content {
        padding: 28px 22px 32px;
    }

    .blog-featured-content h2 {
        font-size: 28px;
    }

    .blog-card {
        min-height: auto;
        padding: 27px 22px;
    }

    .blog-card h3 {
        font-size: 20px;
    }
}
/* =========================================================
   BLOG ARTICLE
========================================================= */

.article-hero {
    position: relative;
    padding: 105px 0 75px;
    overflow: hidden;
    background:
        radial-gradient(circle at 25% 20%,
            rgba(34, 197, 94, 0.10),
            transparent 30%),
        radial-gradient(circle at 75% 10%,
            rgba(124, 58, 237, 0.14),
            transparent 35%),
        #07070b;
}

.article-hero-content {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.article-back-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 32px;
    color: #8d8995;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease;
}

.article-back-link:hover {
    color: #fff;
}

.article-category {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto 20px;
    padding: 8px 13px;
    border: 1px solid rgba(34, 197, 94, 0.20);
    border-radius: 30px;
    background: rgba(34, 197, 94, 0.06);
    color: #86efac;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.article-hero h1 {
    max-width: 900px;
    margin: 0 auto 24px;
    color: #fff;
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2.5px;
}

.article-hero h1 span {
    background: linear-gradient(90deg, #86efac, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.article-intro {
    max-width: 760px;
    margin: 0 auto 28px;
    color: #9b97a3;
    font-size: 16px;
    line-height: 1.8;
}

.article-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #77737f;
    font-size: 11px;
}

.article-meta i {
    color: #8b5cf6;
}

.article-development {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 9px;
    margin: auto;
    padding: 8px 13px;
    border: 1px solid rgba(34, 197, 94, 0.18);
    border-radius: 30px;
    background: rgba(34, 197, 94, 0.05);
    color: #86efac;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.article-development span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.8);
}


/* =========================================================
   MAIN ARTICLE IMAGE
========================================================= */

.article-image-section {
    padding: 0 0 70px;
    background: #07070b;
}

.article-main-image {
    max-width: 1100px;
    height: 520px;
    margin: auto;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}

.article-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =========================================================
   ARTICLE BODY
========================================================= */

.article-content-section {
    padding: 20px 0 110px;
    background:
        linear-gradient(180deg, #07070b, #09080d);
}

.article-body {
    color: #9c98a3;
    font-size: 15px;
    line-height: 1.9;
}

.article-body p {
    margin-bottom: 24px;
}

.article-body strong {
    color: #ddd9e3;
}

.article-lead {
    color: #c5c1ca;
    font-size: 19px;
    line-height: 1.8;
}

.article-body h2 {
    margin: 65px 0 20px;
    color: #fff;
    font-size: 31px;
    font-weight: 750;
    letter-spacing: -0.8px;
}


/* =========================================================
   ARTICLE HIGHLIGHT
========================================================= */

.article-highlight {
    display: flex;
    gap: 20px;
    margin: 42px 0;
    padding: 28px;
    border: 1px solid rgba(139,92,246,0.18);
    border-radius: 16px;
    background:
        linear-gradient(
            135deg,
            rgba(124,58,237,0.08),
            rgba(34,197,94,0.035)
        );
}

.article-highlight > i {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: rgba(124,58,237,0.12);
    color: #c4b5fd;
    font-size: 20px;
}

.article-highlight strong {
    display: block;
    margin-bottom: 7px;
    color: #fff;
    font-size: 16px;
}

.article-highlight p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   TELEMETRY FEATURE GRID
========================================================= */

.article-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 35px 0 50px;
}

.article-feature {
    display: flex;
    flex-direction: column;
    padding: 22px;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    background: rgba(255,255,255,0.025);
}

.article-feature i {
    margin-bottom: 14px;
    color: #a78bfa;
    font-size: 22px;
}

.article-feature strong {
    margin-bottom: 5px;
    color: #fff;
    font-size: 14px;
}

.article-feature span {
    color: #85818c;
    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
   MOBILE APP SHOWCASE
========================================================= */

.article-app-showcase {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 45px;
    margin: 45px 0 60px;
    padding: 40px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    background:
        radial-gradient(circle at 15% 50%,
            rgba(34,197,94,0.07),
            transparent 40%),
        rgba(255,255,255,0.02);
}

.article-app-image {
    text-align: center;
}

.article-app-image img {
    max-width: 230px;
    width: 100%;
    max-height: 450px;
    object-fit: contain;
    filter: drop-shadow(0 25px 25px rgba(0,0,0,0.4));
}

.article-app-content > span {
    display: block;
    margin-bottom: 8px;
    color: #22c55e;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.article-app-content h3 {
    margin-bottom: 15px;
    color: #fff;
    font-size: 27px;
    font-weight: 700;
}

.article-app-content p {
    color: #8d8994;
    font-size: 13px;
}

.article-app-content ul {
    padding: 0;
    margin: 20px 0 0;
    list-style: none;
}

.article-app-content li {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 11px;
    color: #aaa6af;
    font-size: 12px;
}

.article-app-content li i {
    color: #22c55e;
}


/* =========================================================
   SYSTEM FLOW
========================================================= */

.article-system-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 40px 0 55px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    background: rgba(255,255,255,0.02);
}

.article-system-flow > div {
    flex: 1;
    min-height: 95px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 11px;
    background: rgba(255,255,255,0.025);
}

.article-system-flow > div i {
    color: #a78bfa;
    font-size: 24px;
}

.article-system-flow > div strong {
    color: #ddd9e2;
    font-size: 11px;
}

.article-system-flow > i {
    color: #57535d;
}


/* =========================================================
   PROJECT STATUS
========================================================= */

.article-status-box {
    display: flex;
    gap: 22px;
    margin-top: 55px;
    padding: 30px;
    border: 1px solid rgba(34,197,94,0.18);
    border-radius: 17px;
    background:
        linear-gradient(
            135deg,
            rgba(34,197,94,0.07),
            rgba(34,197,94,0.02)
        );
}

.article-status-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: rgba(34,197,94,0.11);
    color: #86efac;
    font-size: 22px;
}

.article-status-box span {
    display: block;
    margin-bottom: 5px;
    color: #22c55e;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.article-status-box h3 {
    margin-bottom: 8px;
    color: #fff;
    font-size: 21px;
    font-weight: 700;
}

.article-status-box p {
    margin: 0;
    color: #8e8a94;
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   ARTICLE BOTTOM
========================================================= */

.article-bottom-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 45px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.article-bottom-tags span {
    padding: 7px 11px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    background: rgba(255,255,255,0.025);
    color: #8d8994;
    font-size: 10px;
}

.article-footer-link {
    margin-top: 40px;
}

.article-footer-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #a78bfa;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.article-footer-link a:hover {
    color: #c4b5fd;
}


/* =========================================================
   ARTICLE MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .article-hero {
        padding: 75px 0 55px;
    }

    .article-hero h1 {
        font-size: 40px;
        letter-spacing: -1.8px;
    }

    .article-intro {
        font-size: 14px;
    }

    .article-main-image {
        height: 320px;
        border-radius: 16px;
    }

    .article-image-section {
        padding-bottom: 45px;
    }

    .article-content-section {
        padding-bottom: 75px;
    }

    .article-body h2 {
        margin-top: 50px;
        font-size: 27px;
    }

    .article-lead {
        font-size: 17px;
    }

    .article-feature-grid {
        grid-template-columns: 1fr;
    }

    .article-app-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 28px 20px;
    }

    .article-app-image img {
        max-width: 190px;
    }

    .article-system-flow {
        flex-direction: column;
    }

    .article-system-flow > div {
        width: 100%;
        min-height: 80px;
    }

    .article-system-flow > i {
        transform: rotate(90deg);
    }

    .article-highlight,
    .article-status-box {
        padding: 22px;
    }
}

@media (max-width: 575.98px) {

    .article-hero h1 {
        font-size: 35px;
    }

    .article-meta {
        gap: 10px 16px;
    }

    .article-main-image {
        height: 250px;
    }

    .article-highlight {
        flex-direction: column;
    }

    .article-status-box {
        flex-direction: column;
    }
}

/* =========================================================
   ARTICLE INLINE FARM IMAGES
========================================================= */

.article-inline-image {
    margin: 38px 0 55px;
}

.article-inline-image img {
    display: block;
    width: 100%;
    height: 390px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.28);
}

.article-inline-image figcaption {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    color: #706c77;
    font-size: 11px;
}

.article-inline-image figcaption i {
    color: #22c55e;
}

@media (max-width: 767.98px) {

    .article-inline-image {
        margin: 30px 0 45px;
    }

    .article-inline-image img {
        height: 260px;
        border-radius: 14px;
    }
}