:root {
    --red: #a90000;
    --red2: #d21f26;
    --green: #004f32;
    --green2: #006b3f;
    --orange: #d56b12;
    --ink: #101517;
    --muted: #687276;
    --paper: #fff;
    --soft: #f4f7f6;
    --line: #e4e9e6;
    --shadow: 0 18px 50px rgba(16, 21, 23, .10);
    --radius: 22px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    color: var(--ink);
    background: #fff;
    overflow-x: hidden
}

img {
    max-width: 100%;
    height: auto
}

a {
    text-decoration: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    letter-spacing: -.035em
}

p {
    color: var(--muted);
    line-height: 1.75
}

.container {
    width: min(1180px, calc(100% - 32px))
}

.site-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--orange));
    z-index: 9999
}

.topbar {
    background: #08251b;
    color: #dfe9e4;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.topbar-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 36px
}

.topbar-item {
    color: #dfe9e4;
    white-space: nowrap
}

.topbar-item i {
    color: #f19a42;
    margin-right: 5px
}

.top-social {
    display: flex;
    gap: 10px
}

.top-social a {
    color: #fff;
    opacity: .85
}

.top-social a:hover {
    color: #ffad55
}

.main-nav {
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .06);
    position: relative;
    z-index: 50
}

.navbar-brand img {
    width: 170px;
    height: auto;
    display: block
}

.navbar-nav {
    gap: 5px
}

.nav-link {
    font-weight: 700;
    font-size: 13px;
    color: #26312d !important;
    padding: 13px 10px !important;
    position: relative
}

.nav-link:after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 5px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: .3s
}

.nav-link:hover:after,
.nav-link.active:after {
    transform: scaleX(1)
}

.nav-link.active {
    color: var(--red) !important
}

.navbar-toggler {
    border: 0
}

.navbar-toggler:focus {
    box-shadow: none
}

.btn {
    border-radius: 11px;
    font-weight: 800;
    padding: .78rem 1.2rem;
    transition: .3s;
    position: relative;
    overflow: hidden
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, .15)
}

.btn-brand {
    background: var(--red);
    color: #fff;
    border: 1px solid var(--red)
}

.btn-brand:hover {
    background: #820000;
    color: #fff;
    border-color: #820000
}

.btn-dark-green {
    background: var(--green);
    color: #fff;
    border: 1px solid var(--green)
}

.btn-dark-green:hover {
    background: #003b25;
    color: #fff
}

.btn-outline-brand {
    border: 1px solid var(--red);
    color: var(--red);
    background: #fff
}

.btn-outline-brand:hover {
    background: var(--red);
    color: #fff
}

.btn-white {
    background: #fff;
    color: var(--green);
    border: 1px solid #fff
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .7)
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--green)
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--red);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-weight: 900;
    margin-bottom: 14px
}

.eyebrow:before {
    content: "";
    width: 28px;
    height: 3px;
    background: var(--orange);
    display: inline-block;
    border-radius: 3px
}

.eyebrow.light {
    color: #fff
}

.eyebrow.light:before {
    background: #ffad55
}

.section {
    padding: 92px 0
}

.section-light {
    background: #fff
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 35px
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.08;
    margin: 0 0 16px
}

.section-heading h2 span,
h2 span {
    color: var(--red)
}

.section-heading p {
    max-width: 650px;
    margin: auto
}

.hero {
    min-height: 680px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #06100d;
    color: #fff
}

.hero-slides,
.hero-slide,
.hero-overlay {
    position: absolute;
    inset: 0
}

.hero-slide {
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1s ease, transform 7s ease
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1)
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(3, 12, 9, .95) 0%, rgba(3, 12, 9, .82) 38%, rgba(3, 12, 9, .35) 75%, rgba(3, 12, 9, .58) 100%)
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 720px;
    padding: 70px 0
}

.hero h1 {
    font-size: clamp(2.7rem, 6vw, 5.4rem);
    line-height: .98;
    margin: 0 0 22px;
    text-shadow: 0 5px 25px rgba(0, 0, 0, .45)
}

.hero h1 span {
    color: #ff5a50
}

.hero p {
    color: #edf3f0;
    max-width: 620px;
    font-size: 18px
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px
}

.hero-mini-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 28px;
    font-size: 13px;
    color: #e8f0ed
}

.hero-mini-proof i {
    color: #ffb25f;
    margin-right: 6px
}

.hero-controls {
    position: absolute;
    z-index: 5;
    right: 6%;
    bottom: 40px;
    display: flex;
    gap: 8px
}

.hero-dot {
    width: 38px;
    height: 4px;
    border: 0;
    background: rgba(255, 255, 255, .35);
    transition: .3s
}

.hero-dot.active {
    background: #ffb25f;
    width: 65px
}

.stats-strip {
    background: #fff;
    position: relative;
    z-index: 5;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .09)
}

.stat {
    padding: 25px 16px;
    text-align: center;
    border-right: 1px solid var(--line)
}

.stat strong {
    display: block;
    font: 800 clamp(1.7rem, 3vw, 2.5rem) "Manrope";
    color: var(--red)
}

.stat span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #69716f;
    font-weight: 800
}

.visual-stack {
    min-height: 560px;
    position: relative
}

.visual-main {
    width: 82%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transform: rotate(-2deg)
}

.visual-main img {
    width: 100%;
    height: 500px;
    object-fit: cover
}

.visual-small {
    position: absolute;
    width: 34%;
    border: 8px solid #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow)
}

.visual-small img {
    display: block;
    height: 170px;
    width: 100%;
    object-fit: cover
}

.visual-small.one {
    right: 0;
    top: 65px;
    transform: rotate(4deg)
}

.visual-small.two {
    right: 10%;
    bottom: 10px;
    transform: rotate(-5deg)
}

.visual-badge {
    position: absolute;
    left: 7%;
    bottom: 40px;
    background: var(--green);
    color: #fff;
    border-radius: 18px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 15px 30px rgba(0, 79, 50, .3)
}

.visual-badge strong {
    font-size: 28px;
    color: #ffb25f
}

.visual-badge span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 25px
}

.feature-list div {
    display: flex;
    gap: 10px;
    font-weight: 700;
    font-size: 13px
}

.feature-list i {
    color: var(--green);
    font-size: 18px
}

.cta-banner {
    position: relative;
    overflow: hidden;
    padding: 75px 0;
    background-size: cover;
    background-position: center
}

.cta-green {
    background: linear-gradient(90deg, rgba(0, 57, 38, .96), rgba(0, 79, 50, .83)), url("../img/services/technology-network.jpg") center/cover fixed
}

.cta-content {
    max-width: 780px;
    color: #fff
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 15px
}

.cta-content p {
    color: #dce9e3
}

.service-image {
    height: 170px;
    border-radius: 14px;
    overflow: hidden;
    margin: -4px -4px 20px;
    background: #eef4f1
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease
}

.service-card:hover .service-image img {
    transform: scale(1.06)
}

.service-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px;
    position: relative;
    transition: .35s;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .03)
}

.service-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: .35s
}

.service-card:hover {
    transform: translateY(-9px);
    box-shadow: var(--shadow);
    border-color: #d7dedb
}

.service-card:hover:before {
    transform: scaleX(1)
}

.service-icon {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    background: #fff1ef;
    color: var(--red);
    display: grid;
    place-items: center;
    font-size: 25px;
    margin-bottom: 22px
}

.service-card h3 {
    font-size: 20px
}

.service-card p {
    font-size: 14px
}

.service-link {
    color: var(--green);
    font-weight: 900;
    font-size: 13px
}

.service-link i {
    transition: .25s
}

.service-link:hover i {
    margin-left: 5px
}

.tech-visual-section {
    background: #f5f8f6
}

.automation-points {
    display: grid;
    gap: 12px;
    margin-top: 25px
}

