/* =========================================================
   MALATI IT SOLUTIONS
   ABOUT PAGE — PREMIUM CORPORATE VISUAL SYSTEM
   File: assets/css/about.css
========================================================= */

/* =========================================================
   GLOBAL VARIABLES
========================================================= */

:root {
    --about-green: #94c045;
    --about-green-light: #a8cf5a;
    --about-green-dark: #789f32;

    --about-dark: #172019;
    --about-dark-2: #202820;

    --about-text: #3c4133;
    --about-muted: #6f756b;

    --about-light: #f7f9f3;
    --about-white: #ffffff;

    --about-border: rgba(148, 192, 69, 0.16);

    --about-shadow:
        0 20px 55px rgba(32, 40, 32, 0.09);

    --about-radius: 20px;
}


/* =========================================================
   RESET
========================================================= */

.malati-about-page *,
.malati-about-hero *,
.malati-about-story *,
.malati-about-values *,
.malati-about-purpose *,
.malati-about-capabilities *,
.malati-about-difference *,
.malati-about-cta * {
    box-sizing: border-box;
}


/* =========================================================
   ABOUT HERO
========================================================= */

.malati-about-hero {
    position: relative;

    min-height: 610px;

    display: flex;
    align-items: center;

    padding: 145px 0 95px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(148, 192, 69, 0.15),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f8faf5 60%,
            #eef4e6 100%
        );
}


/* Decorative glow */

.malati-about-glow {
    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    filter: blur(90px);

    pointer-events: none;
}

.malati-about-glow-one {
    top: -180px;
    right: -120px;

    background: rgba(148, 192, 69, 0.16);
}

.malati-about-glow-two {
    bottom: -250px;
    left: -180px;

    background: rgba(148, 192, 69, 0.07);
}


/* Hero content */

.malati-about-hero-content {
    position: relative;

    z-index: 3;

    max-width: 800px;
}


/* Eyebrow */

.malati-about-eyebrow {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 22px;

    color: var(--about-green-dark);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2.4px;
}

.malati-about-eyebrow span {
    width: 35px;
    height: 2px;

    display: inline-block;

    background: var(--about-green);
}


/* Hero title */

.malati-about-hero h1 {
    max-width: 850px;

    margin: 0;

    color: var(--about-dark);

    font-family: "Poppins", sans-serif;

    font-size: clamp(42px, 5vw, 68px);

    font-weight: 700;

    line-height: 1.08;

    letter-spacing: -2px;
}

.malati-about-hero h1 span {
    color: var(--about-green);
}


/* Hero paragraph */

