:root {
    --color-yellow: #F3ED77;
    --color-yellow-soft: #FAF5AF;
    --color-black: #221F20;
    --color-dark: #171717;
    --color-blue: #5B70B1;
    --color-blue-light: #ADC1E2;
    --color-white: #ffffff;
    --color-muted: #6b7280;
    --color-border: rgba(16, 16, 16, 0.08);
    --shadow-soft: 0 20px 60px rgba(16, 16, 16, 0.08);
    --shadow-card: 0 18px 40px rgba(16, 16, 16, 0.10);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
}

* {
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: clip;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "apparat", sans-serif;
    font-weight: 400;
    color: var(--color-black);
    background: linear-gradient(180deg, #fffdf5 0%, #ffffff 38%, #fffef9 100%);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'apparat', sans-serif;
    font-weight: 600;
    letter-spacing: -0.03em;
}

img {
    max-width: 100%;
}

.cursor-glow {
    position: fixed;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 196, 48, 0.22) 0%, rgba(244, 196, 48, 0) 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    filter: blur(8px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(16, 16, 16, 0.04);
}

.navbar {
    padding: 1rem 0;
}

.site-logo {
    width: 360px;
    height: auto;
    display: block;
}

.brand-name {
    font-size: 1.125rem;
}

.brand-subtitle {
    color: var(--color-muted);
    font-size: 0.875rem;
}

.nav-link {
    color: var(--color-black);
    font-weight: 600;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-black);
}
.bi-list::before {
    font-size: 2em;
    color: var(--color-black);
}

.btn-brand {
    background: var(--color-yellow);
    color: var(--color-black);
    border: 1px solid transparent;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.9rem 1.4rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-brand:hover {
    background: #D694BC;
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(244, 196, 48, 0.35);
}

.hero-section {
    position: relative;
    padding: 7rem 0 5rem;
    z-index: 1;
}

.section-badge,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.5rem 0.9rem;
    background-color: var(--color-yellow-soft);
    border: 0px solid rgba(244, 196, 48, 0.35);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 1.2rem;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    font-weight: 800;
    max-width: 760px;
}

.hero-text,
.section-heading p,
.service-card p,
.process-card p,
.advantage-card p,
.contact-info-card p,
.form-subtitle,
.site-footer p {
    color: var(--color-muted);
    font-size: 1.04rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.trust-item {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1rem;
    box-shadow: var(--shadow-soft);
}

.trust-item strong {
    display: block;
    font-size: 1.35rem;
    margin-bottom: 0.3rem;
}

.visual-card,
.contact-form-card,
.contact-info-card,
.advantage-card,
.process-card,
.service-card {
    position: relative;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.visual-card {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    min-height: auto;
}

.image-placeholder {
    width: 100%;
    min-height: 320px;
    border-radius: var(--radius-lg);
    border: 2px dashed rgba(16, 16, 16, 0.2);
    background:
        linear-gradient(135deg, rgba(244, 196, 48, 0.18), rgba(255, 255, 255, 0.9)),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6) 18px, rgba(244, 196, 48, 0.08) 18px, rgba(244, 196, 48, 0.08) 36px);
    display: grid;
    place-items: center;
    padding: 1.5rem;
    text-align: center;
}

.image-placeholder span {
    color: rgba(16, 16, 16, 0.78);
    font-weight: 600;
    line-height: 1.7;
}

.hero-image-placeholder {
    min-height: 520px;
}

.tall-placeholder,
.map-placeholder {
    min-height: 420px;
}

.floating-mini-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(16, 16, 16, 0.06);
    border-radius: 18px;
    padding: 0.9rem 1rem;
    box-shadow: 0 20px 40px rgba(16, 16, 16, 0.12);
    backdrop-filter: blur(8px);
}

.small-label {
    display: block;
    color: var(--color-muted);
    font-size: 0.75rem;
    margin-bottom: 0.3rem;
}

.floating-card-1 {
    top: 24px;
    right: -10px;
    animation: floatUpDown 5s ease-in-out infinite;
}

.floating-card-2 {
    bottom: 24px;
    left: -8px;
    animation: floatUpDown 6s ease-in-out infinite reverse;
}

.section {
    position: relative;
    padding: 6.5rem 0;
    z-index: 1;
}

