:root {
    --bg: #09090b;
    --surface: #111114;
    --surface-light: #18181d;
    --surface-hover: #202026;

    --border: rgba(255,255,255,.08);
    --border-hover: rgba(74,163,255,.35);

    --text: #ffffff;
    --text-secondary: #b7b7c0;
    --text-muted: #8b8b95;

    --primary: #4aa3ff;
    --primary-hover: #69b4ff;
    --primary-soft: rgba(74,163,255,.12);

    --shadow: 0 20px 60px rgba(0,0,0,.45);

    --radius: 22px;
    --container: 1280px;

    --transition: .35s ease;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top right, rgba(74,163,255,.08), transparent 30%),
        radial-gradient(circle at bottom left, rgba(74,163,255,.05), transparent 35%),
        var(--bg);
    color: var(--text);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(var(--container), calc(100% - 64px));
    margin: 0 auto;
}

section {
    padding: 120px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .45rem 1rem;
    margin-bottom: 1.8rem;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

section h2 {
    max-width: 700px;
    margin-bottom: 1.4rem;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.1;
    font-weight: 800;
}

section > .container > p {
    max-width: 760px;
    color: var(--text-secondary);
    font-size: 1.15rem;
}

/* ---------- HEADER ---------- */

.header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    backdrop-filter: blur(18px);
    background: rgba(9,9,11,.78);
    border-bottom: 1px solid var(--border);
}

.header-container {
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -.02em;
}

.logo img {
    width: 42px;
    height: 42px;
}

nav {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

nav a {
    position: relative;
    color: var(--text-secondary);
    font-weight: 600;
    transition: var(--transition);
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--primary);
    transition: var(--transition);
}

nav a:hover {
    color: var(--text);
}

nav a:hover::after {
    width: 100%;
}

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

.hero-buttons,
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.6rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 30px;
    border-radius: 999px;
    font-size: .96rem;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #2d86f3);
    color: #fff;
    box-shadow: 0 12px 40px rgba(74,163,255,.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 50px rgba(74,163,255,.4);
}

.btn-secondary {
    border: 1px solid var(--border);
    background: rgba(255,255,255,.03);
    backdrop-filter: blur(10px);
    color: var(--text);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(74,163,255,.08);
}

/* ---------- SELECTION ---------- */

::selection {
    background: var(--primary);
    color: #fff;
}

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

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #09090b;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition:
        opacity 1.2s ease,
        transform 8s ease;
}

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

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(9,9,11,.92) 0%,
            rgba(9,9,11,.70) 35%,
            rgba(9,9,11,.25) 70%,
            rgba(9,9,11,.10) 100%
        );
}

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

    min-height: 100vh;

    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 5rem;
    align-items: center;
}

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

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: .6rem;

    padding: .5rem 1rem;

    border-radius: 999px;

    background: rgba(74,163,255,.12);

    color: var(--primary);

    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
}

.hero-label::before {
    content: "";

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--primary);

    box-shadow: 0 0 18px var(--primary);
}

.hero h1 {
    margin-top: 1.8rem;

    font-size: clamp(3.4rem, 6vw, 5.7rem);

    line-height: 1.02;

    letter-spacing: -.05em;

    font-weight: 800;
}

.hero p {
    margin-top: 2rem;

    max-width: 620px;

    color: var(--text-secondary);

    font-size: 1.2rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
}

.hero-image {
    width: min(620px, 100%);

    border-radius: 28px;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.08);

    box-shadow:
        0 30px 80px rgba(0,0,0,.45),
        0 0 120px rgba(74,163,255,.18);

    transform: perspective(1200px) rotateY(-10deg);

    transition: .5s ease;
}

.hero-image:hover {
    transform:
        perspective(1200px)
        rotateY(-5deg)
        translateY(-8px);
}

.hero-image img {
    display: block;

    width: 100%;

    height: auto;
}

.hero-glow {
    position: absolute;

    width: 550px;
    height: 550px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(74,163,255,.18),
        transparent 70%
    );

    filter: blur(80px);

    z-index: -1;
}

.hero-scroll {
    position: absolute;

    bottom: 40px;

    left: 50%;

    transform: translateX(-50%);

    color: var(--text-muted);

    font-size: .9rem;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: .8rem;

    opacity: .75;
}

.hero-scroll::after {
    content: "";

    width: 1px;
    height: 45px;

    background: linear-gradient(
        transparent,
        var(--primary),
        transparent
    );

    animation: scrollIndicator 2s infinite;
}

@keyframes scrollIndicator {

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

    50% {
        opacity: 1;
    }

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

}

.hero-stats {
    display: flex;

    gap: 3rem;

    margin-top: 3.5rem;
}

.hero-stat h3 {
    font-size: 2rem;

    color: white;
}

.hero-stat span {
    display: block;

    margin-top: .4rem;

    color: var(--text-muted);

    font-size: .92rem;
}

/* ==========================================================
   ANIMÁCIE
========================================================== */

#hero-title,
#hero-description {
    transition: opacity .35s ease;
}