.malati-about-hero-lead {
    max-width: 720px;

    margin: 27px 0 0;

    color: var(--about-muted);

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   HERO BADGES
========================================================= */

.malati-about-hero-badges {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 34px;
}

.malati-about-hero-badge {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 9px 15px;

    border-radius: 50px;

    background: rgba(255, 255, 255, 0.75);

    border: 1px solid rgba(148, 192, 69, 0.18);

    color: var(--about-text);

    font-size: 11px;

    font-weight: 600;

    box-shadow:
        0 10px 25px rgba(32, 40, 32, 0.05);
}

.malati-about-hero-badge i {
    color: var(--about-green);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.malati-about-hero-visual {
    position: relative;

    width: 440px;
    height: 440px;

    max-width: 100%;

    margin: auto;
}


/* Rings */

.malati-about-ring {
    position: absolute;

    top: 50%;
    left: 50%;

    border-radius: 50%;

    transform: translate(-50%, -50%);

    border: 1px solid rgba(148, 192, 69, 0.22);
}

.malati-about-ring-one {
    width: 280px;
    height: 280px;

    animation:
        aboutRingSpin 18s linear infinite;
}

.malati-about-ring-two {
    width: 390px;
    height: 390px;

    border-style: dashed;

    animation:
        aboutRingSpinReverse 27s linear infinite;
}

@keyframes aboutRingSpin {

    from {
        transform:
            translate(-50%, -50%)
            rotate(0deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }
}

@keyframes aboutRingSpinReverse {

    from {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(0deg);
    }
}


/* Central element */

.malati-about-core {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 190px;
    height: 190px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.92);

    border: 1px solid rgba(148, 192, 69, 0.2);

    box-shadow:
        0 30px 70px rgba(38, 52, 35, 0.13),
        inset 0 0 0 10px rgba(148, 192, 69, 0.035);

    backdrop-filter: blur(10px);

    z-index: 4;
}

.malati-about-core img {
    width: 115px;

    height: auto;

    margin-bottom: 8px;
}

.malati-about-core span {
    color: var(--about-green-dark);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.8px;
}


/* Floating labels */

.malati-about-floating {
    position: absolute;

    z-index: 6;

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 9px 13px;

    border-radius: 50px;

    background: rgba(255, 255, 255, 0.94);

    border: 1px solid rgba(148, 192, 69, 0.16);

    box-shadow:
        0 15px 35px rgba(32, 40, 32, 0.08);

    color: var(--about-dark);

    font-size: 10px;

    font-weight: 600;

    animation:
        aboutFloat 4.5s ease-in-out infinite;
}

.malati-about-floating::before {
    content: "";

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--about-green);
}

.about-float-one {
    top: 13%;
    left: 2%;
}

.about-float-two {
    top: 19%;
    right: 0;

    animation-delay: 0.8s;
}

.about-float-three {
    bottom: 18%;
    left: 0;

    animation-delay: 1.5s;
}

.about-float-four {
    bottom: 10%;
    right: 5%;

    animation-delay: 2.2s;
}

@keyframes aboutFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}


/* =========================================================
   COMMON SECTIONS
========================================================= */

.malati-about-story,
.malati-about-values,
.malati-about-purpose,
.malati-about-capabilities,
.malati-about-difference {
    position: relative;

    padding: 110px 0;
}


/* Section label */

.malati-about-label {
    margin-bottom: 14px;

    color: var(--about-green-dark);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2.5px;
}


/* Section title */

.malati-about-heading {
    margin-bottom: 25px;

    color: var(--about-dark);

    font-family: "Poppins", sans-serif;

    font-size: clamp(32px, 4vw, 48px);

    font-weight: 600;

    line-height: 1.18;

    letter-spacing: -1px;
}

.malati-about-heading span {
    color: var(--about-green);
}


/* Body text */

.malati-about-text {
    color: var(--about-muted);

    font-size: 15px;

    line-height: 1.85;
}


/* =========================================================
   COMPANY STORY
========================================================= */

.malati-about-story {
    background: #ffffff;
}

.malati-about-story-card {
    padding: 45px;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f7faf3
        );

    border: 1px solid rgba(148, 192, 69, 0.12);

    box-shadow:
        0 20px 55px rgba(32, 40, 32, 0.06);
}


/* Story highlight */

.malati-about-highlight {
    position: relative;

    padding: 40px;

    overflow: hidden;

    border-radius: 22px;

    background: var(--about-dark);

    box-shadow:
        0 25px 60px rgba(23, 32, 25, 0.15);
}

.malati-about-highlight::after {
    content: "";

    position: absolute;

    right: -100px;
    bottom: -100px;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background: rgba(148, 192, 69, 0.09);
}

.malati-about-highlight h3 {
    position: relative;

    z-index: 2;

    margin-bottom: 20px;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 27px;

    line-height: 1.3;
}

.malati-about-highlight h3 span {
    color: var(--about-green);
}