.section-dark {
    background: var(--color-blue);
    color: var(--color-white);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.section-dark.blue_gb {
    background: linear-gradient(
            180deg,
            #5B70B1 0%,
            rgba(91, 112, 177, 0.9) 40%,
            rgba(91, 112, 177, 0.5) 60%,
            rgba(91, 112, 177, 0.15) 85%,
            transparent 100%
    );
}

.section-dark .section-heading p,
.section-dark .geo-tags span,
.section-dark .image-placeholder span {
    color: rgba(255, 255, 255, 0.72);
}

.section-dark .section-kicker {
    background: rgba(244, 196, 48, 0.12);
    border-color: rgba(244, 196, 48, 0.25);
}

.section-dark .image-placeholder {
    border-color: rgba(255, 255, 255, 0.18);
    background:
        linear-gradient(135deg, rgba(244, 196, 48, 0.12), rgba(255, 255, 255, 0.04)),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.06) 18px, rgba(244, 196, 48, 0.03) 18px, rgba(244, 196, 48, 0.03) 36px);
}

.section-accent {
    background: linear-gradient(180deg, rgba(244, 196, 48, 0.10), rgba(255, 255, 255, 0.75));
}

.section-heading {
    max-width: 760px;
}

.section-heading.centered {
    text-align: center;
    margin: 0 auto 1rem;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 800;
    margin-bottom: 1rem;
}

.service-card,
.process-card,
.advantage-card,
.contact-info-card,
.contact-form-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--color-border);
    padding: 2rem;
    height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover,
.process-card:hover,
.advantage-card:hover,
.contact-info-card:hover,
.contact-form-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 50px rgba(16, 16, 16, 0.12);
    border-color: rgba(244, 196, 48, 0.4);
}
/* іконки сервісів */
.service-icon,
.advantage-card i {
    width: 62px;
    height: 62px;
    background-color: #D694BC;
    color: #fff;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 2rem;
    margin-bottom: 1.3rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
    animation: serviceIconFloat 4s ease-in-out infinite;
}
.service-strategy .service-icon {
    background: rgba(243, 237, 119, 0.28);
    color: #221F20;
    box-shadow: 0 10px 24px rgba(243, 237, 119, 0.28);
}
.service-content .service-icon {
    background: rgba(214, 148, 188, 0.22);
    color: #221F20;
    box-shadow: 0 10px 24px rgba(214, 148, 188, 0.22);
}
.service-social .service-icon {
    background: rgba(91, 112, 177, 0.22);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(91, 112, 177, 0.22);
}
.service-design .service-icon {
    background: rgba(173, 193, 226, 0.30);
    color: #221F20;
    box-shadow: 0 10px 24px rgba(173, 193, 226, 0.24);
}
.service-web .service-icon {
    background: rgba(250, 245, 175, 0.45);
    color: #221F20;
    box-shadow: 0 10px 24px rgba(250, 245, 175, 0.28);
}
.service-seo .service-icon {
    background: rgba(34, 31, 32, 0.10);
    color: #221F20;
    box-shadow: 0 10px 24px rgba(34, 31, 32, 0.10);
}
.service-card:hover .service-icon {
    transform: translateY(-6px) scale(1.08) rotate(-6deg);
}
/* end іконки сервісів */


.service-card h3,
.process-card h3,
.advantage-card h3,
.contact-form-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
}

.process-number {
    display: inline-flex;
    min-width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #D694BC;
    color: var(--color-white);
    font-weight: 800;
    margin-bottom: 1rem;
}

.geo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.geo-tags span {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    padding: 0.7rem 1rem;
}

