/* ============================================================
   HOME HERO - Code Xenix
   Premium design system
   ============================================================ */
.hx-hero {
    position: relative;
    padding: 0 0 60px;
    margin-top: calc(-1 * var(--header-height, 80px));
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-body);
    overflow: hidden;
}

.hx-hero::before {
    content: "";
    position: absolute;
    left: 0;
    z-index: 0;
    width: 936px;
    height: 1021px;
    background: url("../img/left_hair.00694667fbcd.png") no-repeat;
    pointer-events: none;
}

.hx-hero::after {
    content: "";
    position: absolute;
    top: 0;
    right: 5%;
    z-index: 0;
    width: 727px;
    height: 445px;
    background: url("../img/top_hair.ebb007b6d1c9.png") no-repeat;
    pointer-events: none;
}

/* Floating shapes */
.hx-hero__shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hx-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.04;
}

.hx-shape--1 {
    width: 600px;
    height: 600px;
    background: var(--brand-primary);
    top: -250px;
    right: -150px;
    animation: hx-float 14s ease-in-out infinite;
}

.hx-shape--2 {
    width: 350px;
    height: 350px;
    background: var(--brand-primary);
    bottom: -120px;
    left: -100px;
    animation: hx-float 18s ease-in-out infinite reverse;
}

.hx-shape--3 {
    width: 200px;
    height: 200px;
    background: var(--brand-primary);
    top: 40%;
    left: 30%;
    animation: hx-float 12s ease-in-out infinite 2s;
}

@keyframes hx-float {

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

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

/* Grid layout */
.hx-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-top: var(--header-height, 80px);
}

/* Badge */
.hx-badge {
    display: inline-block;
    background: rgba(148, 207, 20, 0.1);
    border: 1px solid rgba(148, 207, 20, 0.25);
    color: var(--brand-primary);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 40px;
    margin-bottom: 24px;
}

/* Title */
.hx-hero__title {
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

/* Description */
.hx-hero__desc {
    color: var(--text-muted);
    font-size: 1.5rem;
    line-height: 1.5;
    max-width: 520px;
    margin-bottom: 28px;
}

/* Buttons */
.hx-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hx-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.hx-btn--primary {
    background: linear-gradient(135deg, var(--brand-primary), #7ab510);
    color: var(--bg-body);
    box-shadow: 0 4px 20px rgba(148, 207, 20, 0.25);
}

.hx-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(148, 207, 20, 0.35);
}

.hx-btn--secondary {
    background: transparent;
    border: 2px solid rgba(148, 207, 20, 0.4);
    color: var(--text-primary);
}

.hx-btn--secondary:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    transform: translateY(-2px);
}