.malati-about-highlight p {
    position: relative;

    z-index: 2;

    margin: 0;

    color: rgba(255, 255, 255, 0.62);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   COMPANY STATS
========================================================= */

.malati-about-stats {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;

    margin-top: 30px;
}

.malati-about-stat {
    padding: 22px;

    border-radius: 16px;

    background: var(--about-light);

    border: 1px solid rgba(148, 192, 69, 0.1);
}

.malati-about-stat strong {
    display: block;

    margin-bottom: 5px;

    color: var(--about-green-dark);

    font-family: "Poppins", sans-serif;

    font-size: 24px;
}

.malati-about-stat span {
    color: var(--about-muted);

    font-size: 11px;
}


/* =========================================================
   VALUES
========================================================= */

.malati-about-values {
    background: var(--about-light);
}

.malati-about-value-card {
    height: 100%;

    padding: 35px 30px;

    border-radius: 19px;

    background: #ffffff;

    border: 1px solid rgba(60, 65, 51, 0.07);

    box-shadow:
        0 10px 35px rgba(32, 40, 32, 0.04);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.malati-about-value-card:hover {
    transform: translateY(-9px);

    border-color:
        rgba(148, 192, 69, 0.25);

    box-shadow:
        0 25px 55px rgba(32, 40, 32, 0.1);
}

.malati-about-value-icon {
    width: 56px;
    height: 56px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 15px;

    color: var(--about-green-dark);

    background:
        rgba(148, 192, 69, 0.1);

    font-size: 23px;

    transition:
        transform 0.35s ease;
}

.malati-about-value-card:hover
.malati-about-value-icon {
    transform:
        rotate(-5deg)
        scale(1.08);
}

.malati-about-value-card h3 {
    margin-bottom: 12px;

    color: var(--about-dark);

    font-family: "Poppins", sans-serif;

    font-size: 19px;
}

.malati-about-value-card p {
    margin: 0;

    color: var(--about-muted);

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   MISSION / VISION
========================================================= */

.malati-about-purpose {
    background: #ffffff;
}

.malati-about-purpose-card {
    position: relative;

    height: 100%;

    padding: 45px;

    overflow: hidden;

    border-radius: 22px;

    background: #ffffff;

    border: 1px solid rgba(148, 192, 69, 0.12);

    box-shadow:
        0 15px 45px rgba(32, 40, 32, 0.06);
}

.malati-about-purpose-card::after {
    content: "";

    position: absolute;

    right: -80px;
    bottom: -100px;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background:
        rgba(148, 192, 69, 0.055);
}

.malati-about-purpose-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 16px;

    color: var(--about-green-dark);

    background:
        rgba(148, 192, 69, 0.1);

    font-size: 24px;
}

.malati-about-purpose-card h2 {
    position: relative;

    z-index: 2;

    margin-bottom: 18px;

    color: var(--about-dark);

    font-family: "Poppins", sans-serif;

    font-size: 31px;

    font-weight: 600;
}

.malati-about-purpose-card h2 span {
    color: var(--about-green);
}

.malati-about-purpose-card p {
    position: relative;

    z-index: 2;

    margin: 0;

    color: var(--about-muted);

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   CAPABILITIES
========================================================= */

.malati-about-capabilities {
    background: var(--about-dark);
}

.malati-about-capabilities .malati-about-label {
    color: var(--about-green-light);
}

.malati-about-capabilities .malati-about-heading {
    color: #ffffff;
}

.malati-about-capabilities-intro {
    max-width: 700px;

    margin-bottom: 55px;

    color:
        rgba(255, 255, 255, 0.62);

    line-height: 1.8;
}


/* Capability card */

.malati-about-capability {
    position: relative;

    height: 100%;

    padding: 32px;

    border-radius: 18px;

    background:
        rgba(255, 255, 255, 0.035);

    border: 1px solid
        rgba(255, 255, 255, 0.08);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease;
}

.malati-about-capability:hover {
    transform: translateY(-8px);

    background:
        rgba(148, 192, 69, 0.07);

    border-color:
        rgba(148, 192, 69, 0.25);
}

.malati-about-capability i {
    display: inline-flex;

    width: 52px;
    height: 52px;

    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 14px;

    color: var(--about-green);

    background:
        rgba(148, 192, 69, 0.1);

    font-size: 22px;
}

.malati-about-capability h3 {
    margin-bottom: 11px;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 18px;
}

.malati-about-capability p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.55);

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   DIFFERENCE
========================================================= */

.malati-about-difference {
    background: var(--about-light);
}

.malati-about-difference-list {
    margin-top: 30px;
}

.malati-about-difference-item {
    display: flex;

    align-items: flex-start;

    gap: 15px;

    margin-bottom: 22px;
}

.malati-about-difference-icon {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--about-green-dark);

    background:
        rgba(148, 192, 69, 0.11);
}

.malati-about-difference-item h3 {
    margin: 0 0 5px;

    color: var(--about-dark);

    font-family: "Poppins", sans-serif;

    font-size: 17px;
}

.malati-about-difference-item p {
    margin: 0;

    color: var(--about-muted);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   DIFFERENCE VISUAL
========================================================= */

.malati-about-difference-visual {
    position: relative;

    min-height: 440px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.malati-about-difference-circle {
    width: 310px;
    height: 310px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f0f5e8
        );

    border:
        1px solid
        rgba(148, 192, 69, 0.18);

    box-shadow:
        0 30px 70px rgba(32, 40, 32, 0.1);
}

.malati-about-difference-circle strong {
    color: var(--about-green-dark);

    font-family: "Poppins", sans-serif;

    font-size: 40px;

    line-height: 1;
}

.malati-about-difference-circle span {
    max-width: 180px;

    margin-top: 10px;

    text-align: center;

    color: var(--about-muted);

    font-size: 12px;

    line-height: 1.6;
}


/* Floating difference labels */

.malati-about-difference-tag {
    position: absolute;

    padding: 11px 16px;

    border-radius: 50px;

    background: #ffffff;

    border: 1px solid
        rgba(148, 192, 69, 0.15);

    box-shadow:
        0 15px 35px
        rgba(32, 40, 32, 0.08);

    color: var(--about-dark);

    font-size: 11px;

    font-weight: 600;
}

.difference-tag-one {
    top: 12%;
    left: 4%;
}

.difference-tag-two {
    top: 22%;
    right: 0;
}

.difference-tag-three {
    bottom: 18%;
    left: 3%;
}

.difference-tag-four {
    bottom: 10%;
    right: 5%;
}


/* =========================================================
   CTA
========================================================= */

.malati-about-cta {
    position: relative;

    padding: 95px 0;

    overflow: hidden;

    background: var(--about-dark);
}

.malati-about-cta::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -250px;
    right: -100px;

    border-radius: 50%;

    background:
        rgba(148, 192, 69, 0.12);

    filter: blur(75px);
}

.malati-about-cta-content {
    position: relative;

    z-index: 2;
}

.malati-about-cta .malati-about-label {
    color: var(--about-green);
}

.malati-about-cta h2 {
    max-width: 850px;

    margin-bottom: 20px;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: clamp(35px, 4vw, 52px);

    line-height: 1.12;
}

.malati-about-cta h2 span {
    color: var(--about-green);
}

.malati-about-cta p {
    max-width: 750px;

    margin-bottom: 30px;

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 15px;

    line-height: 1.8;
}

.malati-about-cta-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 54px;

    padding: 0 28px;

    border-radius: 50px;

    color: #ffffff;

    background: var(--about-green);

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 15px 35px
        rgba(148, 192, 69, 0.2);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.malati-about-cta-button:hover {
    color: #ffffff;

    background: var(--about-green-dark);

    transform: translateY(-4px);

    box-shadow:
        0 20px 40px
        rgba(148, 192, 69, 0.28);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .malati-about-hero {
        min-height: auto;

        padding:
            125px 0
            75px;
    }

    .malati-about-hero-content {
        text-align: left;
    }

    .malati-about-hero-visual {
        width: 430px;

        height: 430px;

        margin:
            60px auto 0;
    }

    .malati-about-story,
    .malati-about-values,
    .malati-about-purpose,
    .malati-about-capabilities,
    .malati-about-difference {
        padding: 80px 0;
    }

    .malati-about-highlight {
        margin-top: 35px;
    }

    .malati-about-difference-visual {
        margin-top: 50px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .malati-about-hero {
        padding:
            115px 0
            60px;
    }

    .malati-about-eyebrow {
        font-size: 9px;

        letter-spacing: 1.5px;
    }

    .malati-about-eyebrow span {
        width: 25px;
    }

    .malati-about-hero h1 {
        font-size: 38px;

        line-height: 1.12;

        letter-spacing: -0.8px;
    }

    .malati-about-hero-lead {
        font-size: 14px;

        line-height: 1.7;
    }

    .malati-about-hero-badges {
        gap: 8px;
    }

    .malati-about-hero-badge {
        font-size: 9px;

        padding: 8px 11px;
    }


    /* Hero visual */

    .malati-about-hero-visual {
        width: 100%;

        height: 350px;

        margin-top: 45px;
    }

    .malati-about-ring-one {
        width: 230px;
        height: 230px;
    }

    .malati-about-ring-two {
        width: 315px;
        height: 315px;
    }

    .malati-about-core {
        width: 145px;
        height: 145px;
    }

    .malati-about-core img {
        width: 85px;
    }

    .malati-about-floating {
        padding: 7px 9px;

        font-size: 8px;
    }

    .about-float-one {
        top: 7%;
        left: 0;
    }

    .about-float-two {
        top: 7%;
        right: 0;
    }

    .about-float-three {
        bottom: 13%;
        left: 0;
    }

    .about-float-four {
        bottom: 7%;
        right: 0;
    }


    /* Sections */

    .malati-about-story,
    .malati-about-values,
    .malati-about-purpose,
    .malati-about-capabilities,
    .malati-about-difference {
        padding: 70px 0;
    }

    .malati-about-heading {
        font-size: 31px;
    }

    .malati-about-text {
        font-size: 14px;
    }

    .malati-about-story-card,
    .malati-about-purpose-card {
        padding: 30px 25px;
    }

    .malati-about-highlight {
        padding: 30px 25px;
    }

    .malati-about-highlight h3 {
        font-size: 23px;
    }


    /* Stats */

    .malati-about-stats {
        grid-template-columns: 1fr 1fr;
    }


    /* Difference */

    .malati-about-difference-visual {
        min-height: 350px;
    }

    .malati-about-difference-circle {
        width: 245px;
        height: 245px;
    }

    .malati-about-difference-circle strong {
        font-size: 32px;
    }

    .malati-about-difference-tag {
        padding: 8px 11px;

        font-size: 8px;
    }


    /* CTA */

    .malati-about-cta {
        padding: 75px 0;
    }

    .malati-about-cta h2 {
        font-size: 34px;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 480px) {

    .malati-about-hero {
        padding-top: 105px;

        padding-bottom: 50px;
    }

    .malati-about-hero h1 {
        font-size: 33px;
    }

    .malati-about-hero-lead {
        font-size: 13px;
    }

    .malati-about-hero-visual {
        height: 310px;

        margin-top: 35px;
    }

    .malati-about-ring-one {
        width: 205px;
        height: 205px;
    }

    .malati-about-ring-two {
        width: 275px;
        height: 275px;
    }

    .malati-about-core {
        width: 125px;
        height: 125px;
    }

    .malati-about-core img {
        width: 75px;
    }

    .malati-about-floating {
        padding: 6px 8px;

        font-size: 7px;
    }

    .malati-about-heading {
        font-size: 28px;
    }

    .malati-about-stats {
        grid-template-columns: 1fr;
    }

    .malati-about-purpose-card h2 {
        font-size: 27px;
    }

    .malati-about-difference-visual {
        min-height: 300px;
    }

    .malati-about-difference-circle {
        width: 210px;
        height: 210px;
    }

    .malati-about-difference-circle strong {
        font-size: 28px;
    }

    .malati-about-difference-circle span {
        max-width: 140px;

        font-size: 10px;
    }

    .malati-about-cta h2 {
        font-size: 31px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .malati-about-ring-one,
    .malati-about-ring-two,
    .malati-about-floating {
        animation: none !important;
    }

    .malati-about-value-card,
    .malati-about-capability,
    .malati-about-cta-button {
        transition: none !important;
    }
}







/* =========================================================
   MALATI ABOUT HERO
   TECHNOLOGY ORBIT
   ========================================================= */

.abo-hero {
    position: relative;
    width: 100%;
    min-height: 760px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 78% 48%,
            rgba(148, 192, 69, 0.10),
            transparent 30%
        ),
        linear-gradient(
            115deg,
            #ffffff 0%,
            #f8f9f6 55%,
            #eef2e9 100%
        );
    display: flex;
    align-items: center;
}


.abo-hero::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    right: -250px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(148, 192, 69, 0.045);
    filter: blur(2px);
    pointer-events: none;
}


.abo-hero-inner {
    width: min(1400px, 92%);
    margin: 0 auto;
    min-height: 760px;
    display: grid;
    grid-template-columns: 46% 54%;
    align-items: center;
    position: relative;
    z-index: 2;
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.abo-hero-content {
    position: relative;
    z-index: 10;
    padding-right: 45px;
}


.abo-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #566a35;
}


.abo-eyebrow span {
    display: inline-block;
    width: 38px;
    height: 2px;
    background: #94c045;
}


.abo-hero-content h1 {
    margin: 0;
    max-width: 690px;

    font-size: clamp(48px, 5vw, 76px);
    line-height: 0.99;
    letter-spacing: -3px;
    font-weight: 700;
    color: #111;
}


.abo-hero-content h1 strong {
    color: #94c045;
    font-weight: 700;
}


.abo-hero-intro {
    max-width: 650px;
    margin: 32px 0 24px;

    font-size: 17px;
    line-height: 1.8;
    color: #555;
}


.abo-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}


.abo-hero-tags span {
    font-size: 13px;
    color: #515151;
    padding-right: 12px;
    border-right: 1px solid #c7c7c7;
}


.abo-hero-tags span:last-child {
    border-right: none;
}


.abo-hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 35px;
}