.contact-list {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.contact-list a,
.contact-list div {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--color-black);
    text-decoration: none;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-decoration: none;
    color: var(--color-black);
    background: var(--color-yellow);
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.form-control {
    min-height: 56px;
    border-radius: 16px;
    border: 1px solid rgba(16, 16, 16, 0.12);
    padding: 0.9rem 1rem;
}

textarea.form-control {
    min-height: 140px;
}

.form-control:focus {
    border-color: rgba(244, 196, 48, 0.8);
    box-shadow: 0 0 0 0.25rem rgba(244, 196, 48, 0.16);
}

.form-label {
    font-weight: 700;
    margin-bottom: 0.55rem;
}

.site-footer {
    padding: 2rem 0 3rem;
    border-top: 1px solid rgba(16, 16, 16, 0.06);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 5.5rem;
    }

    .hero-trust {
        grid-template-columns: 1fr;
    }

    .visual-card {
        min-height: auto;
    }

    .floating-card-1,
    .floating-card-2 {
        position: static;
        margin-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .section,
    .hero-section {
        padding: 4.5rem 0;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .service-card,
    .process-card,
    .advantage-card,
    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
    }

    .site-logo {
        width: 260px;
    }

    .about-visual-frame {
        transform: rotate(-2deg);
        border-radius: 24px;
    }
}

.seo-section {
    border-top: 1px dotted #f3f3f3;
}

.seo-content {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.seo-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

.seo-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.seo-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.seo-content ul li {
    margin-bottom: 8px;
    color: #333;
}

.about-visual {
    position: relative;
    padding: 10px;
}

.about-visual-frame {
    position: relative;
    border-radius: 32px;
    overflow: visible;
    transform: rotate(-4deg);
    transition: transform 0.6s ease;
}

.about-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: none;
    transition: transform 0.8s ease;
}

.about-visual:hover .about-visual-frame {
    transform: rotate(0deg) translateY(-8px);
}

.about-visual:hover .about-image {
    transform: translateY(-6px) scale(1.02);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px) rotate(-4deg);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.is-visible {
    opacity: 1;
    transform: translateX(0) rotate(-4deg);
}

.about-lines {
    position: absolute;
    top: -10%;
    right: -7%;
    bottom: 0px;
    width: 70%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
@media (max-width: 991px) {
    #chi-siamo {
        overflow: hidden;
        padding-bottom: 0px;
    }
    .about-lines {
        position: absolute;
        top: 35%;
        left: 50%;
        width: 200%;
        height: 140vw;
        max-width: none;
        opacity: 0.85;
        transform: translate(-50%, -50%);
        overflow: inherit;
    }
    #chi-siamo > .container > .row > div:nth-child(2) {
        position: relative;
        min-height: 100vw;
    }
}

.lines-img {
    position: relative;
    right: 0;
    top: -3%;
    width: 100%;
    height: auto;
    opacity: 1;
    /*transform: translate3d(0, 0, 0) rotate(-12deg);*/
    transform-origin: center;
    will-change: transform;
    animation: floatLines 12s ease-in-out infinite;
}
/* geo */