.automation-points div {
    display: grid;
    grid-template-columns: 45px 1fr;
    column-gap: 12px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fff
}

.automation-points i {
    grid-row: span 2;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: #e9f4ef;
    color: var(--green);
    display: grid;
    place-items: center;
    font-size: 20px
}

.automation-points strong {
    font-size: 14px
}

.automation-points span {
    font-size: 12px;
    color: var(--muted)
}

.tech-orbit {
    width: min(460px, 100%);
    aspect-ratio: 1;
    margin: auto;
    border-radius: 50%;
    background: radial-gradient(circle at center, #fff 0 25%, #e9f5f0 25.5% 26%, transparent 26.5%), radial-gradient(circle, #dceee6 0 1px, transparent 1px);
    background-size: auto, 18px 18px;
    position: relative;
    border: 1px solid #cfe1d8;
    box-shadow: inset 0 0 60px rgba(0, 79, 50, .07), 0 25px 60px rgba(0, 79, 50, .12)
}

.tech-orbit:before,
.tech-orbit:after {
    content: "";
    position: absolute;
    inset: 16%;
    border: 1px dashed rgba(0, 79, 50, .2);
    border-radius: 50%
}

.tech-orbit:after {
    inset: 31%
}

.orbit-core {
    position: absolute;
    inset: 35%;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--green), #012d20);
    color: #fff;
    display: grid;
    place-items: center;
    text-align: center;
    box-shadow: 0 0 0 10px rgba(0, 79, 50, .08), 0 20px 40px rgba(0, 79, 50, .25);
    z-index: 2
}

.orbit-core i {
    font-size: 32px;
    color: #ffb25f
}

.orbit-core span {
    font: 800 10px "Manrope";
    letter-spacing: .12em
}

.orbit-item {
    position: absolute;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #dce5e0;
    box-shadow: 0 12px 25px rgba(0, 0, 0, .1);
    display: grid;
    place-items: center;
    text-align: center;
    font-size: 10px;
    font-weight: 900;
    color: var(--green);
    z-index: 3
}

.orbit-item i {
    font-size: 21px;
    color: var(--red)
}

.item-1 {
    top: 5%;
    left: calc(50% - 39px)
}

.item-2 {
    right: 5%;
    top: calc(50% - 39px)
}

.item-3 {
    bottom: 5%;
    left: calc(50% - 39px)
}

.item-4 {
    left: 5%;
    top: calc(50% - 39px)
}

.why-section {
    background: #071c14;
    color: #fff;
    position: relative;
    overflow: hidden
}

.why-section:before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -200px;
    top: -220px;
    border-radius: 50%;
    background: rgba(213, 107, 18, .12);
    filter: blur(20px)
}

.section-heading.light p,
.why-section p {
    color: #b8c8c1
}

.reason-card {
    height: 100%;
    padding: 24px 18px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 17px;
    background: rgba(255, 255, 255, .04);
    transition: .35s
}

.reason-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 173, 85, .5)
}

.reason-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 173, 85, .1);
    color: #ffb25f;
    display: grid;
    place-items: center;
    font-size: 20px;
    margin-bottom: 18px
}

.reason-card h3 {
    font-size: 15px
}

.reason-card p {
    font-size: 12px;
    margin: 0
}

.price-card,
.pricing-card {
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 30px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .05);
    height: 100%;
    position: relative;
    overflow: hidden
}

.price-card.featured,
.pricing-card.featured {
    border: 2px solid var(--red);
    transform: translateY(-8px)
}

.price-tag,
.pricing-card>span {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--green)
}

.price {
    font: 800 34px "Manrope";
    margin: 10px 0;
    color: var(--red)
}

.price small,
.pricing-card h3 small {
    font: 600 11px "DM Sans";
    color: var(--muted)
}

.price-card ul,
.pricing-card ul {
    padding: 0;
    list-style: none;
    margin: 20px 0
}

.price-card li,
.pricing-card li {
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid #eef1ef;
    color: #53605b
}

.price-card li:before,
.pricing-card li:before {
    content: "✓";
    color: var(--green);
    font-weight: 900;
    margin-right: 8px
}

.pricing-card h3 {
    font-size: 35px;
    color: var(--red);
    margin: 10px 0
}

.pricing-card strong {
    font-size: 13px
}

.lead-wrap {
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #fff;
    border: 1px solid var(--line)
}

.lead-intro {
    background: linear-gradient(145deg, #073a28, #001e14);
    color: #fff;
    padding: 45px
}

.lead-intro h2 {
    font-size: clamp(2rem, 4vw, 3rem)
}

.lead-intro p {
    color: #c9d8d2
}

.contact-mini {
    display: grid;
    gap: 12px;
    margin-top: 28px
}

.contact-mini a {
    color: #fff;
    font-weight: 800
}

.contact-mini i {
    color: #ffb25f;
    margin-right: 10px
}

.lead-form-card {
    padding: 0
}

.form-heading {
    margin-bottom: 24px
}

.form-heading h2 {
    font-size: clamp(1.8rem, 4vw, 2.7rem)
}

.form-label {
    font-weight: 800;
    font-size: 12px
}

.form-control,
.form-select {
    border: 1px solid #dce3df;
    border-radius: 10px;
    padding: .78rem .9rem;
    font-size: 14px
}

.form-control:focus,
.form-select:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(169, 0, 0, .08)
}

.faq-accordion {
    max-width: 900px
}

.accordion-item {
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent
}

.accordion-button {
    font: 800 15px "Manrope";
    padding: 20px 0;
    background: #fff !important;
    color: var(--ink) !important;
    box-shadow: none !important
}

.accordion-button:after {
    background-size: 14px
}

.faq-number {
    color: var(--red);
    margin-right: 16px;
    font-size: 11px
}

.accordion-body {
    padding: 0 0 20px 42px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7
}

.final-cta {
    padding: 90px 0;
    background: linear-gradient(100deg, #8d0000, #bd1518);
    color: #fff;
    position: relative;
    overflow: hidden
}

.final-cta:before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/services/ai-automation.jpg") center/cover;
    opacity: .12
}

.final-cta>* {
    position: relative
}

.final-cta h2 {
    font-size: clamp(2rem, 4vw, 3.5rem)
}

.final-cta p {
    color: #ffe7e7
}

.inner-hero {
    min-height: 330px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #071c14
}

.inner-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 28, 19, .92), rgba(0, 79, 50, .65), rgba(169, 0, 0, .28)), url("../img/services/web-design.jpg") center/cover
}

.inner-hero-content {
    position: relative;
    max-width: 760px;
    padding: 70px 0
}

.inner-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin: 0 0 12px
}

.inner-hero p {
    color: #e7eeeb;
    max-width: 650px
}

.breadcrumb {
    margin: 18px 0 0;
    font-size: 12px
}

.breadcrumb-item a {
    color: #fff
}

.breadcrumb-item.active {
    color: #ffb25f
}

.about-collage {
    position: relative;
    min-height: 520px
}

.collage-main {
    width: 83%;
    height: 450px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow)
}

.collage-accent {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 42%;
    height: 190px;
    object-fit: cover;
    border: 8px solid #fff;
    border-radius: 18px;
    box-shadow: var(--shadow);
    transform: rotate(4deg)
}

.collage-label {
    position: absolute;
    left: 5%;
    bottom: 28px;
    background: #fff;
    border-left: 4px solid var(--red);
    padding: 14px 20px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 12px;
    align-items: center
}

.collage-label strong {
    font-size: 28px;
    color: var(--red)
}

.collage-label span {
    font-size: 11px;
    font-weight: 800;
    color: var(--green)
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px
}

.about-highlights span {
    background: #f1f6f3;
    border-radius: 50px;
    padding: 9px 13px;
    font-size: 11px;
    font-weight: 800
}