.abo-primary-link,
.abo-secondary-link {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.abo-primary-link {
    color: #6f922c;
}


.abo-primary-link span,
.abo-secondary-link span {
    font-size: 19px;
    transition: transform 0.3s ease;
}


.abo-primary-link:hover,
.abo-secondary-link:hover {
    transform: translateX(4px);
}


.abo-primary-link:hover span,
.abo-secondary-link:hover span {
    transform: translateX(4px);
}


.abo-secondary-link {
    color: #222;
}


/* =========================================================
   ORBIT AREA
   ========================================================= */

.abo-orbit-area {
    height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}


.abo-orbit-info {
    position: absolute;
    z-index: 15;

    left: 0;
    top: 50%;
    transform: translateY(-50%);

    width: 265px;
}


.abo-orbit-counter {
    display: flex;
    gap: 6px;
    align-items: center;

    font-size: 13px;
    font-weight: 600;
    color: #94c045;
}


.abo-orbit-counter span:nth-child(2),
.abo-orbit-counter span:nth-child(3) {
    color: #999;
}


.abo-info-line {
    width: 42px;
    height: 2px;
    background: #94c045;
    margin: 16px 0 20px;
}


.abo-info-label {
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 700;
    color: #888;
    margin-bottom: 12px;
}


.abo-orbit-info h2 {
    margin: 0;

    font-size: 29px;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #151515;
}


.abo-orbit-info p {
    margin: 18px 0 20px;

    font-size: 14px;
    line-height: 1.7;
    color: #666;
}


.abo-orbit-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #6e8f2e;
    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    transition: transform 0.3s ease;
}