.geo-centered {
    max-width: 980px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.geo-centered h2 {
    max-width: 980px;
    margin: 1rem auto 1.5rem;
}

.geo-centered p {
    max-width: 820px;
    margin: 0 auto;
}

.geo-tags-animated {
    margin-top: 2.5rem;
    gap: 1rem;
}

.geo-tag {
    opacity: 0;
    display: inline-flex;
    transform: translate3d(0, 0, 0) scale(0.8);
    animation: beeFlyIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    will-change: transform, opacity;
}

.tag-1 { animation-delay: 0.15s; }
.tag-2 { animation-delay: 0.35s; }
.tag-3 { animation-delay: 0.55s; }
.tag-4 { animation-delay: 0.75s; }

.tag-1 {
    animation-delay: 0.15s;
}

.tag-2 {
    animation-delay: 0.35s;
    animation-name: beeFlyInRight;
}

.tag-3 {
    animation-delay: 0.55s;
    animation-name: beeFlyInBottom;
}

.tag-4 {
    animation-delay: 0.75s;
    animation-name: beeFlyInTopRight;
}

@keyframes beeFlyIn {
    0% {
        opacity: 0;
        transform: translate(-180px, -90px) rotate(-18deg) scale(0.35);
    }
    55% {
        opacity: 1;
        transform: translate(18px, 8px) rotate(8deg) scale(1.06);
    }
    75% {
        transform: translate(-10px, -4px) rotate(-4deg) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
}
@keyframes beeFlyInRight {
    0% {
        opacity: 0;
        transform: translate(220px, -70px) rotate(18deg) scale(0.35);
    }
    55% {
        opacity: 1;
        transform: translate(-16px, 6px) rotate(-7deg) scale(1.06);
    }
    75% {
        transform: translate(8px, -3px) rotate(3deg) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
}

@keyframes beeFlyInBottom {
    0% {
        opacity: 0;
        transform: translate(-80px, 160px) rotate(-14deg) scale(0.35);
    }
    55% {
        opacity: 1;
        transform: translate(10px, -8px) rotate(6deg) scale(1.06);
    }
    75% {
        transform: translate(-6px, 3px) rotate(-3deg) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
}

@keyframes beeFlyInTopRight {
    0% {
        opacity: 0;
        transform: translate(180px, -130px) rotate(12deg) scale(0.35);
    }
    55% {
        opacity: 1;
        transform: translate(-12px, 7px) rotate(-5deg) scale(1.06);
    }
    75% {
        transform: translate(6px, -2px) rotate(2deg) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
}

/* end geo */

/*
 seo
*/

.seo-content-inner {
    max-height: 250px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s ease;
}

/*
.seo-content-inner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), #ffffff);
    pointer-events: none;
}
*/

.seo-content.expanded .seo-content-inner {
    max-height: none;
}

.seo-content.expanded .seo-content-inner::after {
    display: none;
}

.seo-toggle-btn {
    background: transparent;
    border: 1px solid rgba(16,16,16,0.1);
    border-radius: 999px;
    padding: 10px 22px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.seo-toggle-btn:hover {
    background: #F3ED77;
}

/* video*/

.video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
    .video-section {
        height: 100vw;
        overflow: hidden;
    }
    .video-bg {
        width: auto;
        min-width: 140%;
        height: 100%;
        object-fit: cover;
        transform: translate(-50%, -50%);
    }
}

/*footer*/
.footer-partners {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.footer-partners span {
    font-weight: 600;
    color: var(--color-black);
}

.footer-partners a {
    color: var(--color-muted);
    text-decoration: none;
    position: relative;
    transition: color 0.25s ease;
}

.footer-partners a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 1px;
    background: var(--color-yellow);
    transition: width 0.25s ease;
}

.footer-partners a:hover {
    color: var(--color-black);
}

.footer-partners a:hover::after {
    width: 100%;
}

.floating-socials {
    position: fixed;
    right: 18px;
    bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.float-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* WhatsApp */
.float-btn.whatsapp {
    background: #25D366;
}

/* Instagram gradient */
.float-btn.instagram {
    background: radial-gradient(circle at 30% 30%, #fdf497, #fd5949, #d6249f, #285AEB);
}

/* hover */
.float-btn:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

/* pulse animation */
.float-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: inherit;
    opacity: 0.4;
    animation: pulse 2.5s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* subtle floating */
.float-btn {
    animation: floatBtn 3.5s ease-in-out infinite;
}

.float-btn:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes floatBtn {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@media (max-width: 768px) {
    .floating-socials {
        right: 12px;
        bottom: 12px;
    }

    .float-btn {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }
}


/* bees */
.bees-animation {
    position: absolute;
    inset: 0;
    padding-top: 30px;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

/* всі бджоли */
.bee {
    position: absolute;
    left: -120px;
    width: 60px;
    opacity: 0;
}

/* лідер */
.bee-leader {
    width: 70px;
    animation: beeFly 5s linear infinite;
}

/* хвіст */
.bee-1 { animation: beeFly 5s linear infinite; animation-delay: 0.2s; }
.bee-2 { animation: beeFly 5s linear infinite; animation-delay: 0.4s; }
.bee-3 { animation: beeFly 5s linear infinite; animation-delay: 0.6s; }
.bee-4 { animation: beeFly 5s linear infinite; animation-delay: 0.8s; }
.bee-5 { animation: beeFly 5s linear infinite; animation-delay: 1s; }
.bee-6 { animation: beeFly 5s linear infinite; animation-delay: 1.2s; }
.bee-7 { animation: beeFly 5s linear infinite; animation-delay: 1.4s; }
@keyframes beeFly {
    0% {
        transform: translateX(0) translateY(0) scale(0.7) rotate(5deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    35% {
        transform: translateX(35vw) translateY(-25px) scale(1) rotate(-6deg);
    }
    60% {
        transform: translateX(65vw) translateY(15px) scale(1.15) rotate(4deg);
    }
    85% {
        transform: translateX(95vw) translateY(-10px) scale(0.95) rotate(-3deg);
        opacity: 1;
    }
    100% {
        transform: translateX(115vw) translateY(0) scale(0.7);
        opacity: 0;
    }
}
#vantaggi {
    position: relative;
    overflow: hidden;
}
.bee {
    filter: blur(0.3px);
}
.bee-leader {
    filter: none;
}
@media (max-width: 768px) {
    .bee {
        width: 40px;
    }
    .bee-leader {
        width: 48px;
        animation-duration: 6s;
    }
    .bee-1 { animation-delay: 0.4s; }
    .bee-2 { animation-delay: 0.9s; }
    .bee-3 { animation-delay: 1.4s; }
    .bee-4 { animation-delay: 1.7s; }
    .bee-5 { animation-delay: 2.2s; }
    .bee-6 { animation-delay: 2.8s; }
    .bee-7 { animation-delay: 3.5s; }
}

/* end bees */

.process-card {
    text-align: center;
}
.process-image {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}
.process-image img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
.process-image img {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.process-card:hover .process-image img {
    transform: scale(1.05);
    box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}
@media (max-width: 768px) {
    .process-image img {
        width: 140px;
        height: 140px;
    }
}