.about-highlights i {
    color: var(--green);
    margin-right: 5px
}

.mission-section {
    background: #f5f8f6
}

.mission-card {
    height: 100%;
    background: #fff;
    padding: 35px;
    border-radius: 22px;
    border: 1px solid var(--line);
    border-top: 4px solid var(--red);
    box-shadow: 0 10px 35px rgba(0, 0, 0, .05)
}

.mission-card.green {
    border-top-color: var(--green)
}

.mission-card>i {
    font-size: 35px;
    color: var(--red)
}

.mission-card.green>i {
    color: var(--green)
}

.mission-card h3 {
    margin-top: 18px
}

.mission-card p {
    font-size: 14px
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px
}

.app-card {
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 17px;
    text-align: center;
    transition: .3s
}

.app-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow)
}

.app-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: #fff1ef;
    color: var(--red);
    display: grid;
    place-items: center;
    margin: 0 auto 15px
}

.app-card h3 {
    font-size: 15px;
    margin: 0
}

.app-card span {
    font-size: 10px;
    color: #8a9490
}

.values-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px
}

.value-pill {
    min-width: 140px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    text-align: center
}

.value-pill i {
    display: block;
    color: var(--red);
    font-size: 22px;
    margin-bottom: 8px
}

.value-pill strong {
    font-size: 12px
}

.process-section {
    background: #061c14;
    color: #fff
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 30px
}

.process-card {
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 25px;
    border-radius: 17px;
    background: rgba(255, 255, 255, .04)
}

.process-card span {
    color: #ffb25f;
    font: 800 26px "Manrope"
}

.process-card h3 {
    font-size: 15px;
    margin-top: 12px
}

.process-card p {
    font-size: 12px;
    color: #b8c8c1
}

.dark-visual {
    background: linear-gradient(100deg, #051b13, #092e20);
    color: #fff;
    position: relative;
    overflow: hidden
}

.dark-visual p {
    color: #c5d4ce
}

.dark-visual h2 {
    font-size: clamp(2rem, 4vw, 3.4rem)
}

.ecom-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.ecom-panel div {
    padding: 25px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    text-align: center
}

.ecom-panel i {
    display: block;
    color: #ffb25f;
    font-size: 28px;
    margin-bottom: 8px
}

.ecom-panel strong {
    font-size: 12px
}

.contact-list {
    display: grid;
    gap: 12px;
    margin-top: 28px
}

.contact-list>a,
.contact-list>div {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    color: var(--ink)
}

.contact-list i {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: #fff1ef;
    color: var(--red);
    display: grid;
    place-items: center;
    flex: none
}

.contact-list small {
    display: block;
    color: var(--muted);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 800
}

.contact-list strong {
    display: block;
    font-size: 14px
}

.contact-list span {
    display: block;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
    margin-top: 3px
}

.map-section {
    padding: 70px 0;
    background: #f5f8f6
}

.map-wrap {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 8px solid #fff
}

.site-footer {
    background: #041710;
    color: #c4d1cb;
    padding: 65px 0 20px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr 1.5fr;
    gap: 40px
}

.footer-brand img {
    width: 180px;
    background: #fff;
    padding: 8px;
    border-radius: 8px
}

.footer-brand p {
    color: #8fa39a
}

.site-footer h6 {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 11px;
    margin-bottom: 18px
}

.site-footer a {
    display: block;
    color: #aebeb7;
    font-size: 12px;
    margin: 10px 0
}

.site-footer a:hover {
    color: #ffb25f
}

.site-footer .small {
    font-size: 11px;
    line-height: 1.7
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 35px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    font-size: 10px;
    color: #7f9289
}

.footer-bottom strong {
    color: #ffb25f
}

.floating-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 100;
    display: grid;
    gap: 9px
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, .22);
    transition: .3s
}

.float-btn:hover {
    transform: scale(1.08);
    color: #fff
}

.float-btn.whatsapp {
    background: #16a05a
}

.float-btn.call {
    background: var(--red)
}

@media(max-width:991px) {
    .topbar-inner {
        overflow: hidden
    }

    .navbar-brand img {
        width: 155px
    }

    .navbar-nav {
        padding: 15px 0
    }

    .hero {
        min-height: 620px
    }

    .visual-stack {
        min-height: 470px
    }

    .visual-main img {
        height: 420px
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .process-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .app-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:767px) {
    .container {
        width: min(100% - 24px, 1180px)
    }

    .topbar {
        display: none
    }

    .section {
        padding: 65px 0
    }

    .hero {
        min-height: 670px
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(3, 12, 9, .95), rgba(3, 12, 9, .65))
    }

    .hero-content {
        padding: 55px 0
    }

    .hero h1 {
        font-size: clamp(2.6rem, 12vw, 4rem)
    }

    .hero p {
        font-size: 15px
    }

    .hero-mini-proof {
        display: grid;
        gap: 8px
    }

    .stats-strip .col-6:nth-child(2) .stat,
    .stats-strip .col-6:nth-child(4) .stat {
        border-right: 0
    }

    .stat {
        padding: 18px 8px
    }

    .stat span {
        font-size: 9px
    }

    .visual-stack {
        min-height: 400px
    }

    .visual-main {
        width: 86%
    }

    .visual-main img {
        height: 360px
    }

    .visual-small {
        width: 38%
    }

    .visual-small img {
        height: 120px
    }

    .visual-badge {
        left: 2%;
        bottom: 15px;
        padding: 11px 14px
    }

    .visual-badge strong {
        font-size: 22px
    }

    .feature-list {
        grid-template-columns: 1fr
    }

    .cta-green {
        background-attachment: scroll
    }

    .service-card {
        padding: 23px
    }

    .tech-orbit {
        width: 330px
    }

    .reason-card {
        padding: 18px 12px
    }

    .reason-card p {
        font-size: 10px
    }

    .reason-card h3 {
        font-size: 12px
    }

    .reason-icon {
        width: 38px;
        height: 38px;
        font-size: 16px
    }

    .lead-intro {
        padding: 32px 24px
    }

    .inner-hero {
        min-height: 290px
    }

    .inner-hero-content {
        padding: 55px 0
    }

    .inner-hero h1 {
        font-size: 2.7rem
    }

    .about-collage {
        min-height: 400px
    }

    .collage-main {
        height: 350px
    }

    .collage-accent {
        height: 140px
    }

    .process-grid {
        grid-template-columns: 1fr 1fr
    }

    .app-grid {
        grid-template-columns: 1fr 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px
    }

    .footer-bottom {
        display: grid
    }

    .floating-actions {
        right: 12px;
        bottom: 12px
    }

    .float-btn {
        width: 46px;
        height: 46px
    }
}

@media(max-width:480px) {
    .navbar-brand img {
        width: 145px
    }

    .hero-actions .btn {
        width: 100%
    }

    .hero-controls {
        right: 12px;
        bottom: 22px
    }

    .section-heading h2 {
        font-size: 2rem
    }

    .app-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .pricing-card.featured,
    .price-card.featured {
        transform: none
    }

    .tech-orbit {
        width: 290px
    }

    .orbit-item {
        width: 66px;
        height: 66px
    }

    .orbit-core {
        inset: 33%
    }

    .item-1 {
        left: calc(50% - 33px)
    }

    .item-3 {
        left: calc(50% - 33px)
    }
}

/* =========================================================
   HOMEPAGE REFERENCE DESIGN — ROBOT / DEVICES / SERVICES
   ========================================================= */
.home-reference {
    background: #fff;
    overflow: hidden
}

.home-reference .topbar {
    background: #063c29
}

.home-reference .main-nav {
    background: #fff
}

.home-reference .navbar-brand img {
    width: 175px
}