.abo-orbit-link:hover {
    transform: translateX(4px);
}


.abo-orbit-progress {
    position: relative;
    width: 130px;
    height: 2px;

    background: #dfe3d8;
    margin-top: 28px;
    overflow: hidden;
}


.abo-progress-active {
    display: block;
    height: 100%;
    width: 12.5%;
    background: #94c045;

    transition:
        width 0.5s ease;
}


/* =========================================================
   ORBIT
   ========================================================= */

.abo-orbit {
    width: 650px;
    height: 650px;

    position: relative;

    margin-right: -90px;

    border-radius: 50%;
}


.abo-orbit-glow {
    position: absolute;
    width: 300px;
    height: 300px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(148, 192, 69, 0.16),
            rgba(148, 192, 69, 0.035) 45%,
            transparent 70%
        );

    filter: blur(5px);
}


/* ORBIT RINGS */

.abo-orbit-ring {
    position: absolute;
    left: 50%;
    top: 50%;

    border-radius: 50%;
    transform: translate(-50%, -50%);

    pointer-events: none;
}


.abo-ring-one {
    width: 360px;
    height: 360px;

    border: 1px solid rgba(148, 192, 69, 0.34);

    animation: aboRingRotate 28s linear infinite;
}


.abo-ring-two {
    width: 475px;
    height: 475px;

    border: 1px dashed rgba(110, 110, 110, 0.18);

    animation: aboRingRotateReverse 38s linear infinite;
}