.fade-section {
    opacity: 0;
    transform: translateY(50px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================
   SERVICES
========================================================== */

.section-description {
    max-width: 760px;
    margin-bottom: 5rem;
    color: var(--text-secondary);
    font-size: 1.15rem;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.service-row {
    display: grid;
    grid-template-columns: 80px 1fr 60px;
    align-items: center;

    gap: 2rem;

    padding: 2.5rem 3rem;

    background: rgba(255,255,255,.03);

    border: 1px solid var(--border);

    border-radius: 24px;

    transition: .35s ease;
}

.service-row:hover {

    transform: translateY(-6px);

    border-color: var(--primary);

    background: rgba(74,163,255,.05);

    box-shadow:
        0 20px 60px rgba(0,0,0,.25),
        0 0 40px rgba(74,163,255,.08);

}

.service-index {

    font-size: 3rem;

    font-weight: 800;

    color: rgba(255,255,255,.08);

}

.service-content h3 {

    margin-bottom: .8rem;

    font-size: 1.65rem;

    font-weight: 700;

}

.service-content p {

    max-width: 820px;

    color: var(--text-secondary);

}

.service-arrow {

    display: flex;

    justify-content: center;

    align-items: center;

    width: 58px;

    height: 58px;

    border-radius: 50%;

    background: rgba(74,163,255,.12);

    color: var(--primary);

    font-size: 1.6rem;

    transition: .35s ease;

}

.service-row:hover .service-arrow {

    transform: translateX(8px);

    background: var(--primary);

    color: white;

}

/* ==========================================================
   EXPERTISE
========================================================== */

.technology {
    position: relative;
    overflow: hidden;
}

.technology::before {
    content: "";
    position: absolute;
    top: -220px;
    right: -220px;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74,163,255,.08), transparent 70%);
    pointer-events: none;
}

.technology .container {
    position: relative;
    z-index: 2;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.expertise-card {
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    border-radius: 24px;
    transition: all .35s ease;
}

.expertise-card:hover {
    transform: translateY(-8px);
    border-color: rgba(74,163,255,.35);
    background: rgba(74,163,255,.05);
    box-shadow:
        0 20px 60px rgba(0,0,0,.30),
        0 0 40px rgba(74,163,255,.08);
}

.expertise-card h3 {
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
}

.expertise-card p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
    flex: 1;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.expertise-tags span {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .65rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.04);
    color: var(--text-secondary);
    font-size: .88rem;
    font-weight: 600;
    transition: all .3s ease;
}

.expertise-tags span::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 12px rgba(74,163,255,.8);
}

.expertise-tags span:hover {
    transform: translateY(-3px);
    color: #fff;
    border-color: rgba(74,163,255,.35);
    background: rgba(74,163,255,.08);
}

@media (max-width: 992px) {

    .expertise-grid {
        grid-template-columns: 1fr;
    }

}

/* ==========================================================
   WHY US
========================================================== */

.why-us {
    padding: 8rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.why-card {
    padding: 2.8rem;
    border-radius: 24px;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.07);
    transition: .35s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(74,163,255,.35);
    background: rgba(255,255,255,.04);
    box-shadow:
        0 25px 70px rgba(0,0,0,.30),
        0 0 35px rgba(74,163,255,.08);
}

.why-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 2rem;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(74,163,255,.18),
        rgba(74,163,255,.05)
    );
}

.why-icon svg {
    width: 28px;
    height: 28px;
    stroke: #4aa3ff;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-card h3 {
    font-size: 1.45rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.why-card p {
    color: #b7bec9;
    line-height: 1.8;
}

@media (max-width: 960px) {

    .why-grid {
        grid-template-columns: 1fr;
    }

}

/* ==========================================================
   CONTACT
========================================================== */

.contact {
    padding: 8rem 0;
}

.contact-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem;
    border-radius: 32px;
    text-align: center;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.03),
            rgba(255,255,255,.015)
        );
    border: 1px solid rgba(255,255,255,.08);
}

.contact-box h2 {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    font-size: clamp(2rem,4vw,3rem);
}

.contact-description {
    max-width: 680px;
    margin: 0 auto;
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2rem;
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,.08);
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.contact-title {
    color: #4aa3ff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .82rem;
}

.contact-item span:last-child {
    color: var(--text-secondary);
}

@media (max-width:900px){

    .contact-box{
        padding:3rem 2rem;
    }

    .contact-actions{
        flex-direction:column;
    }

    .contact-info{
        grid-template-columns:1fr;
        gap:2rem;
    }

}

/* ==========================================================
   FOOTER
========================================================== */

.footer {
    margin-top: 8rem;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,.06);
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,.015),
        rgba(255,255,255,0)
    );
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: .9rem;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-logo img {
    width: 36px;
    height: 36px;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: .25s;
}

.footer-nav a:hover {
    color: #ffffff;
}

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,.08);
    margin: 2.5rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-bottom p,
.footer-bottom span {
    color: var(--text-secondary);
    font-size: .95rem;
}

@media (max-width: 900px) {

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        justify-content: center;
    }

}

/* ==========================================================
   PORTFOLIO
========================================================== */

.plugin-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 4rem;
}