.home-reference .nav-link {
    font-size: 13px;
    padding: 15px 12px !important
}

.home-reference .dropdown-menu {
    border: 1px solid #e5ebe7;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .10);
    padding: 8px
}

.home-reference .dropdown-item {
    font-size: 12px;
    font-weight: 700;
    padding: 10px 12px;
    border-radius: 8px
}

.home-reference .dropdown-item:hover {
    background: #f2f7f4;
    color: var(--red)
}

.ref-hero {
    position: relative;
    min-height: 590px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 42%, rgba(188, 225, 239, .72) 0, rgba(224, 240, 246, .42) 25%, transparent 49%),
        linear-gradient(110deg, #fff 0%, #fff 34%, #f8fbfa 50%, #eaf4f8 100%)
}

.ref-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 62% 52%, rgba(255, 255, 255, .92), transparent 22%),
        linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .98) 27%, rgba(255, 255, 255, .72) 39%, rgba(255, 255, 255, 0) 61%);
    z-index: 1
}

.ref-hero:after {
    content: "";
    position: absolute;
    right: -8%;
    top: -25%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, .88) 0, rgba(205, 229, 239, .34) 37%, transparent 70%);
    pointer-events: none;
    z-index: 1
}

.ref-hero-glow {
    position: absolute;
    left: -160px;
    bottom: -260px;
    width: 650px;
    height: 540px;
    background: radial-gradient(circle, rgba(0, 79, 50, .10), transparent 69%);
    filter: blur(20px);
    z-index: 1
}

.ref-hero-copy {
    position: relative;
    z-index: 5;
    padding: 72px 0 62px
}

.ref-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(239, 248, 244, .78);
    color: var(--green);
    border: 1px solid rgba(0, 79, 50, .13);
    border-radius: 50px;
    padding: 8px 14px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 19px;
    box-shadow: 0 8px 25px rgba(0, 79, 50, .06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px)
}

.ref-kicker i {
    color: var(--orange)
}

.ref-hero h1 {
    font-size: clamp(3.5rem, 5.25vw, 5.7rem);
    line-height: .94;
    letter-spacing: -.062em;
    margin: 0 0 23px;
    color: #101719;
    text-wrap: balance
}

.ref-hero h1 strong {
    color: var(--red);
    font-weight: 900
}

.ref-hero h1 em {
    font-style: normal;
    color: var(--green)
}

.ref-hero-copy>p {
    max-width: 610px;
    font-size: 17px;
    color: #52605b;
    line-height: 1.65;
    margin-bottom: 29px
}

.ref-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.ref-hero-actions .btn {
    min-width: 205px;
    padding: .92rem 1.25rem
}

.btn-whatsapp {
    background: #075a3b;
    color: #fff;
    border: 1px solid #075a3b
}

.btn-whatsapp:hover {
    background: #043c29;
    color: #fff
}

.ref-hero-art {
    position: relative;
    z-index: 3;
    height: 590px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: -95px;
    margin-left: -18px
}

.ref-hero-art>img {
    width: 112%;
    max-width: 1060px;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    mix-blend-mode: multiply;
    filter: saturate(.98) contrast(1.03);
    animation: heroFloat 8s ease-in-out infinite;
    mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, .35) 8%, #000 21%, #000 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, .35) 8%, #000 21%, #000 100%)
}

.ref-hero-art:before {
    content: "";
    position: absolute;
    inset: 3% 0 2% 0;
    z-index: 4;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255, 255, 255, .95) 0%, rgba(255, 255, 255, .66) 10%, rgba(255, 255, 255, .12) 27%, transparent 43%), linear-gradient(0deg, rgba(255, 255, 255, .22) 0%, transparent 12%, transparent 88%, rgba(255, 255, 255, .18) 100%);
    mix-blend-mode: screen
}

.ref-hero-art:after {
    content: "";
    position: absolute;
    right: 5%;
    bottom: 54px;
    width: 72%;
    height: 80px;
    background: rgba(0, 57, 38, .13);
    filter: blur(28px);
    border-radius: 50%;
    z-index: -1
}

.hero-art-orb {
    position: absolute;
    width: 66px;
    height: 66px;
    border: 1px solid rgba(255, 255, 255, .78);
    background: rgba(255, 255, 255, .48);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: var(--green);
    font-size: 25px;
    box-shadow: 0 18px 45px rgba(15, 60, 65, .12), inset 0 1px 0 rgba(255, 255, 255, .95);
    animation: orbFloat 4s ease-in-out infinite;
    z-index: 6
}

.hero-art-orb.one {
    left: 13%;
    top: 24%;
    animation-delay: .2s
}

.hero-art-orb.two {
    left: 25%;
    bottom: 25%;
    animation-delay: 1s
}

.hero-art-orb.three {
    left: 42%;
    top: 18%;
    animation-delay: 1.6s
}

@keyframes heroFloat {

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

    50% {
        transform: translate3d(0, -10px, 0) scale(1.012)
    }
}

@keyframes orbFloat {

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

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

.ref-stats {
    position: relative;
    z-index: 5;
    margin-top: -1px;
    background: #063c29;
    color: #fff
}

.ref-stat-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-radius: 0 0 16px 16px;
    overflow: hidden
}

.ref-stat {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-right: 1px solid rgba(255, 255, 255, .22);
    padding: 12px 15px
}

.ref-stat:last-child {
    border-right: 0
}

.ref-stat>i {
    font-size: 28px;
    color: #f2a34d
}

.ref-stat:nth-child(2)>i,
.ref-stat:nth-child(5)>i {
    color: #e9efe9
}

.ref-stat strong {
    display: block;
    font: 800 30px/1 "Manrope"
}

.ref-stat span {
    display: block;
    color: #c9d9d2;
    font-size: 11px;
    margin-top: 4px
}

.ref-services {
    padding: 62px 0 25px
}

.ref-section-title {
    text-align: center;
    margin-bottom: 25px
}

.ref-section-title>span {
    font: 800 26px "Manrope";
    letter-spacing: -.02em
}

.ref-section-title>span strong {
    color: var(--red)
}

.ref-section-title>p {
    font-size: 14px;
    margin: 7px auto 0;
    color: #6d7974
}

.ref-services-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
    gap: 18px;
    align-items: stretch
}

.ref-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
}

.ref-service-card {
    background: rgba(255, 255, 255, .76);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(225, 233, 229, .92);
    border-radius: 16px;
    padding: 24px 15px 18px;
    text-align: center;
    min-height: 198px;
    transition: .35s;
    box-shadow: 0 8px 25px rgba(0, 35, 25, .045);
    position: relative;
    overflow: hidden
}

.ref-service-card:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--orange), var(--green));
    transform: scaleX(0);
    transform-origin: center;
    transition: .35s
}

.ref-service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .08)
}

.ref-service-card:hover:before {
    transform: scaleX(1)
}

.ref-service-icon {
    width: 42px;
    height: 42px;
    margin: 0 auto 10px;
    display: grid;
    place-items: center;
    font-size: 25px;
    color: var(--red)
}

.ref-service-card:nth-child(2n) .ref-service-icon {
    color: var(--green)
}

.ref-service-card:nth-child(4n) .ref-service-icon {
    color: #df751b
}

.ref-service-card h3 {
    font-size: 15px;
    line-height: 1.25;
    margin: 0 0 7px;
    letter-spacing: -.02em
}

.ref-service-card p {
    font-size: 12px;
    line-height: 1.55;
    margin: 0 auto 12px;
    max-width: 180px
}

.ref-service-card a {
    font-size: 11px;
    font-weight: 900;
    color: var(--green)
}

.ref-service-card a i {
    transition: .2s
}

.ref-service-card a:hover i {
    margin-left: 4px
}