.abo-ring-three {
    width: 590px;
    height: 590px;

    border: 1px solid rgba(148, 192, 69, 0.15);

    animation: aboRingRotate 50s linear infinite;
}


@keyframes aboRingRotate {

    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }

}


@keyframes aboRingRotateReverse {

    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }

}


/* =========================================================
   MOVING LIGHT
   ========================================================= */

.abo-orbit-pulse {
    position: absolute;

    width: 8px;
    height: 8px;

    left: 50%;
    top: 50%;

    margin-left: -4px;
    margin-top: -4px;

    border-radius: 50%;

    background: #94c045;

    box-shadow:
        0 0 0 5px rgba(148, 192, 69, 0.10),
        0 0 20px rgba(148, 192, 69, 0.8);

    animation: aboOrbitPulse 8s linear infinite;
}


@keyframes aboOrbitPulse {

    0% {
        transform: rotate(0deg)
                   translateX(235px)
                   rotate(0deg);
    }

    100% {
        transform: rotate(360deg)
                   translateX(235px)
                   rotate(-360deg);
    }

}


/* =========================================================
   CENTRE
   ========================================================= */

.abo-orbit-center {
    position: absolute;

    width: 185px;
    height: 185px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.94);

    border: 1px solid rgba(148, 192, 69, 0.30);

    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.08),
        inset 0 0 30px rgba(148, 192, 69, 0.04);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    z-index: 10;
}