.plugin-card {
    padding: 3rem;
    border-radius: 28px;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,.035),
        rgba(255,255,255,.02)
    );
    border: 1px solid rgba(255,255,255,.08);
    transition: all .35s ease;
    overflow: hidden;
}

.plugin-card:hover {
    transform: translateY(-8px);
    border-color: rgba(74,163,255,.35);
    background: rgba(74,163,255,.045);
    box-shadow:
        0 30px 80px rgba(0,0,0,.35),
        0 0 45px rgba(74,163,255,.08);
}

.plugin-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.plugin-number {
    display: inline-block;
    margin-bottom: 1rem;
    color: rgba(255,255,255,.18);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.plugin-card h3 {
    font-size: clamp(2rem,4vw,2.8rem);
    font-weight: 800;
    line-height: 1.15;
}

.plugin-description {
    max-width: 900px;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    font-size: 1.08rem;
}

.plugin-badge {
    padding: .7rem 1.2rem;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.plugin-badge.active {
    background: rgba(29,185,84,.12);
    color: #42d97d;
}

.plugin-badge.ready {
    background: rgba(74,163,255,.12);
    color: var(--primary);
}

.plugin-badge.custom {
    background: rgba(255,190,70,.12);
    color: #ffcb57;
}

.plugin-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
}

.plugin-tags span {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .75rem 1.2rem;
    border-radius: 999px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    color: var(--text-secondary);
    font-size: .92rem;
    font-weight: 600;
    transition: .3s ease;
}

.plugin-tags span::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 12px rgba(74,163,255,.9);
}

.plugin-tags span:hover {
    transform: translateY(-3px);
    color: white;
    border-color: rgba(74,163,255,.35);
    background: rgba(74,163,255,.08);
}

.plugin-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.plugin-footer strong {
    display: block;
    margin-bottom: .4rem;
    font-size: 1rem;
    color: white;
}

.plugin-footer span {
    color: var(--text-secondary);
}

.plugin-footer .btn {
    flex-shrink: 0;
}

/* ---------- hover animácia ---------- */

.plugin-card::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    background:
        linear-gradient(
            130deg,
            transparent 0%,
            rgba(255,255,255,.03) 45%,
            transparent 100%
        );
    transition: opacity .45s;
}

.plugin-card:hover::after {
    opacity: 1;
}

/* ---------- web vs plugin ---------- */

.plugin-card.website {
    border-left: 4px solid #4aa3ff;
}

.plugin-card.plugin {
    border-left: 4px solid #42d97d;
}

/* ---------- CTA ---------- */

.portfolio-cta {
    margin-top: 6rem;
}

.portfolio-cta .contact-box {
    background:
        radial-gradient(circle at top right,
        rgba(74,163,255,.15),
        transparent 45%),
        rgba(255,255,255,.03);
}

/* ==========================================================
   PLUGINS
========================================================== */

.plugin-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(360px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.plugin-card {
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    border-radius: 28px;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,.035),
        rgba(255,255,255,.02)
    );
    border: 1px solid rgba(255,255,255,.08);
    transition: .35s ease;
}

.plugin-card:hover {
    transform: translateY(-10px);
    border-color: rgba(74,163,255,.35);
    box-shadow:
        0 30px 80px rgba(0,0,0,.35),
        0 0 50px rgba(74,163,255,.08);
}

.plugin-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.plugin-number {
    display: inline-block;
    margin-bottom: .8rem;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--primary);
}

.plugin-card h3 {
    font-size: 1.7rem;
    line-height: 1.25;
    font-weight: 700;
}

.plugin-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    flex: 1;
}

.plugin-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 2.5rem;
}

.plugin-tags span {
    display: inline-flex;
    align-items: center;
    padding: .55rem .95rem;
    border-radius: 999px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    color: var(--text-secondary);
    font-size: .82rem;
    font-weight: 600;
    transition: .3s ease;
}

.plugin-tags span:hover {
    background: rgba(74,163,255,.08);
    border-color: rgba(74,163,255,.35);
    color: #fff;
}

.plugin-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.08);
}

.plugin-footer strong {
    display: block;
    margin-bottom: .5rem;
    font-size: .9rem;
    color: #fff;
}

.plugin-footer span {
    display: block;
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.6;
}

.plugin-footer .btn {
    flex-shrink: 0;
}

.plugin-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .45rem .9rem;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .04em;
    white-space: nowrap;
}

.plugin-badge.active {
    background: rgba(40,200,120,.14);
    color: #6fe39f;
    border: 1px solid rgba(40,200,120,.25);
}

.plugin-badge.ready {
    background: rgba(74,163,255,.12);
    color: #7bc0ff;
    border: 1px solid rgba(74,163,255,.30);
}

.plugin-badge.custom {
    background: rgba(255,180,70,.14);
    color: #ffc86a;
    border: 1px solid rgba(255,180,70,.30);
}

.plugin-card:hover .btn-primary {
    transform: translateY(-2px);
}

@media (max-width: 1100px) {

    .plugin-list {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {

    .plugin-card {
        padding: 2rem;
    }

    .plugin-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .plugin-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .plugin-footer .btn {
        width: 100%;
    }

}