.ref-hsites-card {
    background: linear-gradient(135deg, #063c29, #05261c);
    border-radius: 17px;
    min-height: 380px;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    box-shadow: 0 15px 35px rgba(0, 57, 38, .18)
}

.ref-hsites-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 45%, rgba(49, 153, 116, .18), transparent 50%)
}

.ref-hsites-copy {
    position: relative;
    z-index: 2;
    padding: 28px 25px;
    width: 56%
}

.ref-hsites-copy>span {
    font-weight: 900;
    color: #ffb25f;
    font-size: 14px
}

.ref-hsites-copy h2 {
    font-size: 24px;
    line-height: 1.05;
    color: #fff;
    margin: 5px 0 10px
}

.ref-hsites-copy p {
    font-size: 11px;
    line-height: 1.55;
    color: #d2dfd9
}

.ref-hsites-copy p strong {
    color: #ffb25f
}

.ref-hsites-copy ul {
    padding: 0;
    margin: 17px 0;
    list-style: none
}

.ref-hsites-copy li {
    font-size: 10px;
    color: #e1ebe6;
    margin: 8px 0
}

.ref-hsites-copy li i {
    color: #65d68e;
    margin-right: 6px
}

.btn-hsites {
    background: #079b55;
    color: #fff;
    border: 1px solid #079b55;
    font-size: 11px;
    padding: .6rem .8rem
}

.btn-hsites:hover {
    background: #087b47;
    color: #fff
}

.ref-hsites-image {
    position: absolute;
    right: -25px;
    bottom: -8px;
    width: 58%;
    height: 82%;
    z-index: 1;
    display: flex;
    align-items: flex-end
}

.ref-hsites-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    mix-blend-mode: screen;
    opacity: .95;
    border-radius: 20px;
    filter: contrast(1.04)
}

.ref-promo {
    padding: 30px 0 75px
}

.ref-promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

.ref-promo-card {
    min-height: 310px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    color: #fff;
    display: flex;
    align-items: stretch;
    background: #0b1e19;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .1)
}

.ref-promo-card>div {
    position: relative;
    z-index: 2;
    padding: 23px 20px;
    width: 58%
}

.ref-promo-card>img {
    position: absolute;
    right: 0;
    top: 0;
    width: 62%;
    height: 100%;
    object-fit: cover;
    opacity: .82;
    z-index: 1;
    mask-image: linear-gradient(90deg, transparent 0%, #000 35%)
}

.ref-promo-card:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 24, 17, .98) 0%, rgba(0, 24, 17, .85) 45%, rgba(0, 24, 17, .15) 100%)
}

.ref-promo-card span {
    font-size: 11px;
    color: #ffb25f;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em
}

.ref-promo-card h3 {
    font-size: 20px;
    line-height: 1.12;
    margin: 6px 0 10px;
    color: #fff
}

.ref-promo-card p,
.ref-promo-card li {
    color: #d3dfda;
    font-size: 10px;
    line-height: 1.55
}

.ref-promo-card ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 15px
}

.ref-promo-card li {
    margin: 5px 0
}

.ref-promo-card li:before {
    content: "✓";
    color: #6ce092;
    margin-right: 7px;
    font-weight: 900
}

.ref-promo-card.ecommerce {
    background: #15192a
}

.ref-promo-card.ai {
    background: #06261e
}

.ref-promo-card.ecommerce:after {
    background: linear-gradient(90deg, rgba(16, 20, 37, .98) 0%, rgba(16, 20, 37, .82) 45%, rgba(16, 20, 37, .1) 100%)
}

.ref-promo-card.ai:after {
    background: linear-gradient(90deg, rgba(3, 37, 28, .98) 0%, rgba(3, 37, 28, .8) 45%, rgba(3, 37, 28, .08) 100%)
}

.ref-trust {
    padding: 0 0 75px
}

.ref-trust-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border: 1px solid #e6ebe8;
    border-radius: 14px;
    overflow: hidden
}

.ref-trust-item {
    padding: 20px 12px;
    text-align: center;
    border-right: 1px solid #e6ebe8;
    transition: .3s
}

.ref-trust-item:last-child {
    border-right: 0
}

.ref-trust-item:hover {
    background: #f5f9f7
}

.ref-trust-item i {
    font-size: 25px;
    color: var(--green)
}

.ref-trust-item:nth-child(2n) i {
    color: var(--red)
}

.ref-trust-item h3 {
    font-size: 11px;
    margin: 9px 0 4px
}

.ref-trust-item p {
    font-size: 9.5px;
    line-height: 1.5;
    margin: 0
}

.ref-final-cta {
    padding: 55px 0;
    background: linear-gradient(100deg, #f8fbfa, #fff);
    border-top: 1px solid #edf1ef
}

.ref-final-cta>div {
    border: 1px solid #e2e9e5;
    border-radius: 22px;
    padding: 38px 25px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .04);
    background: #fff
}

.ref-final-cta span {
    font-size: 11px;
    font-weight: 900;
    color: var(--red);
    letter-spacing: .08em
}

.ref-final-cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    margin: 7px 0 0
}

.btn-outline-green {
    border: 1px solid var(--green);
    color: var(--green);
    background: #fff
}

.btn-outline-green:hover {
    background: var(--green);
    color: #fff
}

@media(max-width:1199px) {
    .ref-hero-art {
        margin-right: -85px
    }

    .ref-hero h1 {
        font-size: 4.35rem
    }

    .ref-stat-grid {
        grid-template-columns: repeat(5, 1fr)
    }

    .ref-hsites-copy {
        width: 60%;
        padding: 23px 18px
    }

    .ref-hsites-copy h2 {
        font-size: 21px
    }

    .ref-promo-card>div {
        width: 68%
    }

    .ref-promo-card>img {
        width: 65%
    }
}

@media(max-width:991px) {
    .home-reference .topbar-inner {
        gap: 14px
    }

    .ref-hero {
        min-height: auto
    }

    .ref-hero-copy {
        padding: 55px 0 15px
    }

    .ref-hero-art {
        height: 430px;
        margin-right: 0;
        margin-left: 0
    }

    .ref-hero-art>img {
        object-fit: cover;
        object-position: center;
        mask-image: none;
        -webkit-mask-image: none
    }

    .ref-hero-art:before {
        inset: 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, .08), transparent 35%, rgba(255, 255, 255, .12))
    }

    .hero-art-orb {
        display: none
    }

    .ref-stat-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .ref-stat:nth-child(3) {
        border-right: 0
    }

    .ref-stat:nth-child(4),
    .ref-stat:nth-child(5) {
        border-top: 1px solid rgba(255, 255, 255, .15)
    }

    .ref-services-layout {
        grid-template-columns: 1fr
    }

    .ref-hsites-card {
        min-height: 330px
    }

    .ref-service-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .ref-promo-grid {
        grid-template-columns: 1fr
    }

    .ref-promo-card {
        min-height: 300px
    }

    .ref-trust-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .ref-trust-item:nth-child(3) {
        border-right: 0
    }

    .ref-trust-item:nth-child(n+4) {
        border-top: 1px solid #e6ebe8
    }
}