.abo-center-logo {
    width: 80px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 8px;
}


.abo-center-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


.abo-orbit-center span {
    font-size: 8px;
    letter-spacing: 2px;
    color: #888;
}


.abo-orbit-center strong {
    margin-top: 3px;

    font-size: 10px;
    letter-spacing: 2px;

    color: #94c045;
}


/* =========================================================
   ORBIT NODES
   ========================================================= */

.abo-orbit-node {
    position: absolute;

    left: var(--x);
    top: var(--y);

    transform: translate(-50%, -50%);

    border: 0;
    background: transparent;

    padding: 0;

    cursor: pointer;

    display: flex;
    flex-direction: column;
    align-items: center;

    z-index: 20;

    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}


.abo-orbit-node::before {
    content: "";

    width: 15px;
    height: 15px;

    border-radius: 50%;

    background: #fff;

    border: 2px solid #a7a7a7;

    margin-bottom: 9px;

    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}


.abo-orbit-node:hover {
    transform: translate(-50%, -50%) scale(1.08);
}


.abo-orbit-node:hover::before,
.abo-orbit-node.active::before {
    background: #94c045;

    border-color: #94c045;

    box-shadow:
        0 0 0 7px rgba(148, 192, 69, 0.12),
        0 0 18px rgba(148, 192, 69, 0.45);

    transform: scale(1.15);
}


.abo-node-number {
    font-size: 8px;
    letter-spacing: 1px;

    color: #999;

    margin-bottom: 3px;
}


.abo-node-name {
    white-space: nowrap;

    font-size: 11px;
    font-weight: 600;

    color: #555;

    transition:
        color 0.3s ease;
}