/* Stats grid */
.hx-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.hx-stat {
    background: linear-gradient(160deg, rgba(var(--text-primary-rgb), 0.04), rgba(var(--text-primary-rgb), 0.01));
    border: 1px solid rgba(var(--text-primary-rgb), 0.07);
    border-radius: 12px;
    padding: 16px 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.hx-stat:hover {
    transform: translateY(-3px);
    border-color: rgba(148, 207, 20, 0.25);
    box-shadow: 0 8px 24px rgba(var(--shadow-color-rgb), 0.3);
}

.hx-stat strong {
    color: var(--brand-primary);
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hx-stat span {
    color: var(--text-primary);
    display: block;
    font-size: 1rem;
    margin-top: 4px;
    line-height: 1.3;
}

/* ============================================================
   SVG ECOSYSTEM
   ============================================================ */
.hx-ecosystem {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.hx-ecosystem__svg {
    width: 100%;
    height: auto;
}

/* Center pulse */
.hx-center circle:first-child {
    animation: hx-pulse 4s ease-in-out infinite;
}

.hx-center circle:nth-child(2) {
    animation: hx-pulse 4s ease-in-out infinite 0.5s;
}

@keyframes hx-pulse {

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

    50% {
        opacity: 0.7;
        transform: scale(1.03);
    }
}

/* Connection lines */
.hx-line {
    stroke: rgba(148, 207, 20, 0.2);
    stroke-width: 1;
    stroke-dasharray: 6 4;
    animation: hx-dash 20s linear infinite;
    animation-delay: var(--delay, 0s);
}

@keyframes hx-dash {
    to {
        stroke-dashoffset: -200;
    }
}

/* Particles */
.hx-particle {
    opacity: 0;
    animation: hx-particle-move var(--duration, 3s) linear infinite;
    animation-delay: calc(var(--line, 0) * 0.4s);
}

@keyframes hx-particle-move {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        opacity: 0;
    }
}

/* Nodes */
.hx-node {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hx-node:hover {
    transform: scale(1.1);
}

.hx-node circle {
    transition: all 0.3s ease;
}

.hx-node:hover circle {
    fill: rgba(148, 207, 20, 0.15);
    stroke: rgba(148, 207, 20, 0.5);
    filter: url(#glow);
}

/* Node floating animation */
.hx-node {
    animation: hx-node-float 5s ease-in-out infinite;
}

.hx-node:nth-child(1) {
    animation-delay: 0s;
}

.hx-node:nth-child(2) {
    animation-delay: 0.3s;
}

.hx-node:nth-child(3) {
    animation-delay: 0.6s;
}

.hx-node:nth-child(4) {
    animation-delay: 0.9s;
}

.hx-node:nth-child(5) {
    animation-delay: 1.2s;
}

.hx-node:nth-child(6) {
    animation-delay: 1.5s;
}

.hx-node:nth-child(7) {
    animation-delay: 1.8s;
}

.hx-node:nth-child(8) {
    animation-delay: 2.1s;
}

@keyframes hx-node-float {

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

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

/* Tooltip */
.hx-tooltip {
    position: absolute;
    background: rgba(var(--bg-menu-rgb), 0.95);
    border: 1px solid rgba(148, 207, 20, 0.3);
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    white-space: nowrap;
    z-index: 10;
}

.hx-tooltip::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid rgba(148, 207, 20, 0.3);
}

/* Scroll animations */
.hx-hero__content,
.hx-hero__visual {
    opacity: 0;
    transform: translateY(30px);
    animation: hx-reveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hx-hero__visual {
    animation-delay: 0.2s;
}

@keyframes hx-reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   RESPONSIVE - Tablet
   ============================================================ */
@media (max-width: 1024px) {
    .hx-hero {
        padding: 0 0 40px;
        min-height: auto;
    }

    .hx-hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hx-ecosystem {
        max-width: 380px;
    }

    .hx-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================================
   RESPONSIVE - Mobile
   ============================================================ */
@media (max-width: 768px) {
    .hx-hero {
        padding: 0 0 30px;
    }

    .hx-hero__title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .hx-hero__desc {
        font-size: 1rem;
    }

    .hx-hero__actions {
        flex-direction: column;
    }

    .hx-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .hx-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hx-ecosystem {
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .hx-badge {
        font-size: 0.7rem;
        padding: 6px 14px;
    }

    .hx-hero__title {
        font-size: 1.5rem;
    }

    .hx-stat strong {
        font-size: 1rem;
    }

    .hx-stat span {
        font-size: 0.72rem;
    }
}

/* ============================================================
   EXISTING HOME STYLES
   ============================================================ */
.home-page {
    color: var(--text-primary);
    overflow: hidden;
}

.home-section {
    padding: 92px 0;
    position: relative;
}

.home-section--tight {
    padding: 58px 0;
}

.home-band {
    background: var(--bg-surface-alt);
    border-top: 1px solid rgba(255, 255, 255, .07);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.home-kicker {
    color: var(--brand-primary);
    font-size: 2.82rem;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.home-title {
    color: var(--text-primary);
    font-size: clamp(2.3rem, 4vw, 4.7rem);
    font-weight: 900;
    line-height: 1.04;
    margin-bottom: 18px;
}

.home-heading {
    color: var(--text-primary);
    font-size: clamp(1.8rem, 3vw, 3.4rem);
    font-weight: 600;
    line-height: 1.12;
    margin-bottom: 18px;
}

.home-copy {
    color: var(--text-secondary);
    font-size: 1.75rem;
    line-height: 1.75;
    margin-bottom: 0;
}

.home-copy--lead {
    font-size: 1.18rem;
    max-width: 620px;
}

.home-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.home-btn {
    align-items: center;
    border-radius: 4px;
    display: inline-flex;
    font-weight: 800;
    gap: 8px;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.home-btn:hover {
    transform: translateY(-2px);
}

.home-btn--primary {
    background: var(--brand-primary);
    border: 2px solid var(--brand-primary);
    color: #11171b;
}

.home-btn--secondary {
    background: transparent;
    border: 2px solid rgba(148, 207, 20, .55);
    color: var(--text-primary);
}

.home-btn--secondary:hover {
    border-color: var(--brand-primary);
    color: var(--text-primary);
}

.hero-panel {
    background: linear-gradient(145deg, rgba(148, 207, 20, .16), rgba(20, 26, 30, .92));
    border: 1px solid rgba(148, 207, 20, .22);
    border-radius: 8px;
    padding: 24px;
}

.hero-panel img {
    border-radius: 6px;
    display: block;
    height: auto;
    opacity: .92;
    width: 100%;
}

.hero-stat-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 16px;
}

.hero-stat {
    background: rgba(13, 17, 20, .76);
    border: 1px solid rgba(var(--text-primary-rgb), 0.08);
    border-radius: 6px;
    padding: 16px;
}

.hero-stat strong {
    color: var(--brand-primary);
    display: block;
    font-size: 1.45rem;
    line-height: 1;
}

.hero-stat span {
    color: var(--text-secondary);
    display: block;
    font-size: .82rem;
    margin-top: 6px;
}

.section-head {
    margin-bottom: 42px;
    max-width: 760px;
}

.section-head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head--split {
    align-items: flex-end;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    max-width: 100%;
}

.section-head--split>div {
    max-width: 760px;
}

.home-grid {
    display: grid;
    gap: 22px;
}

.home-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-card {
    background: var(--bg-surface);
    border: 1px solid rgba(var(--text-primary-rgb), 0.08);
    border-radius: 8px;
    color: var(--text-primary);
    display: block;
    height: 100%;
    padding: 28px;
    text-decoration: none;
    transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.home-card:hover {
    background: var(--bg-surface-hover);
    border-color: rgba(148, 207, 20, .48);
    color: var(--text-primary);
    transform: translateY(-4px);
}

/* classes for bg color blow effect in the cards */
.home-card--fill {
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.home-card--fill::before {
    background: var(--brand-primary);
    content: '';
    inset: 0;
    position: absolute;
    transform: scale(0);
    transform-origin: bottom right;
    transition: transform .45s cubic-bezier(.22, 1, .36, 1);
    z-index: -1;
}

.home-card--fill:hover::before {
    transform: scale(1);
}

.home-card--fill:hover {
    border-color: var(--brand-primary);
    transform: translateY(-4px) scale(1.02);
}

.home-card--fill:hover h3,
.home-card--fill:hover p,
.home-card--fill:hover .home-card__link {
    color: #11171b;
}

.home-card--fill:hover .home-card__icon {
    background: rgba(17, 23, 27, .15);
    color: #11171b;
}

.home-card__icon {
    align-items: center;
    background: rgba(148, 207, 20, .12);
    border-radius: 6px;
    color: var(--brand-primary);
    display: flex;
    flex-shrink: 0;
    font-size: 1.6rem;
    height: 40px;
    justify-content: center;
    margin-bottom: 0;
    margin-right: 12px;
    width: 40px;
}

.home-card__head {
    align-items: center;
    display: flex;
    margin-bottom: 14px;
}

.home-card h3 {
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0px;
}

.home-card p {
    color: #b9c2c8;
    line-height: 1.65;
    margin-bottom: 0;
}

.home-card__link {
    color: var(--brand-primary);
    display: inline-flex;
    font-weight: 800;
    margin-top: auto;
}

/* Trusted By */
.trusted-head {
    margin: 0 auto 34px;
    max-width: 620px;
    text-align: center;
}

.trusted-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.trusted-marquee::before,
.trusted-marquee::after {
    content: '';
    height: 100%;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 90px;
    z-index: 2;
}

.trusted-marquee::before {
    background: linear-gradient(90deg, var(--bg-surface-alt), rgba(16, 22, 26, 0));
    left: 0;
}

.trusted-marquee::after {
    background: linear-gradient(270deg, var(--bg-surface-alt), rgba(16, 22, 26, 0));
    right: 0;
}

.trusted-logos {
    display: flex;
    gap: 22px;
    width: max-content;
}

.trusted-track {
    display: flex;
    gap: 22px;
    width: max-content;
}

.trusted-marquee:hover .trusted-track {
    animation-play-state: paused;
}

.trusted-logo {
    align-items: center;
    background: rgba(var(--text-primary-rgb), 0.03);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 999px;
    display: flex;
    flex: 0 0 150px;
    height: 92px;
    justify-content: center;
    padding: 20px;
    width: 150px;
}

.trusted-logo img {
    max-height: 38px;
    max-width: 100%;
    opacity: .76;
}

/* Tech Stack Marquee */
.tech-section__head {
    margin: 0 auto 34px;
    max-width: 760px;
    text-align: center;
}

.tech-marquee {
    display: grid;
    gap: 16px;
    overflow: hidden;
}

.tech-track-row {
    animation: tech-scroll 96s linear infinite;
    display: flex;
    gap: 18px;
    width: max-content;
}

.tech-track-row:hover {
    animation-play-state: paused;
}

.tech-track--reverse {
    animation-direction: reverse;
}

.tech-pill {
    align-items: center;
    background: rgba(var(--text-primary-rgb), 0.03);
    border: 1px solid rgba(var(--text-primary-rgb), 0.08);
    border-radius: 999px;
    color: var(--text-primary);
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 1rem;
    font-weight: 700;
    height: 56px;
    justify-content: center;
    min-width: 170px;
    padding: 0 24px;
    text-decoration: none;
    white-space: nowrap;
}

.tech-pill:hover {
    background: var(--brand-primary);
    color: #11171b;
}
.tech-pill:hover .tech-pill__icon,
.tech-pill:hover .bi {
    color: #11171b !important;
}

.tech-pill__icon {
    color: inherit;
    font-size: 1.1rem;
    margin-right: 10px;
}

@keyframes tech-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 9px));
    }
}

/* Why Choose */
.choose-list {
    display: grid;
    gap: 16px;
}

.choose-item {
    align-items: flex-start;
    display: grid;
    gap: 16px;
    grid-template-columns: 44px 1fr;
}

.choose-item i {
    align-items: center;
    background: var(--brand-primary);
    border-radius: 6px;
    color: #11171b;
    display: flex;
    font-size: 2rem;
    height: 50px;
    justify-content: center;
    width: 50px;
}

.choose-item h3 {
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 6px;
}

/* Case Studies */
.case-card {
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.case-card__image {
    align-items: center;
    background: linear-gradient(135deg, #f4f6f4 0%, #e7ece7 100%);
    display: flex;
    height: 210px;
    justify-content: center;
    overflow: hidden;
    padding: 26px;
}

.case-card__image img {
    display: block;
    height: 100%;
    /* Show the whole uploaded image, never crop or stretch it */
    max-height: 100%;
    max-width: 100%;
    /* Drops any solid white background baked into a logo/screenshot so it
       blends into the light plate instead of showing as a mismatched white
       box on a dark card */
    mix-blend-mode: multiply;
    object-fit: contain;
    width: auto;
}

.case-card__body {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Process */
.process-steps {
    counter-reset: process;
}

.process-step {
    counter-increment: process;
    position: relative;
}

.process-step::before {
    color: rgba(148, 207, 20, .24);
    content: '0' counter(process);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    position: absolute;
    right: 22px;
    top: 20px;
}

/* Metrics */
.metric-row {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric {
    background: var(--bg-surface);
    border: 1px solid rgba(var(--text-primary-rgb), 0.08);
    border-radius: 8px;
    padding: 26px;
    text-align: center;
}

.metric strong {
    color: var(--brand-primary);
    display: block;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    line-height: 1;
}

.metric span {
    color: var(--text-secondary);
    display: block;
    font-weight: 700;
    margin-top: 10px;
}

/* Testimonials */
.testimonial {
    background: var(--bg-surface);
    border-left: 4px solid var(--brand-primary);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial__logo {
    margin-bottom: 4px;
}

.testimonial__logo img {
    height: 28px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    filter: grayscale(20%);
}

.testimonial__footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.testimonial__avatar--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial__avatar--initials {
    background: var(--brand-primary);
    color: #11171b;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.testimonial__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.testimonial__meta strong {
    color: var(--text-primary);
    font-size: 0.95rem;
    margin: 0;
}

.testimonial__meta span {
    color: var(--text-faded);
    font-size: 0.82rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial__stars {
    display: flex;
    gap: 3px;
}

.testimonial__stars .bi-star-fill {
    color: #f5a623;
    font-size: 0.85rem;
}

.testimonial__stars .bi-star {
    color: #484f58;
    font-size: 0.85rem;
}

.testimonial p {
    color: var(--text-secondary);
    font-size: 1.5rem;
    line-height: 1.75;
    margin: 0;
    flex: 1;
}

.testimonial strong {
    color: var(--text-primary);
    display: block;
    margin-top: 20px;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--brand-primary), #d6f27f);
    color: #11171b;
    padding: 76px 0;
}

.final-cta h2,
.final-cta p {
    color: #11171b;
}

.final-cta .home-btn--primary {
    background: #11171b;
    border-color: #11171b;
    color: #ffffff;
}

.final-cta .home-btn--primary:hover {
    background: #1c262d;
    border-color: #1c262d;
    color: #ffffff;
}

.final-cta .home-btn--secondary {
    border-color: rgba(17, 23, 27, .45);
    color: #11171b;
    background: transparent;
}

.final-cta .home-btn--secondary:hover {
    border-color: #11171b;
    background: rgba(17, 23, 27, .05);
}

/* Hero additional styles */
.bi {
    font-size: 3rem;
    color: var(--brand-primary);
}

.text-green {
    color: var(--brand-primary);
}

.btn-green {
    background-color: transparent;
    border: 2px solid var(--brand-primary);
    color: white;
}

.btn-green:hover {
    background-color: var(--brand-primary);
    border: 2px solid white;
}

.card {
    display: block;
    position: relative;
    height: 100%;
    border-radius: 4px;
    padding: 32px 24px;
    text-decoration: none;
    z-index: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card h3 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #75a018;
    transition: color 0.3s ease-out;
}

.card p {
    font-size: 2rem;
    color: #9e9d9d;
    transition: color 0.3s ease-out;
}

.text-bg-secondary {
    background-color: var(--bg-surface) !important;
}

/* Hero SVG Animations */
svg#freepik_stories-ui-ux-team:not(.animated) .animable {
    opacity: 0;
}

svg#freepik_stories-ui-ux-team.animated #freepik--Plant--inject-769 {
    animation: 1.5s Infinite linear floating;
    animation-delay: 0s;
}

svg#freepik_stories-ui-ux-team.animated #freepik--Device--inject-769 {
    animation: 1.9s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideLeft;
    animation-delay: 0s;
}

svg#freepik_stories-ui-ux-team.animated #freepik--character-3--inject-769 {
    animation: 1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
    animation-delay: 0s;
}

@keyframes floating {
    0% {
        opacity: 1;
        transform: translateY(0px);
    }

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

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes slideLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .home-section {
        padding: 68px 0;
    }

    .home-grid--3,
    .home-grid--4,
    .metric-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .home-section {
        padding: 54px 0;
    }

    .home-grid--3,
    .home-grid--4,
    .metric-row,
    .hero-stat-grid {
        grid-template-columns: 1fr;
    }

    .home-card,
    .testimonial,
    .metric {
        padding: 22px;
    }

    .case-card {
        padding: 0;
    }

    .case-card__image {
        height: 170px;
        padding: 18px;
    }

    .section-head--split {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .section-head--split>div {
        max-width: 100%;
    }

    .section-head--split .btn {
        width: 100%;
        text-align: center;
    }
}