@media(max-width:767px) {
    .home-reference .topbar {
        display: block
    }

    .home-reference .topbar-inner {
        min-height: 32px;
        overflow: hidden;
        font-size: 9px;
        gap: 9px
    }

    .home-reference .topbar-item:nth-child(2),
    .home-reference .topbar-item:nth-child(5) {
        display: none !important
    }

    .home-reference .top-social {
        display: none
    }

    .home-reference .navbar-brand img {
        width: 145px
    }

    .ref-hero {
        padding-bottom: 0
    }

    .ref-hero h1 {
        font-size: clamp(3rem, 13vw, 4.35rem)
    }

    .ref-hero-copy>p {
        font-size: 15px
    }

    .ref-hero-actions .btn {
        width: 100%;
        min-width: 0
    }

    .ref-hero-art {
        height: 300px;
        margin-top: -10px
    }

    .ref-hero-art>img {
        object-fit: cover;
        object-position: 57% center
    }

    .ref-stat-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .ref-stat {
        min-height: 74px
    }

    .ref-stat:nth-child(2),
    .ref-stat:nth-child(4) {
        border-right: 0
    }

    .ref-stat:nth-child(3) {
        border-right: 1px solid rgba(255, 255, 255, .22)
    }

    .ref-stat:nth-child(5) {
        grid-column: 1/-1;
        border-right: 0
    }

    .ref-service-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .ref-service-card {
        min-height: 195px;
        padding: 20px 11px
    }

    .ref-service-card h3 {
        font-size: 13px
    }

    .ref-service-card p {
        font-size: 10.5px
    }

    .ref-hsites-card {
        min-height: 330px
    }

    .ref-hsites-copy {
        width: 65%;
        padding: 23px 16px
    }

    .ref-hsites-copy h2 {
        font-size: 20px
    }

    .ref-hsites-image {
        width: 62%;
        right: -45px
    }

    .ref-promo-card {
        min-height: 310px
    }

    .ref-promo-card>div {
        width: 72%
    }

    .ref-promo-card h3 {
        font-size: 19px
    }

    .ref-trust-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .ref-trust-item:nth-child(2n) {
        border-right: 0
    }

    .ref-trust-item:nth-child(n+3) {
        border-top: 1px solid #e6ebe8
    }

    .ref-final-cta>div {
        padding: 30px 18px
    }

    .ref-section-title>span {
        font-size: 21px
    }
}

@media(max-width:430px) {
    .home-reference .topbar-item {
        font-size: 8px
    }

    .ref-hero-copy {
        padding-top: 42px
    }

    .ref-hero-art {
        height: 255px
    }

    .ref-service-grid {
        gap: 8px
    }

    .ref-service-card {
        min-height: 175px
    }

    .ref-hsites-card {
        min-height: 315px
    }

    .ref-hsites-copy {
        width: 72%
    }

    .ref-hsites-image {
        width: 58%;
        right: -35px
    }

    .ref-promo-card>div {
        width: 78%
    }

    .ref-promo-card>img {
        width: 72%
    }
}






/* =========================================================
   HUMANS HERO
========================================================= */

.humans-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f7faf9;
}

.humans-hero-carousel,
.humans-hero-slide {
    width: 100%;
}

.humans-hero-slide {
    position: relative;
    min-height: 620px;
    height: min(700px, calc(100vh - 125px));
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}


/* ---------------------------------------------------------
   BACKGROUND IMAGE
--------------------------------------------------------- */

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -3;

    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    transform: scale(1.04);

    animation: heroImageZoom 12s ease-in-out infinite alternate;
}

@keyframes heroImageZoom {

    0% {
        transform: scale(1.04);
    }

    100% {
        transform: scale(1.10);
    }

}


/* ---------------------------------------------------------
   LEFT GRADIENT
--------------------------------------------------------- */

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;

    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.94) 25%,
            rgba(255, 255, 255, 0.78) 42%,
            rgba(255, 255, 255, 0.30) 61%,
            rgba(255, 255, 255, 0.00) 78%);
}


/* Additional bottom blending */

.hero-overlay::after {
    content: "";
    position: absolute;
    inset: auto 0 0;

    height: 150px;

    background:
        linear-gradient(to top,
            rgba(255, 255, 255, 0.90),
            transparent);
}


/* ---------------------------------------------------------
   CONTAINER
--------------------------------------------------------- */

.hero-container {
    position: relative;
    z-index: 5;

    width: 100%;
}


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

.hero-content {
    width: min(620px, 52vw);
    padding: 70px 0;
}


/* ---------------------------------------------------------
   EYEBROW
--------------------------------------------------------- */

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 9px 16px;

    margin-bottom: 24px;

    border: 1px solid rgba(0, 95, 70, 0.14);
    border-radius: 999px;

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

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    color: #005d43;

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

    letter-spacing: 1.3px;
}

.hero-eyebrow i {
    color: #d00000;
}


/* ---------------------------------------------------------
   HEADINGS
--------------------------------------------------------- */

.hero-content h1,
.hero-content h2 {

    margin: 0 0 22px;

    color: #101719;

    font-size: clamp(48px, 5vw, 78px);

    line-height: 0.98;

    letter-spacing: -3px;

    font-weight: 850;

    text-shadow:
        0 2px 4px rgba(255, 255, 255, 0.85);
}

.hero-content h1 span,
.hero-content h2 span {
    color: #c50000;
}

.hero-content h1 strong,
.hero-content h2 strong {
    color: #005d43;
    font-weight: 850;
}


/* ---------------------------------------------------------
   DESCRIPTION
--------------------------------------------------------- */

.hero-content p {

    max-width: 560px;

    margin: 0 0 30px;

    color: #475654;

    font-size: 17px;

    line-height: 1.65;

    font-weight: 500;

    text-shadow:
        0 1px 2px rgba(255, 255, 255, 0.9);
}


/* ---------------------------------------------------------
   BUTTONS
--------------------------------------------------------- */

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-hero-primary,
.btn-hero-whatsapp {

    display: inline-flex;

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

    gap: 10px;

    min-height: 54px;

    padding: 0 25px;

    border-radius: 10px;

    font-size: 15px;

    font-weight: 750;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}

.btn-hero-primary {

    color: #fff;

    background: #c60000;

    border: 1px solid #c60000;

    box-shadow:
        0 12px 28px rgba(198, 0, 0, .20);
}

.btn-hero-primary:hover {

    color: #fff;

    background: #a90000;

    transform: translateY(-3px);

    box-shadow:
        0 18px 34px rgba(198, 0, 0, .28);
}


.btn-hero-whatsapp {

    color: #fff;

    background: #005d43;

    border: 1px solid #005d43;

    box-shadow:
        0 12px 28px rgba(0, 93, 67, .20);
}

.btn-hero-whatsapp:hover {

    color: #fff;

    background: #004b36;

    transform: translateY(-3px);

    box-shadow:
        0 18px 34px rgba(0, 93, 67, .28);
}


/* ---------------------------------------------------------
   OWL NAVIGATION
--------------------------------------------------------- */

.humans-hero .owl-nav {

    position: absolute;

    right: 45px;
    bottom: 38px;

    display: flex;

    gap: 9px;

    margin: 0;
}

.humans-hero .owl-nav button {

    width: 48px;
    height: 48px;

    margin: 0 !important;

    display: flex !important;

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

    border-radius: 50% !important;

    color: #005d43 !important;

    background: rgba(255, 255, 255, .70) !important;

    border: 1px solid rgba(0, 93, 67, .16) !important;

    backdrop-filter: blur(14px);

    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .08);

    transition: all .25s ease;
}

.humans-hero .owl-nav button:hover {

    color: #fff !important;

    background: #005d43 !important;

    transform: translateY(-2px);
}


/* ---------------------------------------------------------
   DOTS
--------------------------------------------------------- */

.humans-hero .owl-dots {

    position: absolute;

    left: 50%;

    bottom: 28px;

    transform: translateX(-50%);

    display: flex;

    gap: 7px;
}

.humans-hero .owl-dot span {

    width: 24px !important;
    height: 4px !important;

    margin: 0 !important;

    border-radius: 10px !important;

    background: rgba(0, 93, 67, .20) !important;

    transition: all .3s ease;
}

.humans-hero .owl-dot.active span {

    width: 42px !important;

    background: #c60000 !important;
}


/* ---------------------------------------------------------
   SLIDE ANIMATION
--------------------------------------------------------- */