.abo-orbit-node.active .abo-node-name {
    color: #73972f;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1200px) {

    .abo-hero-inner {
        width: 94%;
        grid-template-columns: 45% 55%;
    }

    .abo-hero-content {
        padding-right: 20px;
    }

    .abo-hero-content h1 {
        font-size: clamp(44px, 5vw, 65px);
    }

    .abo-orbit {
        width: 570px;
        height: 570px;
        margin-right: 10px;
    }

    .abo-ring-one {
        width: 320px;
        height: 320px;
    }

    .abo-ring-two {
        width: 420px;
        height: 420px;
    }

    .abo-ring-three {
        width: 520px;
        height: 520px;
    }

    .abo-orbit-info {
        width: 230px;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .abo-hero {
        min-height: auto;
        padding: 100px 0 80px;
    }

    .abo-hero-inner {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .abo-hero-content {
        padding-right: 0;
        max-width: 750px;
    }

    .abo-orbit-area {
        height: 650px;
        justify-content: center;
    }

    .abo-orbit-info {
        left: 0;
        width: 230px;
    }

    .abo-orbit {
        margin-left: 150px;
        margin-right: -180px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .abo-hero {
        padding: 80px 0 70px;
    }

    .abo-hero-inner {
        width: 90%;
        gap: 55px;
    }

    .abo-hero-content h1 {
        font-size: clamp(42px, 12vw, 58px);
        letter-spacing: -2px;
    }

    .abo-hero-intro {
        font-size: 15px;
        line-height: 1.7;
        margin-top: 25px;
    }

    .abo-hero-tags {
        gap: 8px;
    }

    .abo-hero-tags span {
        font-size: 11px;
    }

    .abo-hero-actions {
        gap: 20px;
        flex-wrap: wrap;
    }


    /* Orbit becomes vertical on mobile */

    .abo-orbit-area {
        height: auto;

        display: flex;
        flex-direction: column;

        align-items: center;

        padding-top: 10px;
    }


    .abo-orbit-info {
        position: relative;

        left: auto;
        top: auto;

        transform: none;

        width: 100%;

        order: 1;

        margin-bottom: 50px;
    }


    .abo-orbit {
        order: 2;

        width: 430px;
        height: 430px;

        margin: 0;

        transform: translateX(5%);
    }


    .abo-ring-one {
        width: 250px;
        height: 250px;
    }


    .abo-ring-two {
        width: 330px;
        height: 330px;
    }


    .abo-ring-three {
        width: 410px;
        height: 410px;
    }


    .abo-orbit-center {
        width: 135px;
        height: 135px;
    }


    .abo-center-logo {
        width: 60px;
        height: 42px;
    }


    .abo-orbit-pulse {
        animation-name: aboOrbitPulseMobile;
    }


    @keyframes aboOrbitPulseMobile {

        0% {
            transform: rotate(0deg)
                       translateX(165px)
                       rotate(0deg);
        }

        100% {
            transform: rotate(360deg)
                       translateX(165px)
                       rotate(-360deg);
        }

    }


    .abo-node-name {
        font-size: 9px;
    }


    .abo-node-number {
        font-size: 7px;
    }


    .abo-orbit-node::before {
        width: 11px;
        height: 11px;
    }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .abo-hero {
        padding-top: 65px;
    }

    .abo-eyebrow {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .abo-hero-content h1 {
        font-size: 41px;
        line-height: 1.02;
    }

    .abo-hero-tags span {
        padding-right: 8px;
    }


    .abo-orbit {
        width: 350px;
        height: 350px;

        transform: translateX(8%);
    }


    .abo-ring-one {
        width: 210px;
        height: 210px;
    }


    .abo-ring-two {
        width: 275px;
        height: 275px;
    }


    .abo-ring-three {
        width: 335px;
        height: 335px;
    }


    .abo-orbit-center {
        width: 115px;
        height: 115px;
    }


    .abo-center-logo {
        width: 52px;
        height: 36px;
    }


    .abo-orbit-center span {
        font-size: 7px;
    }


    .abo-orbit-center strong {
        font-size: 8px;
    }


    .abo-node-name {
        font-size: 8px;
    }


    .abo-node-number {
        display: none;
    }


    .abo-orbit-pulse {
        width: 6px;
        height: 6px;

        margin-left: -3px;
        margin-top: -3px;
    }


    @keyframes aboOrbitPulseMobile {

        0% {
            transform: rotate(0deg)
                       translateX(137px)
                       rotate(0deg);
        }

        100% {
            transform: rotate(360deg)
                       translateX(137px)
                       rotate(-360deg);
        }

    }

}