.owl-item.active .hero-content {

    animation:
        heroContentIn .9s cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes heroContentIn {

    from {
        opacity: 0;
        transform: translateX(-55px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

@media (max-width: 991px) {

    .humans-hero-slide {
        min-height: 650px;
        height: 720px;
        align-items: flex-start;
    }

    .hero-bg {

        background-position:
            68% center;

    }

    .hero-overlay {

        background:
            linear-gradient(180deg,
                rgba(255, 255, 255, .98) 0%,
                rgba(255, 255, 255, .93) 35%,
                rgba(255, 255, 255, .45) 63%,
                rgba(255, 255, 255, .08) 100%);

    }

    .hero-content {

        width: 100%;

        max-width: 650px;

        padding-top: 65px;

    }

    .hero-content h1,
    .hero-content h2 {

        font-size: clamp(44px, 8vw, 64px);

        letter-spacing: -2px;

    }

    .humans-hero .owl-nav {

        right: 20px;
        bottom: 22px;

    }

    .humans-hero .owl-dots {

        bottom: 38px;

    }

}


@media (max-width: 575px) {

    .humans-hero-slide {

        min-height: 680px;
        height: 760px;

    }

    .hero-bg {

        background-position:
            67% bottom;

    }

    .hero-content {

        padding-top: 40px;

    }

    .hero-content h1,
    .hero-content h2 {

        font-size: 43px;

        line-height: .99;

        letter-spacing: -1.8px;

    }

    .hero-content p {

        font-size: 15px;

        max-width: 95%;

    }

    .hero-actions {

        flex-direction: column;

        align-items: flex-start;

    }

    .btn-hero-primary,
    .btn-hero-whatsapp {

        width: auto;

        min-height: 50px;

    }

    .humans-hero .owl-nav {

        bottom: 18px;

    }

    .humans-hero .owl-dots {

        left: 25px;

        transform: none;

        bottom: 39px;

    }

}













/* ============ WEBSITE DESIGNING LANDING PAGE ============ */
.inner-hero h1 span {
    color: #ffb25f
}

.lp-soft {
    background: #f5f8f6
}

.lp-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px
}

.lp-hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #e7eeeb;
    border-radius: 50px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700
}

.lp-hero-points i {
    color: #ffb25f
}

.lp-chapter-num {
    font: 800 12px "Manrope";
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--green);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px
}

.lp-chapter-num:before {
    content: "";
    width: 34px;
    height: 3px;
    border-radius: 3px;
    background: var(--orange)
}

.lp-chapter h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.8rem);
    line-height: 1.12;
    margin: 0 0 18px;
    color: #101719
}

.lp-chapter h2 span {
    color: var(--green)
}

.lp-chapter p {
    font-size: 15px
}

.lp-chapter .btn {
    margin-top: 14px
}

.lp-trio {
    display: grid;
    gap: 12px
}

.lp-trio>div {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow-sm)
}

.lp-trio i {
    width: 46px;
    height: 46px;
    flex: none;
    border-radius: 13px;
    display: grid;
    place-items: center;
    font-size: 21px;
    color: #fff;
    background: linear-gradient(135deg, var(--green), #02301f)
}

.lp-trio>div:nth-child(2) i {
    background: linear-gradient(135deg, var(--orange), #a34e05)
}

.lp-trio>div:nth-child(3) i {
    background: linear-gradient(135deg, var(--red), #7d0000)
}

.lp-trio strong {
    display: block;
    font-size: 14px
}

.lp-trio span {
    display: block;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.55;
    margin-top: 2px
}

.lp-trio-247 {
    margin-top: 12px;
    text-align: center;
    background: linear-gradient(135deg, #063c29, #042719);
    color: #fff;
    border-radius: 16px;
    padding: 14px;
    font-size: 13px;
    font-weight: 800
}

.lp-trio-247 i {
    color: #ffb25f;
    margin-right: 6px
}

.lp-reason-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 34px
}

.lp-reason {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 24px 20px;
    transition: .3s;
    box-shadow: var(--shadow-sm)
}

.lp-reason:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md)
}

.lp-reason i {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    font-size: 20px;
    color: var(--green);
    background: rgba(0, 79, 50, .08);
    margin-bottom: 14px
}

.lp-reason:nth-child(2n) i {
    color: var(--red);
    background: rgba(169, 0, 0, .08)
}

.lp-reason h3 {
    font-size: 15px;
    margin: 0 0 8px
}

.lp-reason p {
    font-size: 12.5px;
    line-height: 1.6;
    margin: 0
}

.lp-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 10px;
    margin-top: 30px
}

.lp-flow-step {
    flex: 1;
    min-width: 150px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    box-shadow: var(--shadow-sm)
}

.lp-flow-step i {
    display: block;
    font-size: 26px;
    color: var(--green);
    margin-bottom: 8px
}

.lp-flow-step strong {
    display: block;
    font-size: 13.5px
}

.lp-flow-step span {
    font-size: 11.5px;
    color: var(--muted);
    line-height: 1.5;
    display: block;
    margin-top: 4px
}

.lp-flow-arrow {
    align-self: center;
    color: var(--orange);
    font-size: 24px
}

.lp-note {
    border-left: 4px solid var(--orange);
    background: #fdf6ec;
    border-radius: 0 14px 14px 0;
    padding: 16px 20px;
    font-size: 13.5px;
    color: #6b4a1d;
    line-height: 1.6
}

.lp-note strong {
    color: #4a3312
}

.lp-expect-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 34px
}

.lp-expect,
.lp-myth {
    border-radius: 20px;
    padding: 30px 28px;
    border: 1px solid var(--line)
}

.lp-expect {
    background: #f2f9f5;
    border-color: #d3e6dc
}

.lp-myth {
    background: #fdf4f3;
    border-color: #f0d8d5
}

.lp-expect h3,
.lp-myth h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    margin: 0 0 16px;
    color: #101719
}

.lp-expect h3 i {
    color: var(--green)
}

.lp-myth h3 i {
    color: var(--red)
}

.lp-expect ul,
.lp-myth ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 11px
}

.lp-expect li,
.lp-myth li {
    display: flex;
    gap: 10px;
    font-size: 13.5px;
    line-height: 1.55;
    color: #3c4642
}

.lp-expect li i {
    color: var(--green);
    margin-top: 2px
}

.lp-myth li i {
    color: var(--red);
    margin-top: 2px
}

.lp-anatomy {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 34px
}

.lp-anatomy>div {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px 20px;
    box-shadow: var(--shadow-sm);
    transition: .3s
}

.lp-anatomy>div:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md)
}

.lp-anatomy i {
    font-size: 24px;
    color: var(--red);
    display: block;
    margin-bottom: 10px
}

.lp-anatomy>div:nth-child(2n) i {
    color: var(--green)
}

.lp-anatomy strong {
    display: block;
    font-size: 14px;
    margin-bottom: 6px
}

.lp-anatomy span {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
    display: block
}

.lp-ladder {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 34px;
    counter-reset: rung
}

.lp-rung {
    background: #f6faf8;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px 18px;
    position: relative
}

.lp-rung:before {
    counter-increment: rung;
    content: counter(rung);
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e3ede8;
    color: var(--green);
    font: 800 13px "Manrope";
    margin-bottom: 12px
}

.lp-rung strong {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #101719
}

.lp-rung p {
    font-size: 11.5px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0
}

.lp-rung.ready {
    background: linear-gradient(135deg, #0b7d4e, #043c29);
    border-color: #35b586;
    box-shadow: var(--shadow-md)
}

.lp-rung.ready:before {
    background: #ffb25f;
    color: #063c29
}

.lp-rung.ready strong {
    color: #fff
}

.lp-rung.ready p {
    color: #cfe3da
}

.lp-sticky-cta {
    position: fixed;
    left: 50%;
    bottom: 18px;
    z-index: 97;
    transform: translate(-50%, 160%);
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #063c29, #042719);
    color: #fff;
    border-radius: 50px;
    padding: 10px 12px 10px 22px;
    box-shadow: 0 18px 45px rgba(0, 40, 25, .42);
    transition: transform .45s cubic-bezier(.23, 1, .32, 1);
    border: 1px solid rgba(255, 255, 255, .14)
}

.lp-sticky-cta.is-visible {
    transform: translate(-50%, 0)
}

.lp-sticky-cta>span {
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap
}

.lp-sticky-cta>span strong {
    color: #ffb25f
}

.lp-sticky-cta .btn {
    white-space: nowrap;
    padding: .62rem 1.15rem;
    font-size: 12px
}

@media(max-width:991px) {
    .lp-reason-grid {
        grid-template-columns: 1fr 1fr
    }

    .lp-anatomy {
        grid-template-columns: 1fr 1fr
    }

    .lp-ladder {
        grid-template-columns: 1fr 1fr
    }

    .lp-sticky-cta>span {
        display: none
    }

    .lp-sticky-cta {
        padding: 9px
    }
}

@media(max-width:767px) {
    .lp-expect-wrap {
        grid-template-columns: 1fr
    }

    .lp-flow-arrow {
        transform: rotate(90deg)
    }

    .lp-sticky-cta {
        display: none
    }
}

@media(max-width:480px) {
    .lp-reason-grid {
        grid-template-columns: 1fr
    }

    .lp-anatomy {
        grid-template-columns: 1fr
    }

    .lp-ladder {
        grid-template-columns: 1fr
    }
}




/* ============ HUMMY — COMIC GUIDE MASCOT ============ */
.hummy {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: hummyIn .9s cubic-bezier(.3, 1.35, .45, 1) 1s both
}

.hummy-bubble {
    position: relative;
    width: min(255px, calc(100vw - 40px));
    background: #fff;
    border: 3px solid #101517;
    border-radius: 18px 18px 18px 5px;
    padding: 16px 16px 11px;
    box-shadow: 5px 5px 0 rgba(16, 21, 23, .9);
    transform: rotate(-1.2deg);
    margin-bottom: 16px;
    transition: opacity .3s, transform .3s;
    transform-origin: bottom left;
    animation: hummyWiggle 7s ease-in-out 3s infinite
}

.hummy-bubble:after {
    content: "";
    position: absolute;
    left: 24px;
    bottom: -11px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-right: 3px solid #101517;
    border-bottom: 3px solid #101517;
    transform: rotate(45deg)
}

.hummy-tag,
.hummy-text,
.hummy-cta {
    transition: opacity .22s ease
}

.hummy-bubble.is-switching .hummy-tag,
.hummy-bubble.is-switching .hummy-text,
.hummy-bubble.is-switching .hummy-cta {
    opacity: 0
}

.hummy-tag {
    display: block;
    font-family: 'Bangers', cursive;
    font-size: 20px;
    letter-spacing: .05em;
    color: var(--green);
    line-height: 1;
    margin-bottom: 6px
}

.hummy-text {
    font-size: 12.5px;
    line-height: 1.55;
    color: #3c4642;
    margin: 0 0 10px;
    min-height: 56px
}

.hummy-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--green);
    border-bottom: 2px solid rgba(0, 79, 50, .25);
    padding-bottom: 2px
}

.hummy-cta:hover {
    color: var(--red);
    border-color: var(--red)
}

.hummy-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 11px;
    border-top: 1px dashed #dfe6e2;
    padding-top: 8px
}

.hummy-controls>button {
    border: 0;
    background: #f1f6f3;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 11px;
    color: var(--green);
    transition: .25s;
    cursor: pointer
}

.hummy-controls>button:hover {
    background: var(--green);
    color: #fff
}

.hummy-dots {
    display: flex;
    gap: 5px
}

.hummy-dots i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cfdad4;
    transition: .3s
}

.hummy-dots i.active {
    background: var(--green);
    transform: scale(1.35)
}

.hummy-close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #101517;
    color: #fff;
    border: 2px solid #fff;
    font-size: 11px;
    display: grid;
    place-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
    cursor: pointer;
    z-index: 2
}

.hummy-bot {
    position: relative;
    width: 104px;
    height: 114px;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    filter: drop-shadow(0 12px 18px rgba(6, 60, 41, .30));
    animation: hummyBob 3.6s ease-in-out infinite
}

.hummy-bot:before {
    content: "";
    position: absolute;
    inset: 8px -6px -4px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(7, 155, 85, .34), transparent 62%);
    animation: hummyGlow 2.6s ease-in-out infinite;
    z-index: -1
}

.hummy-bot:after {
    content: "";
    position: absolute;
    inset: 4px -2px 0;
    border-radius: 50%;
    border: 2px solid rgba(7, 155, 85, .5);
    animation: hummyRing 2.6s ease-out infinite;
    z-index: -1
}

.hummy-bot svg {
    display: block;
    transition: transform .3s;
    position: relative;
    z-index: 1
}

.hummy-bot:hover svg {
    transform: scale(1.06)
}

.hummy-ping {
    position: absolute;
    top: -6px;
    right: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d21f26, #a90000);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 12px;
    border: 2px solid #fff;
    box-shadow: 0 5px 12px rgba(169, 0, 0, .45);
    animation: hummyPing 1.8s ease-in-out infinite;
    z-index: 2
}

.hummy-arm {
    transform-box: fill-box;
    transform-origin: top center;
    animation: hummyWave 5.5s ease-in-out 2s infinite
}

@keyframes hummyIn {
    0% {
        opacity: 0;
        transform: translateY(90px) scale(.55)
    }

    62% {
        opacity: 1;
        transform: translateY(-9px) scale(1.05)
    }

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

@keyframes hummyWiggle {

    0%,
    86%,
    100% {
        transform: rotate(-1.2deg)
    }

    90% {
        transform: rotate(1.6deg) scale(1.02)
    }

    94% {
        transform: rotate(-2.6deg)
    }

    98% {
        transform: rotate(.4deg)
    }
}

@keyframes hummyGlow {

    0%,
    100% {
        opacity: .5;
        transform: scale(.94)
    }

    50% {
        opacity: 1;
        transform: scale(1.07)
    }
}

@keyframes hummyRing {
    0% {
        transform: scale(.8);
        opacity: .85
    }

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

@keyframes hummyPing {

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

    50% {
        transform: scale(1.18)
    }
}

@keyframes hummyWave {

    0%,
    82%,
    100% {
        transform: rotate(0)
    }

    86% {
        transform: rotate(-24deg)
    }

    90% {
        transform: rotate(9deg)
    }

    94% {
        transform: rotate(-17deg)
    }

    98% {
        transform: rotate(0)
    }
}

.hummy.is-minimized .hummy-bubble {
    animation: none;
    opacity: 0;
    transform: scale(.55) rotate(-9deg);
    pointer-events: none
}

.hummy-eyes {
    transform-box: fill-box;
    transform-origin: center;
    animation: hummyBlink 4.6s infinite
}

.hummy-heart {
    transform-box: fill-box;
    transform-origin: center;
    animation: hummyPulse 1.8s ease-in-out infinite
}

@keyframes hummyBob {

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

    50% {
        transform: translateY(-7px)
    }
}

@keyframes hummyBlink {

    0%,
    93%,
    100% {
        transform: scaleY(1)
    }

    96% {
        transform: scaleY(.08)
    }
}

@keyframes hummyPulse {

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

    50% {
        transform: scale(1.18)
    }
}

@media(max-width:767px) {
    .hummy {
        left: 12px;
        bottom: 12px
    }

    .hummy-bot {
        width: 88px;
        height: 96px
    }

    .hummy-bubble {
        margin-bottom: 12px
    }
}